Module: OSDNClient
- Defined in:
- lib/osdn-client/version.rb,
lib/osdn-client.rb,
lib/osdn-client/api_error.rb,
lib/osdn-client/api_client.rb,
lib/osdn-client/models/news.rb,
lib/osdn-client/models/pong.rb,
lib/osdn-client/models/user.rb,
lib/osdn-client/api/user_api.rb,
lib/osdn-client/models/group.rb,
lib/osdn-client/models/skill.rb,
lib/osdn-client/models/token.rb,
lib/osdn-client/configuration.rb,
lib/osdn-client/models/history.rb,
lib/osdn-client/models/package.rb,
lib/osdn-client/models/release.rb,
lib/osdn-client/api/default_api.rb,
lib/osdn-client/api/project_api.rb,
lib/osdn-client/models/rel_file.rb,
lib/osdn-client/models/scm_hook.rb,
lib/osdn-client/models/i18_n_text.rb,
lib/osdn-client/models/project_hg.rb,
lib/osdn-client/models/user_stats.rb,
lib/osdn-client/models/project_bzr.rb,
lib/osdn-client/models/project_git.rb,
lib/osdn-client/models/project_scm.rb,
lib/osdn-client/models/project_svn.rb,
lib/osdn-client/models/project_web.rb,
lib/osdn-client/models/simple_user.rb,
lib/osdn-client/models/user_images.rb,
lib/osdn-client/api/project_frs_api.rb,
lib/osdn-client/api/project_scm_api.rb,
lib/osdn-client/models/simple_group.rb,
lib/osdn-client/api/project_news_api.rb,
lib/osdn-client/models/group_profile.rb,
lib/osdn-client/models/simple_chamber.rb,
lib/osdn-client/api/project_ticket_api.rb,
lib/osdn-client/models/frs_admin_prefs.rb,
lib/osdn-client/models/group_tool_flags.rb,
lib/osdn-client/models/summariad_by_type.rb,
lib/osdn-client/models/summariad_by_owner.rb,
lib/osdn-client/models/project_ticket_item.rb,
lib/osdn-client/models/project_ticket_type.rb,
lib/osdn-client/models/project_ticket_prefs.rb,
lib/osdn-client/models/summariad_by_priority.rb,
lib/osdn-client/models/summariad_by_severity.rb,
lib/osdn-client/models/project_ticket_comment.rb,
lib/osdn-client/models/project_ticket_history.rb,
lib/osdn-client/models/summariad_by_component.rb,
lib/osdn-client/models/summariad_by_milestone.rb,
lib/osdn-client/models/project_scm_last_commit.rb,
lib/osdn-client/models/summariad_by_type_inner.rb,
lib/osdn-client/models/project_ticket_component.rb,
lib/osdn-client/models/project_ticket_milestone.rb,
lib/osdn-client/models/summariad_by_owner_inner.rb,
lib/osdn-client/models/group_profile_per_language.rb,
lib/osdn-client/models/project_ticket_type_summary.rb,
lib/osdn-client/models/summariad_by_priority_inner.rb,
lib/osdn-client/models/summariad_by_severity_inner.rb,
lib/osdn-client/models/summariad_by_component_inner.rb,
lib/osdn-client/models/summariad_by_milestone_inner.rb,
lib/osdn-client/models/project_ticket_component_summary.rb,
lib/osdn-client/models/project_ticket_milestone_summary.rb,
lib/osdn-client/models/project_ticket_type_instructions.rb,
lib/osdn-client/models/project_ticket_type_summary_summarized_by.rb,
lib/osdn-client/models/project_ticket_type_instruction_per_language.rb,
lib/osdn-client/models/project_ticket_component_summary_summarized_by.rb,
lib/osdn-client/models/project_ticket_milestone_summary_summarized_by.rb
Overview
#OSDN REST API v0 beta
#OSDN REST API. Currently this API is experimental release. Pelase refer documentation on osdn.net/projects/osdn-codes/wiki/APIGuide and you can get client libraries from osdn.net/projects/osdn-codes/releases/p14859 .
OpenAPI spec version: 0.0.20171120 Contact: [email protected] Generated by: github.com/swagger-api/swagger-codegen.git
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Defined Under Namespace
Classes: ApiClient, ApiError, Configuration, DefaultApi, FrsAdminPrefs, Group, GroupProfile, GroupProfilePerLanguage, GroupToolFlags, History, I18NText, News, Package, Pong, ProjectApi, ProjectBzr, ProjectFrsApi, ProjectGit, ProjectHg, ProjectNewsApi, ProjectSCM, ProjectSCMApi, ProjectSCMLastCommit, ProjectSvn, ProjectTicketApi, ProjectTicketComment, ProjectTicketComponent, ProjectTicketComponentSummary, ProjectTicketComponentSummarySummarizedBy, ProjectTicketHistory, ProjectTicketItem, ProjectTicketMilestone, ProjectTicketMilestoneSummary, ProjectTicketMilestoneSummarySummarizedBy, ProjectTicketPrefs, ProjectTicketType, ProjectTicketTypeInstructionPerLanguage, ProjectTicketTypeInstructions, ProjectTicketTypeSummary, ProjectTicketTypeSummarySummarizedBy, ProjectWeb, RelFile, Release, ScmHook, SimpleChamber, SimpleGroup, SimpleUser, Skill, SummariadByComponent, SummariadByComponentInner, SummariadByMilestone, SummariadByMilestoneInner, SummariadByOwner, SummariadByOwnerInner, SummariadByPriority, SummariadByPriorityInner, SummariadBySeverity, SummariadBySeverityInner, SummariadByType, SummariadByTypeInner, Token, User, UserApi, UserImages, UserStats
Constant Summary collapse
- VERSION =
"0.0.20171120"
Class Method Summary collapse
-
.configure ⇒ Object
Customize default settings for the SDK using block.
Class Method Details
.configure ⇒ Object
Customize default settings for the SDK using block.
OSDNClient.configure do |config|
config.username = "xxx"
config.password = "xxx"
end
If no block given, return the default Configuration object.
104 105 106 107 108 109 110 |
# File 'lib/osdn-client.rb', line 104 def configure if block_given? yield(Configuration.default) else Configuration.default end end |