osdn-client 0.0.20160304 → 0.0.20160711

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +201 -0
  3. data/README.md +182 -0
  4. data/docs/DefaultApi.md +115 -0
  5. data/docs/Group.md +23 -0
  6. data/docs/GroupToolFlags.md +17 -0
  7. data/docs/News.md +14 -0
  8. data/docs/Package.md +13 -0
  9. data/docs/Pong.md +11 -0
  10. data/docs/ProjectApi.md +1511 -0
  11. data/docs/ProjectFrsApi.md +888 -0
  12. data/docs/ProjectNewsApi.md +576 -0
  13. data/docs/RelFile.md +19 -0
  14. data/docs/Release.md +16 -0
  15. data/docs/SimpleChamber.md +11 -0
  16. data/docs/SimpleGroup.md +11 -0
  17. data/docs/SimpleUser.md +10 -0
  18. data/docs/Skill.md +11 -0
  19. data/docs/Token.md +12 -0
  20. data/docs/User.md +20 -0
  21. data/docs/UserApi.md +63 -0
  22. data/lib/osdn-client.rb +32 -9
  23. data/lib/osdn-client/api/default_api.rb +50 -39
  24. data/lib/osdn-client/api/project_api.rb +661 -773
  25. data/lib/osdn-client/api/project_frs_api.rb +350 -412
  26. data/lib/osdn-client/api/project_news_api.rb +217 -244
  27. data/lib/osdn-client/api/user_api.rb +35 -20
  28. data/lib/osdn-client/api_client.rb +74 -13
  29. data/lib/osdn-client/api_error.rb +23 -0
  30. data/lib/osdn-client/configuration.rb +45 -1
  31. data/lib/osdn-client/models/group.rb +103 -65
  32. data/lib/osdn-client/models/group_tool_flags.rb +91 -47
  33. data/lib/osdn-client/models/news.rb +85 -38
  34. data/lib/osdn-client/models/package.rb +83 -35
  35. data/lib/osdn-client/models/pong.rb +79 -29
  36. data/lib/osdn-client/models/rel_file.rb +95 -53
  37. data/lib/osdn-client/models/release.rb +89 -44
  38. data/lib/osdn-client/models/simple_chamber.rb +79 -29
  39. data/lib/osdn-client/models/simple_group.rb +79 -29
  40. data/lib/osdn-client/models/simple_user.rb +77 -26
  41. data/lib/osdn-client/models/skill.rb +79 -29
  42. data/lib/osdn-client/models/token.rb +81 -32
  43. data/lib/osdn-client/models/user.rb +97 -56
  44. data/lib/osdn-client/version.rb +24 -1
  45. data/osdn-client.gemspec +30 -7
  46. data/spec/api/default_api_spec.rb +73 -0
  47. data/spec/api/{ProjectApi_spec.rb → project_api_spec.rb} +187 -264
  48. data/spec/api/{ProjectFrsApi_spec.rb → project_frs_api_spec.rb} +103 -136
  49. data/spec/api/{ProjectNewsApi_spec.rb → project_news_api_spec.rb} +71 -88
  50. data/spec/api/user_api_spec.rb +58 -0
  51. data/spec/api_client_spec.rb +315 -0
  52. data/spec/configuration_spec.rb +48 -0
  53. data/spec/models/group_spec.rb +143 -0
  54. data/spec/models/group_tool_flags_spec.rb +107 -0
  55. data/spec/models/news_spec.rb +89 -0
  56. data/spec/models/package_spec.rb +83 -0
  57. data/spec/models/pong_spec.rb +71 -0
  58. data/spec/models/rel_file_spec.rb +119 -0
  59. data/spec/models/release_spec.rb +101 -0
  60. data/spec/models/simple_chamber_spec.rb +71 -0
  61. data/spec/models/simple_group_spec.rb +71 -0
  62. data/spec/models/simple_user_spec.rb +65 -0
  63. data/spec/models/skill_spec.rb +71 -0
  64. data/spec/models/token_spec.rb +77 -0
  65. data/spec/models/user_spec.rb +125 -0
  66. data/spec/spec_helper.rb +122 -0
  67. metadata +87 -59
  68. data/spec/api/DefaultApi_spec.rb +0 -58
  69. data/spec/api/UserApi_spec.rb +0 -39
  70. data/spec/models/GroupToolFlags_spec.rb +0 -124
  71. data/spec/models/Group_spec.rb +0 -184
  72. data/spec/models/News_spec.rb +0 -94
  73. data/spec/models/Package_spec.rb +0 -84
  74. data/spec/models/Pong_spec.rb +0 -64
  75. data/spec/models/RelFile_spec.rb +0 -144
  76. data/spec/models/Release_spec.rb +0 -114
  77. data/spec/models/SimpleChamber_spec.rb +0 -64
  78. data/spec/models/SimpleGroup_spec.rb +0 -64
  79. data/spec/models/SimpleUser_spec.rb +0 -54
  80. data/spec/models/Skill_spec.rb +0 -64
  81. data/spec/models/Token_spec.rb +0 -74
  82. data/spec/models/User_spec.rb +0 -154
