osdn-client 0.0.20161003 → 0.0.20171120
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/README.md +168 -6
- data/docs/FrsAdminPrefs.md +9 -0
- data/docs/Group.md +1 -3
- data/docs/GroupProfile.md +10 -0
- data/docs/GroupProfilePerLanguage.md +10 -0
- data/docs/GroupToolFlags.md +1 -2
- data/docs/History.md +15 -0
- data/docs/I18NText.md +9 -0
- data/docs/ProjectApi.md +4021 -209
- data/docs/ProjectBzr.md +22 -0
- data/docs/ProjectFrsApi.md +118 -4
- data/docs/ProjectGit.md +27 -0
- data/docs/ProjectHg.md +22 -0
- data/docs/ProjectSCM.md +22 -0
- data/docs/ProjectSCMApi.md +1214 -0
- data/docs/ProjectSCMLastCommit.md +11 -0
- data/docs/ProjectSvn.md +25 -0
- data/docs/ProjectTicketApi.md +1847 -0
- data/docs/ProjectTicketComment.md +13 -0
- data/docs/ProjectTicketComponent.md +14 -0
- data/docs/ProjectTicketComponentSummary.md +10 -0
- data/docs/ProjectTicketComponentSummarySummarizedBy.md +12 -0
- data/docs/ProjectTicketHistory.md +14 -0
- data/docs/ProjectTicketItem.md +25 -0
- data/docs/ProjectTicketMilestone.md +14 -0
- data/docs/ProjectTicketMilestoneSummary.md +10 -0
- data/docs/ProjectTicketMilestoneSummarySummarizedBy.md +12 -0
- data/docs/ProjectTicketPrefs.md +13 -0
- data/docs/ProjectTicketType.md +15 -0
- data/docs/ProjectTicketTypeInstructionPerLanguage.md +9 -0
- data/docs/ProjectTicketTypeInstructions.md +9 -0
- data/docs/ProjectTicketTypeSummary.md +10 -0
- data/docs/ProjectTicketTypeSummarySummarizedBy.md +12 -0
- data/docs/ProjectWeb.md +8 -0
- data/docs/ScmHook.md +18 -0
- data/docs/SummariadByComponent.md +7 -0
- data/docs/SummariadByComponentInner.md +10 -0
- data/docs/SummariadByMilestone.md +7 -0
- data/docs/SummariadByMilestoneInner.md +10 -0
- data/docs/SummariadByOwner.md +7 -0
- data/docs/SummariadByOwnerInner.md +10 -0
- data/docs/SummariadByPriority.md +7 -0
- data/docs/SummariadByPriorityInner.md +10 -0
- data/docs/SummariadBySeverity.md +7 -0
- data/docs/SummariadBySeverityInner.md +10 -0
- data/docs/SummariadByType.md +7 -0
- data/docs/SummariadByTypeInner.md +10 -0
- data/docs/User.md +5 -3
- data/docs/UserApi.md +279 -0
- data/docs/UserImages.md +12 -0
- data/docs/UserStats.md +33 -0
- data/lib/osdn-client.rb +45 -1
- data/lib/osdn-client/api/default_api.rb +1 -1
- data/lib/osdn-client/api/project_api.rb +4574 -396
- data/lib/osdn-client/api/project_frs_api.rb +122 -5
- data/lib/osdn-client/api/project_news_api.rb +1 -1
- data/lib/osdn-client/api/project_scm_api.rb +1310 -0
- data/lib/osdn-client/api/project_ticket_api.rb +2124 -0
- data/lib/osdn-client/api/user_api.rb +294 -1
- data/lib/osdn-client/api_client.rb +1 -1
- data/lib/osdn-client/api_error.rb +1 -1
- data/lib/osdn-client/configuration.rb +1 -1
- data/lib/osdn-client/models/frs_admin_prefs.rb +208 -0
- data/lib/osdn-client/models/group.rb +8 -26
- data/lib/osdn-client/models/group_profile.rb +223 -0
- data/lib/osdn-client/models/group_profile_per_language.rb +217 -0
- data/lib/osdn-client/models/group_tool_flags.rb +11 -20
- data/lib/osdn-client/models/history.rb +262 -0
- data/lib/osdn-client/models/i18_n_text.rb +208 -0
- data/lib/osdn-client/models/news.rb +1 -1
- data/lib/osdn-client/models/package.rb +1 -1
- data/lib/osdn-client/models/pong.rb +1 -1
- data/lib/osdn-client/models/project_bzr.rb +329 -0
- data/lib/osdn-client/models/project_git.rb +374 -0
- data/lib/osdn-client/models/project_hg.rb +329 -0
- data/lib/osdn-client/models/project_scm.rb +329 -0
- data/lib/osdn-client/models/project_scm_last_commit.rb +226 -0
- data/lib/osdn-client/models/project_svn.rb +356 -0
- data/lib/osdn-client/models/project_ticket_comment.rb +244 -0
- data/lib/osdn-client/models/project_ticket_component.rb +253 -0
- data/lib/osdn-client/models/project_ticket_component_summary.rb +217 -0
- data/lib/osdn-client/models/project_ticket_component_summary_summarized_by.rb +235 -0
- data/lib/osdn-client/models/project_ticket_history.rb +253 -0
- data/lib/osdn-client/models/project_ticket_item.rb +356 -0
- data/lib/osdn-client/models/project_ticket_milestone.rb +253 -0
- data/lib/osdn-client/models/project_ticket_milestone_summary.rb +217 -0
- data/lib/osdn-client/models/project_ticket_milestone_summary_summarized_by.rb +235 -0
- data/lib/osdn-client/models/project_ticket_prefs.rb +244 -0
- data/lib/osdn-client/models/project_ticket_type.rb +266 -0
- data/lib/osdn-client/models/project_ticket_type_instruction_per_language.rb +208 -0
- data/lib/osdn-client/models/project_ticket_type_instructions.rb +212 -0
- data/lib/osdn-client/models/project_ticket_type_summary.rb +217 -0
- data/lib/osdn-client/models/project_ticket_type_summary_summarized_by.rb +235 -0
- data/lib/osdn-client/models/project_web.rb +199 -0
- data/lib/osdn-client/models/rel_file.rb +1 -1
- data/lib/osdn-client/models/release.rb +1 -1
- data/lib/osdn-client/models/scm_hook.rb +289 -0
- data/lib/osdn-client/models/simple_chamber.rb +1 -1
- data/lib/osdn-client/models/simple_group.rb +1 -1
- data/lib/osdn-client/models/simple_user.rb +1 -1
- data/lib/osdn-client/models/skill.rb +1 -1
- data/lib/osdn-client/models/summariad_by_component.rb +190 -0
- data/lib/osdn-client/models/summariad_by_component_inner.rb +217 -0
- data/lib/osdn-client/models/summariad_by_milestone.rb +190 -0
- data/lib/osdn-client/models/summariad_by_milestone_inner.rb +217 -0
- data/lib/osdn-client/models/summariad_by_owner.rb +190 -0
- data/lib/osdn-client/models/summariad_by_owner_inner.rb +217 -0
- data/lib/osdn-client/models/summariad_by_priority.rb +190 -0
- data/lib/osdn-client/models/summariad_by_priority_inner.rb +217 -0
- data/lib/osdn-client/models/summariad_by_severity.rb +190 -0
- data/lib/osdn-client/models/summariad_by_severity_inner.rb +217 -0
- data/lib/osdn-client/models/summariad_by_type.rb +190 -0
- data/lib/osdn-client/models/summariad_by_type_inner.rb +217 -0
- data/lib/osdn-client/models/token.rb +1 -1
- data/lib/osdn-client/models/user.rb +38 -18
- data/lib/osdn-client/models/user_images.rb +235 -0
- data/lib/osdn-client/models/user_stats.rb +424 -0
- data/lib/osdn-client/version.rb +2 -2
- data/osdn-client.gemspec +1 -1
- data/spec/api/default_api_spec.rb +1 -1
- data/spec/api/project_api_spec.rb +899 -3
- data/spec/api/project_frs_api_spec.rb +28 -3
- data/spec/api/project_news_api_spec.rb +1 -1
- data/spec/api/project_scm_api_spec.rb +324 -0
- data/spec/api/project_ticket_api_spec.rb +488 -0
- data/spec/api/user_api_spec.rb +63 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/frs_admin_prefs_spec.rb +59 -0
- data/spec/models/group_profile_per_language_spec.rb +65 -0
- data/spec/models/group_profile_spec.rb +65 -0
- data/spec/models/group_spec.rb +2 -14
- data/spec/models/group_tool_flags_spec.rb +3 -9
- data/spec/models/history_spec.rb +95 -0
- data/spec/models/i18_n_text_spec.rb +59 -0
- data/spec/models/news_spec.rb +1 -1
- data/spec/models/package_spec.rb +1 -1
- data/spec/models/pong_spec.rb +1 -1
- data/spec/models/project_bzr_spec.rb +137 -0
- data/spec/models/project_git_spec.rb +167 -0
- data/spec/models/project_hg_spec.rb +137 -0
- data/spec/models/project_scm_last_commit_spec.rb +71 -0
- data/spec/models/project_scm_spec.rb +137 -0
- data/spec/models/project_svn_spec.rb +155 -0
- data/spec/models/project_ticket_comment_spec.rb +83 -0
- data/spec/models/project_ticket_component_spec.rb +89 -0
- data/spec/models/project_ticket_component_summary_spec.rb +65 -0
- data/spec/models/project_ticket_component_summary_summarized_by_spec.rb +77 -0
- data/spec/models/project_ticket_history_spec.rb +89 -0
- data/spec/models/project_ticket_item_spec.rb +155 -0
- data/spec/models/project_ticket_milestone_spec.rb +89 -0
- data/spec/models/project_ticket_milestone_summary_spec.rb +65 -0
- data/spec/models/project_ticket_milestone_summary_summarized_by_spec.rb +77 -0
- data/spec/models/project_ticket_prefs_spec.rb +83 -0
- data/spec/models/project_ticket_type_instruction_per_language_spec.rb +59 -0
- data/spec/models/project_ticket_type_instructions_spec.rb +59 -0
- data/spec/models/project_ticket_type_spec.rb +95 -0
- data/spec/models/project_ticket_type_summary_spec.rb +65 -0
- data/spec/models/project_ticket_type_summary_summarized_by_spec.rb +77 -0
- data/spec/models/project_web_spec.rb +53 -0
- data/spec/models/rel_file_spec.rb +1 -1
- data/spec/models/release_spec.rb +1 -1
- data/spec/models/scm_hook_spec.rb +113 -0
- data/spec/models/simple_chamber_spec.rb +1 -1
- data/spec/models/simple_group_spec.rb +1 -1
- data/spec/models/simple_user_spec.rb +1 -1
- data/spec/models/skill_spec.rb +1 -1
- data/spec/models/summariad_by_component_inner_spec.rb +65 -0
- data/spec/models/summariad_by_component_spec.rb +47 -0
- data/spec/models/summariad_by_milestone_inner_spec.rb +65 -0
- data/spec/models/summariad_by_milestone_spec.rb +47 -0
- data/spec/models/summariad_by_owner_inner_spec.rb +65 -0
- data/spec/models/summariad_by_owner_spec.rb +47 -0
- data/spec/models/summariad_by_priority_inner_spec.rb +65 -0
- data/spec/models/summariad_by_priority_spec.rb +47 -0
- data/spec/models/summariad_by_severity_inner_spec.rb +65 -0
- data/spec/models/summariad_by_severity_spec.rb +47 -0
- data/spec/models/summariad_by_type_inner_spec.rb +65 -0
- data/spec/models/summariad_by_type_spec.rb +47 -0
- data/spec/models/token_spec.rb +1 -1
- data/spec/models/user_images_spec.rb +77 -0
- data/spec/models/user_spec.rb +16 -4
- data/spec/models/user_stats_spec.rb +203 -0
- data/spec/spec_helper.rb +1 -1
- metadata +179 -3
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#OSDN REST API v0 beta
|
3
|
+
|
4
|
+
#OSDN REST API. Currently this API is experimental release. Pelase refer documentation on https://osdn.net/projects/osdn-codes/wiki/APIGuide and you can get client libraries from https://osdn.net/projects/osdn-codes/releases/p14859 .
|
5
|
+
|
6
|
+
OpenAPI spec version: 0.0.20171120
|
7
|
+
Contact: admin@osdn.net
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
require 'spec_helper'
|
25
|
+
require 'json'
|
26
|
+
require 'date'
|
27
|
+
|
28
|
+
# Unit tests for OSDNClient::SummariadByType
|
29
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
30
|
+
# Please update as you see appropriate
|
31
|
+
describe 'SummariadByType' do
|
32
|
+
before do
|
33
|
+
# run before each test
|
34
|
+
@instance = OSDNClient::SummariadByType.new
|
35
|
+
end
|
36
|
+
|
37
|
+
after do
|
38
|
+
# run after each test
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test an instance of SummariadByType' do
|
42
|
+
it 'should create an instact of SummariadByType' do
|
43
|
+
expect(@instance).to be_instance_of(OSDNClient::SummariadByType)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
data/spec/models/token_spec.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#OSDN REST API. Currently this API is experimental release. Pelase refer documentation on https://osdn.net/projects/osdn-codes/wiki/APIGuide and you can get client libraries from https://osdn.net/projects/osdn-codes/releases/p14859 .
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.0.
|
6
|
+
OpenAPI spec version: 0.0.20171120
|
7
7
|
Contact: admin@osdn.net
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
@@ -0,0 +1,77 @@
|
|
1
|
+
=begin
|
2
|
+
#OSDN REST API v0 beta
|
3
|
+
|
4
|
+
#OSDN REST API. Currently this API is experimental release. Pelase refer documentation on https://osdn.net/projects/osdn-codes/wiki/APIGuide and you can get client libraries from https://osdn.net/projects/osdn-codes/releases/p14859 .
|
5
|
+
|
6
|
+
OpenAPI spec version: 0.0.20171120
|
7
|
+
Contact: admin@osdn.net
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
require 'spec_helper'
|
25
|
+
require 'json'
|
26
|
+
require 'date'
|
27
|
+
|
28
|
+
# Unit tests for OSDNClient::UserImages
|
29
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
30
|
+
# Please update as you see appropriate
|
31
|
+
describe 'UserImages' do
|
32
|
+
before do
|
33
|
+
# run before each test
|
34
|
+
@instance = OSDNClient::UserImages.new
|
35
|
+
end
|
36
|
+
|
37
|
+
after do
|
38
|
+
# run after each test
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test an instance of UserImages' do
|
42
|
+
it 'should create an instact of UserImages' do
|
43
|
+
expect(@instance).to be_instance_of(OSDNClient::UserImages)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
describe 'test attribute "icon"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "photo_36"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "photo_92"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "photo_128"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe 'test attribute "photo_256"' do
|
71
|
+
it 'should work' do
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
end
|
77
|
+
|
data/spec/models/user_spec.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#OSDN REST API. Currently this API is experimental release. Pelase refer documentation on https://osdn.net/projects/osdn-codes/wiki/APIGuide and you can get client libraries from https://osdn.net/projects/osdn-codes/releases/p14859 .
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.0.
|
6
|
+
OpenAPI spec version: 0.0.20171120
|
7
7
|
Contact: admin@osdn.net
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
@@ -61,19 +61,25 @@ describe 'User' do
|
|
61
61
|
end
|
62
62
|
end
|
63
63
|
|
64
|
-
describe 'test attribute "
|
64
|
+
describe 'test attribute "authorized_keys"' do
|
65
65
|
it 'should work' do
|
66
66
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
67
|
end
|
68
68
|
end
|
69
69
|
|
70
|
-
describe 'test attribute "
|
70
|
+
describe 'test attribute "email"' do
|
71
71
|
it 'should work' do
|
72
72
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
73
73
|
end
|
74
74
|
end
|
75
75
|
|
76
|
-
describe 'test attribute "
|
76
|
+
describe 'test attribute "ranking"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
describe 'test attribute "blog"' do
|
77
83
|
it 'should work' do
|
78
84
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
85
|
end
|
@@ -103,6 +109,12 @@ describe 'User' do
|
|
103
109
|
end
|
104
110
|
end
|
105
111
|
|
112
|
+
describe 'test attribute "images"' do
|
113
|
+
it 'should work' do
|
114
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
106
118
|
describe 'test attribute "groups"' do
|
107
119
|
it 'should work' do
|
108
120
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -0,0 +1,203 @@
|
|
1
|
+
=begin
|
2
|
+
#OSDN REST API v0 beta
|
3
|
+
|
4
|
+
#OSDN REST API. Currently this API is experimental release. Pelase refer documentation on https://osdn.net/projects/osdn-codes/wiki/APIGuide and you can get client libraries from https://osdn.net/projects/osdn-codes/releases/p14859 .
|
5
|
+
|
6
|
+
OpenAPI spec version: 0.0.20171120
|
7
|
+
Contact: admin@osdn.net
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
+
you may not use this file except in compliance with the License.
|
12
|
+
You may obtain a copy of the License at
|
13
|
+
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
+
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
+
See the License for the specific language governing permissions and
|
20
|
+
limitations under the License.
|
21
|
+
|
22
|
+
=end
|
23
|
+
|
24
|
+
require 'spec_helper'
|
25
|
+
require 'json'
|
26
|
+
require 'date'
|
27
|
+
|
28
|
+
# Unit tests for OSDNClient::UserStats
|
29
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
30
|
+
# Please update as you see appropriate
|
31
|
+
describe 'UserStats' do
|
32
|
+
before do
|
33
|
+
# run before each test
|
34
|
+
@instance = OSDNClient::UserStats.new
|
35
|
+
end
|
36
|
+
|
37
|
+
after do
|
38
|
+
# run after each test
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test an instance of UserStats' do
|
42
|
+
it 'should create an instact of UserStats' do
|
43
|
+
expect(@instance).to be_instance_of(OSDNClient::UserStats)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
describe 'test attribute "date"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "user_point"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "news_count"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "git_count"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe 'test attribute "svn_count"' do
|
71
|
+
it 'should work' do
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe 'test attribute "hg_count"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
describe 'test attribute "bzr_count"' do
|
83
|
+
it 'should work' do
|
84
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe 'test attribute "cvs_count"' do
|
89
|
+
it 'should work' do
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
describe 'test attribute "wiki_count"' do
|
95
|
+
it 'should work' do
|
96
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
describe 'test attribute "forum_count"' do
|
101
|
+
it 'should work' do
|
102
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
describe 'test attribute "forum_misc_count"' do
|
107
|
+
it 'should work' do
|
108
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
describe 'test attribute "ticket_open_count"' do
|
113
|
+
it 'should work' do
|
114
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
describe 'test attribute "ticket_close_count"' do
|
119
|
+
it 'should work' do
|
120
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
describe 'test attribute "ticket_comment_count"' do
|
125
|
+
it 'should work' do
|
126
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
describe 'test attribute "ticket_owner_count"' do
|
131
|
+
it 'should work' do
|
132
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
describe 'test attribute "ticket_misc_count"' do
|
137
|
+
it 'should work' do
|
138
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
describe 'test attribute "ticket_milestone_count"' do
|
143
|
+
it 'should work' do
|
144
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
describe 'test attribute "group_approved_count"' do
|
149
|
+
it 'should work' do
|
150
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
154
|
+
describe 'test attribute "group_history_count"' do
|
155
|
+
it 'should work' do
|
156
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
describe 'test attribute "ghosted_submit_count"' do
|
161
|
+
it 'should work' do
|
162
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
describe 'test attribute "ghosted_approve_count"' do
|
167
|
+
it 'should work' do
|
168
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
172
|
+
describe 'test attribute "project_review_submit_count"' do
|
173
|
+
it 'should work' do
|
174
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
describe 'test attribute "project_review_update_count"' do
|
179
|
+
it 'should work' do
|
180
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
181
|
+
end
|
182
|
+
end
|
183
|
+
|
184
|
+
describe 'test attribute "project_review_rating_submit_count"' do
|
185
|
+
it 'should work' do
|
186
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
187
|
+
end
|
188
|
+
end
|
189
|
+
|
190
|
+
describe 'test attribute "chamber_file_count"' do
|
191
|
+
it 'should work' do
|
192
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
describe 'test attribute "chamber_vcs_count"' do
|
197
|
+
it 'should work' do
|
198
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
end
|
203
|
+
|
data/spec/spec_helper.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#OSDN REST API. Currently this API is experimental release. Pelase refer documentation on https://osdn.net/projects/osdn-codes/wiki/APIGuide and you can get client libraries from https://osdn.net/projects/osdn-codes/releases/p14859 .
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.0.
|
6
|
+
OpenAPI spec version: 0.0.20171120
|
7
7
|
Contact: admin@osdn.net
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: osdn-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.20171120
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OSDN Tech Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-12-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -202,67 +202,199 @@ files:
|
|
202
202
|
- LICENSE
|
203
203
|
- README.md
|
204
204
|
- docs/DefaultApi.md
|
205
|
+
- docs/FrsAdminPrefs.md
|
205
206
|
- docs/Group.md
|
207
|
+
- docs/GroupProfile.md
|
208
|
+
- docs/GroupProfilePerLanguage.md
|
206
209
|
- docs/GroupToolFlags.md
|
210
|
+
- docs/History.md
|
211
|
+
- docs/I18NText.md
|
207
212
|
- docs/News.md
|
208
213
|
- docs/Package.md
|
209
214
|
- docs/Pong.md
|
210
215
|
- docs/ProjectApi.md
|
216
|
+
- docs/ProjectBzr.md
|
211
217
|
- docs/ProjectFrsApi.md
|
218
|
+
- docs/ProjectGit.md
|
219
|
+
- docs/ProjectHg.md
|
212
220
|
- docs/ProjectNewsApi.md
|
221
|
+
- docs/ProjectSCM.md
|
222
|
+
- docs/ProjectSCMApi.md
|
223
|
+
- docs/ProjectSCMLastCommit.md
|
224
|
+
- docs/ProjectSvn.md
|
225
|
+
- docs/ProjectTicketApi.md
|
226
|
+
- docs/ProjectTicketComment.md
|
227
|
+
- docs/ProjectTicketComponent.md
|
228
|
+
- docs/ProjectTicketComponentSummary.md
|
229
|
+
- docs/ProjectTicketComponentSummarySummarizedBy.md
|
230
|
+
- docs/ProjectTicketHistory.md
|
231
|
+
- docs/ProjectTicketItem.md
|
232
|
+
- docs/ProjectTicketMilestone.md
|
233
|
+
- docs/ProjectTicketMilestoneSummary.md
|
234
|
+
- docs/ProjectTicketMilestoneSummarySummarizedBy.md
|
235
|
+
- docs/ProjectTicketPrefs.md
|
236
|
+
- docs/ProjectTicketType.md
|
237
|
+
- docs/ProjectTicketTypeInstructionPerLanguage.md
|
238
|
+
- docs/ProjectTicketTypeInstructions.md
|
239
|
+
- docs/ProjectTicketTypeSummary.md
|
240
|
+
- docs/ProjectTicketTypeSummarySummarizedBy.md
|
241
|
+
- docs/ProjectWeb.md
|
213
242
|
- docs/RelFile.md
|
214
243
|
- docs/Release.md
|
244
|
+
- docs/ScmHook.md
|
215
245
|
- docs/SimpleChamber.md
|
216
246
|
- docs/SimpleGroup.md
|
217
247
|
- docs/SimpleUser.md
|
218
248
|
- docs/Skill.md
|
249
|
+
- docs/SummariadByComponent.md
|
250
|
+
- docs/SummariadByComponentInner.md
|
251
|
+
- docs/SummariadByMilestone.md
|
252
|
+
- docs/SummariadByMilestoneInner.md
|
253
|
+
- docs/SummariadByOwner.md
|
254
|
+
- docs/SummariadByOwnerInner.md
|
255
|
+
- docs/SummariadByPriority.md
|
256
|
+
- docs/SummariadByPriorityInner.md
|
257
|
+
- docs/SummariadBySeverity.md
|
258
|
+
- docs/SummariadBySeverityInner.md
|
259
|
+
- docs/SummariadByType.md
|
260
|
+
- docs/SummariadByTypeInner.md
|
219
261
|
- docs/Token.md
|
220
262
|
- docs/User.md
|
221
263
|
- docs/UserApi.md
|
264
|
+
- docs/UserImages.md
|
265
|
+
- docs/UserStats.md
|
222
266
|
- lib/osdn-client.rb
|
223
267
|
- lib/osdn-client/api/default_api.rb
|
224
268
|
- lib/osdn-client/api/project_api.rb
|
225
269
|
- lib/osdn-client/api/project_frs_api.rb
|
226
270
|
- lib/osdn-client/api/project_news_api.rb
|
271
|
+
- lib/osdn-client/api/project_scm_api.rb
|
272
|
+
- lib/osdn-client/api/project_ticket_api.rb
|
227
273
|
- lib/osdn-client/api/user_api.rb
|
228
274
|
- lib/osdn-client/api_client.rb
|
229
275
|
- lib/osdn-client/api_error.rb
|
230
276
|
- lib/osdn-client/configuration.rb
|
277
|
+
- lib/osdn-client/models/frs_admin_prefs.rb
|
231
278
|
- lib/osdn-client/models/group.rb
|
279
|
+
- lib/osdn-client/models/group_profile.rb
|
280
|
+
- lib/osdn-client/models/group_profile_per_language.rb
|
232
281
|
- lib/osdn-client/models/group_tool_flags.rb
|
282
|
+
- lib/osdn-client/models/history.rb
|
283
|
+
- lib/osdn-client/models/i18_n_text.rb
|
233
284
|
- lib/osdn-client/models/news.rb
|
234
285
|
- lib/osdn-client/models/package.rb
|
235
286
|
- lib/osdn-client/models/pong.rb
|
287
|
+
- lib/osdn-client/models/project_bzr.rb
|
288
|
+
- lib/osdn-client/models/project_git.rb
|
289
|
+
- lib/osdn-client/models/project_hg.rb
|
290
|
+
- lib/osdn-client/models/project_scm.rb
|
291
|
+
- lib/osdn-client/models/project_scm_last_commit.rb
|
292
|
+
- lib/osdn-client/models/project_svn.rb
|
293
|
+
- lib/osdn-client/models/project_ticket_comment.rb
|
294
|
+
- lib/osdn-client/models/project_ticket_component.rb
|
295
|
+
- lib/osdn-client/models/project_ticket_component_summary.rb
|
296
|
+
- lib/osdn-client/models/project_ticket_component_summary_summarized_by.rb
|
297
|
+
- lib/osdn-client/models/project_ticket_history.rb
|
298
|
+
- lib/osdn-client/models/project_ticket_item.rb
|
299
|
+
- lib/osdn-client/models/project_ticket_milestone.rb
|
300
|
+
- lib/osdn-client/models/project_ticket_milestone_summary.rb
|
301
|
+
- lib/osdn-client/models/project_ticket_milestone_summary_summarized_by.rb
|
302
|
+
- lib/osdn-client/models/project_ticket_prefs.rb
|
303
|
+
- lib/osdn-client/models/project_ticket_type.rb
|
304
|
+
- lib/osdn-client/models/project_ticket_type_instruction_per_language.rb
|
305
|
+
- lib/osdn-client/models/project_ticket_type_instructions.rb
|
306
|
+
- lib/osdn-client/models/project_ticket_type_summary.rb
|
307
|
+
- lib/osdn-client/models/project_ticket_type_summary_summarized_by.rb
|
308
|
+
- lib/osdn-client/models/project_web.rb
|
236
309
|
- lib/osdn-client/models/rel_file.rb
|
237
310
|
- lib/osdn-client/models/release.rb
|
311
|
+
- lib/osdn-client/models/scm_hook.rb
|
238
312
|
- lib/osdn-client/models/simple_chamber.rb
|
239
313
|
- lib/osdn-client/models/simple_group.rb
|
240
314
|
- lib/osdn-client/models/simple_user.rb
|
241
315
|
- lib/osdn-client/models/skill.rb
|
316
|
+
- lib/osdn-client/models/summariad_by_component.rb
|
317
|
+
- lib/osdn-client/models/summariad_by_component_inner.rb
|
318
|
+
- lib/osdn-client/models/summariad_by_milestone.rb
|
319
|
+
- lib/osdn-client/models/summariad_by_milestone_inner.rb
|
320
|
+
- lib/osdn-client/models/summariad_by_owner.rb
|
321
|
+
- lib/osdn-client/models/summariad_by_owner_inner.rb
|
322
|
+
- lib/osdn-client/models/summariad_by_priority.rb
|
323
|
+
- lib/osdn-client/models/summariad_by_priority_inner.rb
|
324
|
+
- lib/osdn-client/models/summariad_by_severity.rb
|
325
|
+
- lib/osdn-client/models/summariad_by_severity_inner.rb
|
326
|
+
- lib/osdn-client/models/summariad_by_type.rb
|
327
|
+
- lib/osdn-client/models/summariad_by_type_inner.rb
|
242
328
|
- lib/osdn-client/models/token.rb
|
243
329
|
- lib/osdn-client/models/user.rb
|
330
|
+
- lib/osdn-client/models/user_images.rb
|
331
|
+
- lib/osdn-client/models/user_stats.rb
|
244
332
|
- lib/osdn-client/version.rb
|
245
333
|
- osdn-client.gemspec
|
246
334
|
- spec/api/default_api_spec.rb
|
247
335
|
- spec/api/project_api_spec.rb
|
248
336
|
- spec/api/project_frs_api_spec.rb
|
249
337
|
- spec/api/project_news_api_spec.rb
|
338
|
+
- spec/api/project_scm_api_spec.rb
|
339
|
+
- spec/api/project_ticket_api_spec.rb
|
250
340
|
- spec/api/user_api_spec.rb
|
251
341
|
- spec/api_client_spec.rb
|
252
342
|
- spec/configuration_spec.rb
|
343
|
+
- spec/models/frs_admin_prefs_spec.rb
|
344
|
+
- spec/models/group_profile_per_language_spec.rb
|
345
|
+
- spec/models/group_profile_spec.rb
|
253
346
|
- spec/models/group_spec.rb
|
254
347
|
- spec/models/group_tool_flags_spec.rb
|
348
|
+
- spec/models/history_spec.rb
|
349
|
+
- spec/models/i18_n_text_spec.rb
|
255
350
|
- spec/models/news_spec.rb
|
256
351
|
- spec/models/package_spec.rb
|
257
352
|
- spec/models/pong_spec.rb
|
353
|
+
- spec/models/project_bzr_spec.rb
|
354
|
+
- spec/models/project_git_spec.rb
|
355
|
+
- spec/models/project_hg_spec.rb
|
356
|
+
- spec/models/project_scm_last_commit_spec.rb
|
357
|
+
- spec/models/project_scm_spec.rb
|
358
|
+
- spec/models/project_svn_spec.rb
|
359
|
+
- spec/models/project_ticket_comment_spec.rb
|
360
|
+
- spec/models/project_ticket_component_spec.rb
|
361
|
+
- spec/models/project_ticket_component_summary_spec.rb
|
362
|
+
- spec/models/project_ticket_component_summary_summarized_by_spec.rb
|
363
|
+
- spec/models/project_ticket_history_spec.rb
|
364
|
+
- spec/models/project_ticket_item_spec.rb
|
365
|
+
- spec/models/project_ticket_milestone_spec.rb
|
366
|
+
- spec/models/project_ticket_milestone_summary_spec.rb
|
367
|
+
- spec/models/project_ticket_milestone_summary_summarized_by_spec.rb
|
368
|
+
- spec/models/project_ticket_prefs_spec.rb
|
369
|
+
- spec/models/project_ticket_type_instruction_per_language_spec.rb
|
370
|
+
- spec/models/project_ticket_type_instructions_spec.rb
|
371
|
+
- spec/models/project_ticket_type_spec.rb
|
372
|
+
- spec/models/project_ticket_type_summary_spec.rb
|
373
|
+
- spec/models/project_ticket_type_summary_summarized_by_spec.rb
|
374
|
+
- spec/models/project_web_spec.rb
|
258
375
|
- spec/models/rel_file_spec.rb
|
259
376
|
- spec/models/release_spec.rb
|
377
|
+
- spec/models/scm_hook_spec.rb
|
260
378
|
- spec/models/simple_chamber_spec.rb
|
261
379
|
- spec/models/simple_group_spec.rb
|
262
380
|
- spec/models/simple_user_spec.rb
|
263
381
|
- spec/models/skill_spec.rb
|
382
|
+
- spec/models/summariad_by_component_inner_spec.rb
|
383
|
+
- spec/models/summariad_by_component_spec.rb
|
384
|
+
- spec/models/summariad_by_milestone_inner_spec.rb
|
385
|
+
- spec/models/summariad_by_milestone_spec.rb
|
386
|
+
- spec/models/summariad_by_owner_inner_spec.rb
|
387
|
+
- spec/models/summariad_by_owner_spec.rb
|
388
|
+
- spec/models/summariad_by_priority_inner_spec.rb
|
389
|
+
- spec/models/summariad_by_priority_spec.rb
|
390
|
+
- spec/models/summariad_by_severity_inner_spec.rb
|
391
|
+
- spec/models/summariad_by_severity_spec.rb
|
392
|
+
- spec/models/summariad_by_type_inner_spec.rb
|
393
|
+
- spec/models/summariad_by_type_spec.rb
|
264
394
|
- spec/models/token_spec.rb
|
395
|
+
- spec/models/user_images_spec.rb
|
265
396
|
- spec/models/user_spec.rb
|
397
|
+
- spec/models/user_stats_spec.rb
|
266
398
|
- spec/spec_helper.rb
|
267
399
|
homepage: https://osdn.net/
|
268
400
|
licenses:
|
@@ -284,7 +416,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
284
416
|
version: '0'
|
285
417
|
requirements: []
|
286
418
|
rubyforge_project:
|
287
|
-
rubygems_version: 2.
|
419
|
+
rubygems_version: 2.7.6.2
|
288
420
|
signing_key:
|
289
421
|
specification_version: 4
|
290
422
|
summary: OSDN API basic client library for ruby
|
@@ -292,21 +424,65 @@ test_files:
|
|
292
424
|
- spec/api/project_frs_api_spec.rb
|
293
425
|
- spec/api/user_api_spec.rb
|
294
426
|
- spec/api/project_news_api_spec.rb
|
427
|
+
- spec/api/project_scm_api_spec.rb
|
295
428
|
- spec/api/default_api_spec.rb
|
429
|
+
- spec/api/project_ticket_api_spec.rb
|
296
430
|
- spec/api/project_api_spec.rb
|
297
431
|
- spec/api_client_spec.rb
|
298
432
|
- spec/configuration_spec.rb
|
433
|
+
- spec/models/summariad_by_owner_inner_spec.rb
|
299
434
|
- spec/models/rel_file_spec.rb
|
435
|
+
- spec/models/group_profile_per_language_spec.rb
|
436
|
+
- spec/models/summariad_by_owner_spec.rb
|
437
|
+
- spec/models/summariad_by_milestone_spec.rb
|
438
|
+
- spec/models/project_ticket_milestone_spec.rb
|
439
|
+
- spec/models/project_ticket_component_summary_summarized_by_spec.rb
|
300
440
|
- spec/models/skill_spec.rb
|
301
441
|
- spec/models/user_spec.rb
|
442
|
+
- spec/models/project_scm_last_commit_spec.rb
|
443
|
+
- spec/models/group_profile_spec.rb
|
444
|
+
- spec/models/project_ticket_milestone_summary_summarized_by_spec.rb
|
302
445
|
- spec/models/simple_group_spec.rb
|
446
|
+
- spec/models/project_bzr_spec.rb
|
447
|
+
- spec/models/summariad_by_type_inner_spec.rb
|
303
448
|
- spec/models/news_spec.rb
|
449
|
+
- spec/models/project_ticket_component_summary_spec.rb
|
304
450
|
- spec/models/simple_chamber_spec.rb
|
305
451
|
- spec/models/simple_user_spec.rb
|
452
|
+
- spec/models/project_ticket_item_spec.rb
|
453
|
+
- spec/models/scm_hook_spec.rb
|
454
|
+
- spec/models/project_scm_spec.rb
|
455
|
+
- spec/models/project_hg_spec.rb
|
456
|
+
- spec/models/project_ticket_type_spec.rb
|
457
|
+
- spec/models/project_ticket_type_summary_spec.rb
|
306
458
|
- spec/models/pong_spec.rb
|
459
|
+
- spec/models/project_web_spec.rb
|
460
|
+
- spec/models/summariad_by_severity_spec.rb
|
461
|
+
- spec/models/history_spec.rb
|
462
|
+
- spec/models/summariad_by_type_spec.rb
|
463
|
+
- spec/models/user_images_spec.rb
|
307
464
|
- spec/models/group_spec.rb
|
465
|
+
- spec/models/project_ticket_component_spec.rb
|
466
|
+
- spec/models/summariad_by_component_inner_spec.rb
|
467
|
+
- spec/models/summariad_by_priority_spec.rb
|
308
468
|
- spec/models/token_spec.rb
|
469
|
+
- spec/models/project_ticket_prefs_spec.rb
|
470
|
+
- spec/models/frs_admin_prefs_spec.rb
|
471
|
+
- spec/models/summariad_by_priority_inner_spec.rb
|
472
|
+
- spec/models/project_ticket_comment_spec.rb
|
473
|
+
- spec/models/project_git_spec.rb
|
474
|
+
- spec/models/summariad_by_component_spec.rb
|
309
475
|
- spec/models/group_tool_flags_spec.rb
|
476
|
+
- spec/models/project_ticket_type_summary_summarized_by_spec.rb
|
477
|
+
- spec/models/project_ticket_history_spec.rb
|
478
|
+
- spec/models/project_ticket_type_instruction_per_language_spec.rb
|
479
|
+
- spec/models/summariad_by_milestone_inner_spec.rb
|
480
|
+
- spec/models/i18_n_text_spec.rb
|
481
|
+
- spec/models/user_stats_spec.rb
|
482
|
+
- spec/models/summariad_by_severity_inner_spec.rb
|
310
483
|
- spec/models/package_spec.rb
|
484
|
+
- spec/models/project_svn_spec.rb
|
485
|
+
- spec/models/project_ticket_type_instructions_spec.rb
|
311
486
|
- spec/models/release_spec.rb
|
487
|
+
- spec/models/project_ticket_milestone_summary_spec.rb
|
312
488
|
- spec/spec_helper.rb
|