@@ -1,58 +0,0 @@
1
- require 'spec_helper'
2
- require 'json'
3
-
4
- # Unit tests for OSDNClient::DefaultApi
5
- # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
6
- # Please update as you see appropriate
7
- describe 'DefaultApi' do
8
- before do
9
- # run before each test
10
- @instance = OSDNClient::DefaultApi.new
11
- end
12
-
13
- after do
14
- # run after each test
15
- end
16
-
17
- describe 'test an instance of DefaultApi' do
18
- it 'should create an instact of DefaultApi' do
19
- @instance.should be_a(OSDNClient::DefaultApi)
20
- end
21
- end
22
-
23
- # unit tests for ping
24
- #
25
- # return pong for test
26
- # @param [Hash] opts the optional parameters
27
- # @return [Pong]
28
- describe 'ping test' do
29
- it "should work" do
30
- # assertion here
31
- # should be_a()
32
- # should be_nil
33
- # should ==
34
- # should_not ==
35
- end
36
- end
37
-
38
- # unit tests for token
39
- #
40
- # Get access token by access code.
41
- # @param client_id Your application ID
42
- # @param client_secret Your application secret (key)
43
- # @param [Hash] opts the optional parameters
44
- # @option opts [String] :grant_type \"authorization_code\" or \"refresh_token\"
45
- # @option opts [String] :code Set auth code issued by https://osdn.jp/account/oauth2ui/authorize for grant_type=authorization_code
46
- # @option opts [String] :refresh_token Set refresh token to update access token.
47
- # @return [Token]
48
- describe 'token test' do
49
- it "should work" do
50
- # assertion here
51
- # should be_a()
52
- # should be_nil
53
- # should ==
54
- # should_not ==
55
- end
56
- end
57
-
58
- end
@@ -1,39 +0,0 @@
1
- require 'spec_helper'
2
- require 'json'
3
-
4
- # Unit tests for OSDNClient::UserApi
5
- # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
6
- # Please update as you see appropriate
7
- describe 'UserApi' do
8
- before do
9
- # run before each test
10
- @instance = OSDNClient::UserApi.new
11
- end
12
-
13
- after do
14
- # run after each test
15
- end
16
-
17
- describe 'test an instance of UserApi' do
18
- it 'should create an instact of UserApi' do
19
- @instance.should be_a(OSDNClient::UserApi)
20
- end
21
- end
22
-
23
- # unit tests for get_user
24
- #
25
- # Get user profile.
26
- # @param id_or_name numeric user id or user name
27
- # @param [Hash] opts the optional parameters
28
- # @return [User]
29
- describe 'get_user test' do
30
- it "should work" do
31
- # assertion here
32
- # should be_a()
33
- # should be_nil
34
- # should ==
35
- # should_not ==
36
- end
37
- end
38
-
39
- end
@@ -1,124 +0,0 @@
1
- require 'spec_helper'
2
- require 'json'
3
- require 'date'
4
-
5
- # Unit tests for OSDNClient::
6
- # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
7
- # Please update as you see appropriate
8
- describe 'GroupToolFlags' do
9
- before do
10
- # run before each test
11
- @instance = OSDNClient::GroupToolFlags.new
12
- end
13
-
14
- after do
15
- # run after each test
16
- end
17
-
18
- describe 'test an instance of GroupToolFlags' do
19
- it 'should create an instact of GroupToolFlags' do
20
- @instance.should be_a(OSDNClient::GroupToolFlags)
21
- end
22
- end
23
- describe 'test attribute "cvs"' do
24
- it 'should work' do
25
- # assertion here
26
- # should be_a()
27
- # should be_nil
28
- # should ==
29
- # should_not ==
30
- end
31
- end
32
-
33
- describe 'test attribute "git"' do
34
- it 'should work' do
35
- # assertion here
36
- # should be_a()
37
- # should be_nil
38
- # should ==
39
- # should_not ==
40
- end
41
- end
42
-
43
- describe 'test attribute "svn"' do
44
- it 'should work' do
45
- # assertion here
46
- # should be_a()
47
- # should be_nil
48
- # should ==
49
- # should_not ==
50
- end
51
- end
52
-
53
- describe 'test attribute "bzr"' do
54
- it 'should work' do
55
- # assertion here
56
- # should be_a()
57
- # should be_nil
58
- # should ==
59
- # should_not ==
60
- end
61
- end
62
-
63
- describe 'test attribute "scm"' do
64
- it 'should work' do
65
- # assertion here
66
- # should be_a()
67
- # should be_nil
68
- # should ==
69
- # should_not ==
70
- end
71
- end
72
-
73
- describe 'test attribute "frs"' do
74
- it 'should work' do
75
- # assertion here
76
- # should be_a()
77
- # should be_nil
78
- # should ==
79
- # should_not ==
80
- end
81
- end
82
-
83
- describe 'test attribute "tikcet"' do
84
- it 'should work' do
85
- # assertion here
86
- # should be_a()
87
- # should be_nil
88
- # should ==
89
- # should_not ==
90
- end
91
- end
92
-
93
- describe 'test attribute "wiki"' do
94
- it 'should work' do
95
- # assertion here
96
- # should be_a()
97
- # should be_nil
98
- # should ==
99
- # should_not ==
100
- end
101
- end
102
-
103
- describe 'test attribute "forum"' do
104
- it 'should work' do
105
- # assertion here
106
- # should be_a()
107
- # should be_nil
108
- # should ==
109
- # should_not ==
110
- end
111
- end
112
-
113
- describe 'test attribute "ml"' do
114
- it 'should work' do
115
- # assertion here
116
- # should be_a()
117
- # should be_nil
118
- # should ==
119
- # should_not ==
120
- end
121
- end
122
-
123
- end
124
-
@@ -1,184 +0,0 @@
1
- require 'spec_helper'
2
- require 'json'
3
- require 'date'
4
-
5
- # Unit tests for OSDNClient::
6
- # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
7
- # Please update as you see appropriate
8
- describe 'Group' do
9
- before do
10
- # run before each test
11
- @instance = OSDNClient::Group.new
12
- end
13
-
14
- after do
15
- # run after each test
16
- end
17
-
18
- describe 'test an instance of Group' do
19
- it 'should create an instact of Group' do
20
- @instance.should be_a(OSDNClient::Group)
21
- end
22
- end
23
- describe 'test attribute "id"' do
24
- it 'should work' do
25
- # assertion here
26
- # should be_a()
27
- # should be_nil
28
- # should ==
29
- # should_not ==
30
- end
31
- end
32
-
33
- describe 'test attribute "name"' do
34
- it 'should work' do
35
- # assertion here
36
- # should be_a()
37
- # should be_nil
38
- # should ==
39
- # should_not ==
40
- end
41
- end
42
-
43
- describe 'test attribute "display_name"' do
44
- it 'should work' do
45
- # assertion here
46
- # should be_a()
47
- # should be_nil
48
- # should ==
49
- # should_not ==
50
- end
51
- end
52
-
53
- describe 'test attribute "last_update"' do
54
- it 'should work' do
55
- # assertion here
56
- # should be_a()
57
- # should be_nil
58
- # should ==
59
- # should_not ==
60
- end
61
- end
62
-
63
- describe 'test attribute "description"' do
64
- it 'should work' do
65
- # assertion here
66
- # should be_a()
67
- # should be_nil
68
- # should ==
69
- # should_not ==
70
- end
71
- end
72
-
73
- describe 'test attribute "description_html"' do
74
- it 'should work' do
75
- # assertion here
76
- # should be_a()
77
- # should be_nil
78
- # should ==
79
- # should_not ==
80
- end
81
- end
82
-
83
- describe 'test attribute "start_date"' do
84
- it 'should work' do
85
- # assertion here
86
- # should be_a()
87
- # should be_nil
88
- # should ==
89
- # should_not ==
90
- end
91
- end
92
-
93
- describe 'test attribute "license"' do
94
- it 'should work' do
95
- # assertion here
96
- # should be_a()
97
- # should be_nil
98
- # should ==
99
- # should_not ==
100
- end
101
- end
102
-
103
- describe 'test attribute "license_other"' do
104
- it 'should work' do
105
- # assertion here
106
- # should be_a()
107
- # should be_nil
108
- # should ==
109
- # should_not ==
110
- end
111
- end
112
-
113
- describe 'test attribute "url"' do
114
- it 'should work' do
115
- # assertion here
116
- # should be_a()
117
- # should be_nil
118
- # should ==
119
- # should_not ==
120
- end
121
- end
122
-
123
- describe 'test attribute "homepage"' do
124
- it 'should work' do
125
- # assertion here
126
- # should be_a()
127
- # should be_nil
128
- # should ==
129
- # should_not ==
130
- end
131
- end
132
-
133
- describe 'test attribute "logo_image"' do
134
- it 'should work' do
135
- # assertion here
136
- # should be_a()
137
- # should be_nil
138
- # should ==
139
- # should_not ==
140
- end
141
- end
142
-
143
- describe 'test attribute "banner_image"' do
144
- it 'should work' do
145
- # assertion here
146
- # should be_a()
147
- # should be_nil
148
- # should ==
149
- # should_not ==
150
- end
151
- end
152
-
153
- describe 'test attribute "thumbnail_image"' do
154
- it 'should work' do
155
- # assertion here
156
- # should be_a()
157
- # should be_nil
158
- # should ==
159
- # should_not ==
160
- end
161
- end
162
-
163
- describe 'test attribute "tools"' do
164
- it 'should work' do
165
- # assertion here
166
- # should be_a()
167
- # should be_nil
168
- # should ==
169
- # should_not ==
170
- end
171
- end
172
-
173
- describe 'test attribute "members"' do
174
- it 'should work' do
175
- # assertion here
176
- # should be_a()
177
- # should be_nil
178
- # should ==
179
- # should_not ==
180
- end
181
- end
182
-
183
- end
184
-
@@ -1,94 +0,0 @@
1
- require 'spec_helper'
2
- require 'json'
3
- require 'date'
4
-
5
- # Unit tests for OSDNClient::
6
- # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
7
- # Please update as you see appropriate
8
- describe 'News' do
9
- before do
10
- # run before each test
11
- @instance = OSDNClient::News.new
12
- end
13
-
14
- after do
15
- # run after each test
16
- end
17
-
18
- describe 'test an instance of News' do
19
- it 'should create an instact of News' do
20
- @instance.should be_a(OSDNClient::News)
21
- end
22
- end
23
- describe 'test attribute "id"' do
24
- it 'should work' do
25
- # assertion here
26
- # should be_a()
27
- # should be_nil
28
- # should ==
29
- # should_not ==
30
- end
31
- end
32
-
33
- describe 'test attribute "url"' do
34
- it 'should work' do
35
- # assertion here
36
- # should be_a()
37
- # should be_nil
38
- # should ==
39
- # should_not ==
40
- end
41
- end
42
-
43
- describe 'test attribute "title"' do
44
- it 'should work' do
45
- # assertion here
46
- # should be_a()
47
- # should be_nil
48
- # should ==
49
- # should_not ==
50
- end
51
- end
52
-
53
- describe 'test attribute "body"' do
54
- it 'should work' do
55
- # assertion here
56
- # should be_a()
57
- # should be_nil
58
- # should ==
59
- # should_not ==
60
- end
61
- end
62
-
63
- describe 'test attribute "body_html"' do
64
- it 'should work' do
65
- # assertion here
66
- # should be_a()
67
- # should be_nil
68
- # should ==
69
- # should_not ==
70
- end
71
- end
72
-
73
- describe 'test attribute "last_update"' do
74
- it 'should work' do
75
- # assertion here
76
- # should be_a()
77
- # should be_nil
78
- # should ==
79
- # should_not ==
80
- end
81
- end
82
-
83
- describe 'test attribute "submitter"' do
84
- it 'should work' do
85
- # assertion here
86
- # should be_a()
87
- # should be_nil
88
- # should ==
89
- # should_not ==
90
- end
91
- end
92
-
93
- end
94
-