jenkins_api_client 1.4.5 → 1.5.2

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.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/jenkins_api_client.gemspec +15 -136
  3. data/lib/jenkins_api_client/version.rb +2 -2
  4. metadata +6 -180
  5. data/.gitignore +0 -41
  6. data/.jenkins.yml +0 -9
  7. data/.travis.yml +0 -15
  8. data/CHANGELOG.md +0 -391
  9. data/CONTRIBUTORS.md +0 -3
  10. data/Gemfile +0 -20
  11. data/LICENCE +0 -21
  12. data/README.md +0 -454
  13. data/Rakefile +0 -107
  14. data/Vagrantfile +0 -83
  15. data/config/login.yml.example +0 -27
  16. data/jenkins_api_client_class_diagram.png +0 -0
  17. data/scripts/login_with_irb.rb +0 -54
  18. data/scripts/login_with_pry.rb +0 -54
  19. data/spec/func_tests/client_spec.rb +0 -109
  20. data/spec/func_tests/job_spec.rb +0 -669
  21. data/spec/func_tests/node_spec.rb.pending +0 -217
  22. data/spec/func_tests/plugin_spec.rb +0 -148
  23. data/spec/func_tests/spec_helper.rb +0 -41
  24. data/spec/func_tests/system_spec.rb +0 -84
  25. data/spec/func_tests/user_spec.rb +0 -49
  26. data/spec/func_tests/view_spec.rb +0 -276
  27. data/spec/unit_tests/build_queue_spec.rb +0 -152
  28. data/spec/unit_tests/client_spec.rb +0 -471
  29. data/spec/unit_tests/fake_http_response.rb +0 -9
  30. data/spec/unit_tests/fixtures/files/available_plugins.json +0 -1
  31. data/spec/unit_tests/fixtures/files/computer_sample.xml +0 -17
  32. data/spec/unit_tests/fixtures/files/installed_plugins.json +0 -1
  33. data/spec/unit_tests/fixtures/files/job_sample.xml +0 -16
  34. data/spec/unit_tests/fixtures/files/updatable_plugins.json +0 -1
  35. data/spec/unit_tests/job_spec.rb +0 -783
  36. data/spec/unit_tests/node_spec.rb +0 -342
  37. data/spec/unit_tests/plugin_settings/colllection_spec.rb +0 -62
  38. data/spec/unit_tests/plugin_settings/hipchat_spec.rb +0 -44
  39. data/spec/unit_tests/plugin_settings/workspace_cleanup_spec.rb +0 -31
  40. data/spec/unit_tests/plugin_spec.rb +0 -165
  41. data/spec/unit_tests/spec_helper.rb +0 -19
  42. data/spec/unit_tests/system_spec.rb +0 -76
  43. data/spec/unit_tests/user_spec.rb +0 -144
  44. data/spec/unit_tests/view_spec.rb +0 -149
  45. data/travis/hudson.model.UpdateCenter.xml +0 -7
  46. data/travis/jenkins_config.xml +0 -63
  47. data/travis/jenkins_config_with_crumb.xml +0 -67
  48. data/travis/setup.sh +0 -23
  49. data/travis/setup_crumb.sh +0 -11
  50. data/travis/spec.yml +0 -14
  51. data/travis/user_config.xml +0 -29
data/.jenkins.yml DELETED
@@ -1,9 +0,0 @@
1
- name: jenkins_api_client_func_tests
2
- git: git://github.com/arangamani/jenkins_api_client.git
3
- ref: master
4
- script:
5
- - bundle install
6
- - rake unit_tests
7
- - rake func_tests
8
- notification_email: kannan@rightscale.com
9
- notification_email_for_every_unstable: true
data/.travis.yml DELETED
@@ -1,15 +0,0 @@
1
- language: ruby
2
-
3
- rvm:
4
- - 2.1.5
5
- - 1.9.3
6
-
7
- script:
8
- - bundle exec rake unit_tests
9
-
10
- notifications:
11
- webhooks: https://www.buildheroes.com/api/projects/588c9dffdc8f0deff4d89d87bf370e8dba8a8a95/builds
12
- irc:
13
- channels: ["chat.freenode.net##jenkins-api-client"]
14
- use_notice: true
15
- skip_join: true
data/CHANGELOG.md DELETED
@@ -1,391 +0,0 @@
1
- CHANGELOG
2
- =========
3
-
4
- upcoming
5
- --------
6
-
7
- v1.4.5 [05-OCT-2016]
8
- ----------------------
9
- * Remove unnecessary rack gem as a runtime dependency.
10
-
11
- v1.4.4 [09-SEP-2016]
12
- ----------------------
13
- * [#213][] Add support for getting a user's API token.
14
-
15
- v1.4.3 [07-JUN-2016]
16
- ----------------------
17
- * [#207][] Add support for SOCKS proxies. Credit: [@dylanmckay][]
18
-
19
- v1.4.2 [25-OCT-2015]
20
- ----------------------
21
- * [#188][] Added ability view jobs in a view with details. Credit: [@Tyrael][]
22
-
23
- v1.4.1 [21-SEP-2015]
24
- ----------------------
25
- * [#191][] Add dynamic depth support for node attributes. Credit: [@stjohnjohnson][]
26
-
27
- v1.4.0 [08-JUN-2015]
28
- ----------------------
29
- * [#161][] Fix job#build method when true/false values are passed as timeout parameter. Credit: [@jlucasps][]
30
- * [#172][] Promotion plugin config support. Credit: [@AndrewHanes][]
31
- * [#168][] Added ability to pass "tree" parameter to the Job#get_builds call. Credit: [@bkon][]
32
- * [#169][] Add optional parameters to cli job build. Credit: [@cyrez][]
33
- * [#167][] Add ability to override the default logger. Credit: [@gpetras][]
34
- * [#174][] Use the specified client ssl when downloading artifacts. Credit: [@paulgeringer][]
35
- * [#165][] Fix for is_offline? bug reporting all nodes as being offline. Credit: [@bsnape][]
36
- * [#176][] Add ability to delete a promotion configuration. Credit: [@l8nite][]
37
- * [#59][] Add capability to take the node offline and online. Credit: [@stjohnjohnson][]
38
- * [#177][] Add ability to create promotion processes. Credit: [@AndrewHanes][]
39
- * [#179][] Clean up Node calls to make only one call for the computer item. Credit: [@stjohnjohnson][]
40
-
41
- v1.3.0 [03-JAN-2015]
42
- ----------------------
43
- * [#159][] Add ability to configure git tool for a job. Credit: [@hubert][]
44
- * [#163][] Improve performance by using the `tree` parameter. Credit: [@stjohnjohnson][]
45
-
46
- v1.2.0 [12-NOV-2014]
47
- ----------------------
48
- * [#156][] Added workspace cleanup plugin. Credit [@hubert][]
49
- * [#157][] Added ability to configure SCM trigger via job creation. Credit: [@hubert][]
50
- * [#158][] Add ability to configure post build artifact archiver step. Credit: [@hubert][]
51
-
52
- v1.1.0 [05-NOV-2014]
53
- ----------------------
54
- * [#145][] Fix `BuildQueue#get_details` to compare against task_name. Credit: [@notruthless][]
55
- * [#149][] Lower log level of GET/POST messages emitted by Client to DEBUG. Credit: [@scotje][]
56
- * [#151][] Add ability to configure credentialId for git. Credit: [@hubert][]
57
- * [#153][] Feature/extract plugins. Credit: [@hubert][]
58
- * [#147][] Added ability to get current build artifact. Credit: [@joelneubert][]
59
- * [#148][] Make `Client::Job#build` only request current build number if `build_start_timeout` option is passed.
60
- Credit: [@scotje][]
61
-
62
- v1.0.1 [16-JUL-2014]
63
- ----------------------
64
- * Add `charset=UTF-8` along with content_type when posting data to Jenkins.
65
-
66
- v1.0.0 [23-JUN-2014]
67
- ----------------------
68
- * Ruby 1.8 is not supported anymore.
69
- * Added support for `PluginManager` which supports listing installed plugins,
70
- available plugins, installing and uninstalling plugins, enabling and disabling
71
- plugins, and more.
72
- * Enhance URL escape.
73
- * [#106][] Added support for obtaining build numbers after the build is posted for Jenkins
74
- version pre 1.519, added callbacks while waiting and more. Credit: [@dougforpres][]
75
- * [#112][] Added supported for obtaining information about promoted builds. Credit: [@dkerwin][]
76
- * [#118][] Added support for specifying username/password in the URL. Credit: [@spikegrobstein][]
77
- * [#119][] Added ability to execute groovy script on the Jenkins server. Credit: [@lheinlen-os][]
78
- * [#122][] Updated the `create_dumb_slave` method to accept the new credentials id that is
79
- introduced in the newer version of jenkins. Credit: [@Loa][]
80
- * [#126][] Enabled the use of cookies for authentication. Credit: [@chilicheech][]
81
- * [#127][] Do not set content type in api_post_request. Credit: [@chilicheech][]
82
- * [#128][] Updated `exec_script` to use `api_post_reqeust` to support features provided by
83
- `api_post_request` such as using crumbs. Credit: [@chilicheech][]
84
- * [#132][] Allow copying and enabling jobs with spaces in them. Credit: [@mattrose][]
85
- * [#134][] Added support for specifying HTTP open timeout. Credit: [@n-rodriguez][]
86
- * [#136][] Prevent warnings due to Hash#[] call with nil items on Ruby 2.x. Credit: [@sunaot][]
87
- * [#140][] Add require yaml in cli helper. Credit: [@riywo][]
88
- * [#141][] Rename `create_dump_slave` -> `create_dumb_slave`. Thanks for finding the
89
- typo/incorrect name [@cynipe][]
90
-
91
-
92
- v0.14.1 [18-AUG-2013]
93
- ----------------------
94
- * Fixed a bug in Job#create_or_update method. Credit: [@bobbrez][]
95
-
96
- v0.14.0 [07-AUG-2013]
97
- ----------------------
98
- * Fixed a bug where a space was missing in the exec_cli method argument list.
99
- Credit: [@missedone][]
100
- * Refactored create/update jobs by introducing create_or_update methods.
101
- Credit: [@riywo][]
102
- * Enhancement to crumb processing - auto detect the change of crumb setting and
103
- do proper exception handling. Credit: dougforpress
104
- * Added a `User` class which will handle jenkins users related functions.
105
- Credit: dougforpres
106
- * Added a method `Job#poll` which will poll for SCM changes programatically.
107
- * Added a shortcut method `System#restart!` for force restart.
108
-
109
- v0.13.0 [09-JUL-2013]
110
- ----------------------
111
- * Jenkins XSS disable option is now supported. No inputs are required - the
112
- jenkins_api_client will automatically detech whether to use the crumbs or not
113
- when making the POST requests.
114
- * Support for logging is added. Logs can be redirected to a log file and the
115
- log level can be customized. This implementation uses the `Logger` class so
116
- it follows the nice format in logging messages.
117
- * The job `build` method will now optionally return the build number. This
118
- option should be used with care as the build method will wait till the
119
- jenkins job is placed on an executor from the build queue. By default the
120
- build number will NOT be returned. nil will be returned if the build number
121
- is not available. Also a Timeout error will be raised if the job waits in the
122
- queue for longer than the 'timeout' parameter. This timeout parameter can be
123
- set during the client initialization.
124
- * Improved documentation
125
- * Support for enabling/disabling jobs. Credit: [@dieterdemeyer][]
126
- * Added functionality for copying jobs. Credit: [@dieterdemeyer][]
127
- * Added functionality for wiping out the workspace of a job.
128
- Credit: [@dieterdemeyer][]
129
- * Added functionality for listing jenkins users. Credit: [@dieterdemeyer][]
130
- * Fixed a bug where the exceptions where not thrown when using the
131
- `get_console_output` method.
132
- * Fixed a bug where the jenkins_path attribute was ignored when the server_url
133
- input argument is given. Credit: [@woodbusy][]
134
- * support public/private key pair authentication for Jenkins CLI.
135
- Credit: [@missedone][]
136
-
137
-
138
- v0.12.1 [25-JUN-2013]
139
- ----------------------
140
- * Fixed a bug where the SSL support was not working properly with Ruby
141
- 1.8.7/JRuby 1.6. (Pull [#85][]) Credit: [@brettporter][]
142
-
143
- v0.12.0 [18-JUN-2013]
144
- ----------------------
145
- * Authentication is now optional as not all Jenkins instances have
146
- authentication enabled by default. Credit: [@dougforpres][]
147
- * Ability to retrieve build details so that more than just (`lamp color`) is
148
- available. Credit: [@dougforpres][]
149
- * Ability to retrieve build test-results for those builds that have them.
150
- Credit: [@dougforpres][]
151
- * Option to follow any 301/302 responses. This allows POST to build to follow
152
- the redirect and end up with a 200 response. Credit: [@dougforpres][]
153
- * Minor change to the POST requests handling where jenkins instances with a
154
- proxy returns 411 if no form data is specified. Fixed by sending an empty
155
- hash. Credit: [@dougforpres][]
156
- * As of Jenkins release 1.519, the job build returns a 201 code instead of 302.
157
- This was resulting in an exception and the exception handling is modified to
158
- handle this condition.
159
- * The jobs that are not built yet have a new color (`notbuilt`) in the recent
160
- version of jenkins (> 1.517) which resulted in `invalid` status. This is fixed.
161
-
162
- v0.11.0 [09-JUN-2013]
163
- ----------------------
164
- * A new input argument `server_url` is supported which accepts the jenkins URL
165
- instead of IP address and Port. Credit: [@dieterdemeyer][]
166
- * When renaming the job, preserve the job history. Credit: [@rubytester][]
167
- * Various exception handling improvements. Credit: [@drnic][]
168
-
169
- v0.10.0 [24-APR-2013]
170
- ----------------------
171
- * new function to execute jenkins CLI `cli_exec`. Credit: [@missedone][]
172
- * Add ability to use http proxy. Credit: [@woodbusy][]
173
- * prompt the user for credentials when using irb login script. [@woodbusy][]
174
- * bugfix for job.console_output. Credit: [@drnic][]
175
- * add ssl support. Credit: [@madisp][]
176
-
177
- v0.9.1 [01-APR-2013]
178
- ---------------------
179
- * Removed the dependency of ActiveSupport and Builder as they were not being
180
- used.
181
-
182
- v0.9.0 [10-MAR-2013]
183
- ---------------------
184
- * Added capability to send email notification to existing jobs
185
- * Removed warnings from client.rb
186
- * Refactored and improved exception handling
187
- * A bug is fixed in client which allows only the valid params as options.
188
- Credit: [@Niarfe][]
189
- * Added a timeout parameter for waiting for jenkins to become ready.
190
- Credit: [@Niarfe][]
191
- * Added function to reload jenkins. Credit: [@missedone][]
192
- * Fixed a bug where jenkins_path was missing in get_config and post_config.
193
- Credit: [@cylol][]
194
- * Added capability to obtain jenkins version and other useful information
195
- * Added new tests for various cases, and other code improvements
196
-
197
- v0.8.1 [15-FEB-2013]
198
- ---------------------
199
- * Fixed a bug in creating view. Issue [#42][]
200
-
201
- v0.8.0 [14-FEB-2013]
202
- ---------------------
203
- * Added capability to send timer trigger while creating a job
204
- * Added rename feature for jobs
205
- * Added support for sending skype notification in job creation and on existing
206
- jobs
207
- * Added support for sending Jenkins root URL configuration. Credit: [@kevinhcross][]
208
- * Added `delete_all!` methods for Job, View, and Node.
209
- * `get_eta` in BuildQueue will return "N/A" if the ETA is not given by Jenkins
210
- * Creating view accepts params Hash and more configuration through the API
211
- * Spaces are allowed in Job, Node, and View names. Credit: [@kevinhcross][]
212
- * Support has been added to build a job with parameters. Credit: [@tjhanley][]
213
-
214
- v0.7.3 [05-FEB-2013]
215
- ---------------------
216
- * Fixed [#27][] with a bug in create_view including extra character in the end of
217
- the name
218
-
219
- v0.7.2 [02-FEB-2013]
220
- ---------------------
221
- * Fixed a minor bug in `get_console_output` of Job.
222
-
223
- v0.7.1 [30-JAN-2013]
224
- ---------------------
225
- * Fixed a bug (Issue [#23][]) to remove the usage of "\" in Job.
226
-
227
- v0.7.0 [27-JAN-2013]
228
- ---------------------
229
- * Fixed a bug where the ignorecase was never used in view list
230
- * Raise an error if the view doesnt exists while listing jobs
231
- * Added capability to change the mode of a node
232
- * Added support for giving node to restrict the job during creation
233
- * Added support for notification_email option when setting up a job
234
- * Added support for CVS provider in SCM
235
- * Added `create_dump_slave` and `delete` methods in Node API
236
- * Added BuildQueue class which is accessible by `[@client][].queue` method
237
- * Improvements in all over the code for performance and error handling
238
-
239
- v0.6.2 [13-JAN-2013]
240
- ---------------------
241
- * Fixed a bug where running job previously aborted was not recognized by the
242
- color
243
-
244
- v0.6.1 [13-JAN-2013]
245
- ---------------------
246
- * Fixed a bug where the last few lines of console output was missed in the CLI
247
- when using the `jenkinscli job console` command.
248
-
249
- v0.6.0 [12-JAN-2013]
250
- ---------------------
251
- * Added functionality to get progressive console output from Jenkins.
252
- * Added CLI command `console` for printing progressive console output on
253
- terminal.
254
- * Fixed a bug with `get_current_build_number` not returning the recent running
255
- build number.
256
-
257
- v0.5.0 [22-DEC-2012]
258
- ---------------------
259
- * Added functionality to create jobs with params.
260
- * Added View class and added methods accessing List Views of Jenkins server.
261
- * Added functionality to abort a running job.
262
- * Deprecated `list_running` of Job class. `list_by_status('running')` is
263
- suggested.
264
-
265
- v0.4.0 [07-DEC-2012]
266
- ---------------------
267
- * Added some methods for handling jobs.
268
- * The status `not run` is not returned as `not_run` from job status.
269
-
270
- v0.3.2 [17-NOV-2012]
271
- ---------------------
272
- * Added some new methods for Job class
273
-
274
- v0.3.1 [11-NOV-2012]
275
- ---------------------
276
- * Removed unnecessary debug statements
277
-
278
- v0.3.0 [11-NOV-2012]
279
- ---------------------
280
- * Added System class to support quietdown and restart functionality.
281
- * Added Node class to query the node interface of Jenkins server.
282
- * Added Command line interface for System and Node class.
283
- * Introduced terminal tables for displaying attributes in command line.
284
-
285
- v0.2.1 [02-NOV-2012]
286
- ---------------------
287
- * Added command line interface for basic operations
288
-
289
- v0.1.1 [30-OCT-2012]
290
- ---------------------
291
- * Updated gem dependencies to work with Ruby 1.8.7
292
-
293
- v0.1.0 [26-OCT-2012]
294
- ---------------------
295
- * Improved performance
296
- * Added job create feature, delete feature, chaining feature, and build feature
297
- * Added exception handling mechanism
298
-
299
- v0.0.2 [16-OCT-2012]
300
- ---------------------
301
- * Added documentation
302
- * Added some more small features to Job class
303
-
304
- v0.0.1 [15-OCT-2012]
305
- ---------------------
306
- * Initial Release
307
-
308
-
309
- <!--- The following link definition list is generated by PimpMyChangelog --->
310
- [#23]: https://github.com/arangamani/jenkins_api_client/issues/23
311
- [#27]: https://github.com/arangamani/jenkins_api_client/issues/27
312
- [#42]: https://github.com/arangamani/jenkins_api_client/issues/42
313
- [#59]: https://github.com/arangamani/jenkins_api_client/issues/59
314
- [#85]: https://github.com/arangamani/jenkins_api_client/issues/85
315
- [#106]: https://github.com/arangamani/jenkins_api_client/issues/106
316
- [#112]: https://github.com/arangamani/jenkins_api_client/issues/112
317
- [#118]: https://github.com/arangamani/jenkins_api_client/issues/118
318
- [#119]: https://github.com/arangamani/jenkins_api_client/issues/119
319
- [#122]: https://github.com/arangamani/jenkins_api_client/issues/122
320
- [#126]: https://github.com/arangamani/jenkins_api_client/issues/126
321
- [#127]: https://github.com/arangamani/jenkins_api_client/issues/127
322
- [#128]: https://github.com/arangamani/jenkins_api_client/issues/128
323
- [#132]: https://github.com/arangamani/jenkins_api_client/issues/132
324
- [#134]: https://github.com/arangamani/jenkins_api_client/issues/134
325
- [#136]: https://github.com/arangamani/jenkins_api_client/issues/136
326
- [#140]: https://github.com/arangamani/jenkins_api_client/issues/140
327
- [#141]: https://github.com/arangamani/jenkins_api_client/issues/141
328
- [#145]: https://github.com/arangamani/jenkins_api_client/issues/145
329
- [#147]: https://github.com/arangamani/jenkins_api_client/issues/147
330
- [#148]: https://github.com/arangamani/jenkins_api_client/issues/148
331
- [#149]: https://github.com/arangamani/jenkins_api_client/issues/149
332
- [#151]: https://github.com/arangamani/jenkins_api_client/issues/151
333
- [#153]: https://github.com/arangamani/jenkins_api_client/issues/153
334
- [#156]: https://github.com/arangamani/jenkins_api_client/issues/156
335
- [#157]: https://github.com/arangamani/jenkins_api_client/issues/157
336
- [#158]: https://github.com/arangamani/jenkins_api_client/issues/158
337
- [#159]: https://github.com/arangamani/jenkins_api_client/issues/159
338
- [#161]: https://github.com/arangamani/jenkins_api_client/issues/161
339
- [#163]: https://github.com/arangamani/jenkins_api_client/issues/163
340
- [#165]: https://github.com/arangamani/jenkins_api_client/issues/165
341
- [#167]: https://github.com/arangamani/jenkins_api_client/issues/167
342
- [#168]: https://github.com/arangamani/jenkins_api_client/issues/168
343
- [#169]: https://github.com/arangamani/jenkins_api_client/issues/169
344
- [#172]: https://github.com/arangamani/jenkins_api_client/issues/172
345
- [#174]: https://github.com/arangamani/jenkins_api_client/issues/174
346
- [#176]: https://github.com/arangamani/jenkins_api_client/issues/176
347
- [#177]: https://github.com/arangamani/jenkins_api_client/issues/177
348
- [#179]: https://github.com/arangamani/jenkins_api_client/issues/179
349
- [#188]: https://github.com/arangamani/jenkins_api_client/issues/188
350
- [#191]: https://github.com/arangamani/jenkins_api_client/issues/191
351
- [#207]: https://github.com/arangamani/jenkins_api_client/issues/207
352
- [#213]: https://github.com/arangamani/jenkins_api_client/issues/213
353
- [@AndrewHanes]: https://github.com/AndrewHanes
354
- [@Loa]: https://github.com/Loa
355
- [@Niarfe]: https://github.com/Niarfe
356
- [@Tyrael]: https://github.com/Tyrael
357
- [@bkon]: https://github.com/bkon
358
- [@bobbrez]: https://github.com/bobbrez
359
- [@brettporter]: https://github.com/brettporter
360
- [@bsnape]: https://github.com/bsnape
361
- [@chilicheech]: https://github.com/chilicheech
362
- [@client]: https://github.com/client
363
- [@cylol]: https://github.com/cylol
364
- [@cynipe]: https://github.com/cynipe
365
- [@cyrez]: https://github.com/cyrez
366
- [@dieterdemeyer]: https://github.com/dieterdemeyer
367
- [@dkerwin]: https://github.com/dkerwin
368
- [@dougforpres]: https://github.com/dougforpres
369
- [@drnic]: https://github.com/drnic
370
- [@dylanmckay]: https://github.com/dylanmckay
371
- [@gpetras]: https://github.com/gpetras
372
- [@hubert]: https://github.com/hubert
373
- [@jlucasps]: https://github.com/jlucasps
374
- [@joelneubert]: https://github.com/joelneubert
375
- [@kevinhcross]: https://github.com/kevinhcross
376
- [@l8nite]: https://github.com/l8nite
377
- [@lheinlen-os]: https://github.com/lheinlen-os
378
- [@madisp]: https://github.com/madisp
379
- [@mattrose]: https://github.com/mattrose
380
- [@missedone]: https://github.com/missedone
381
- [@n-rodriguez]: https://github.com/n-rodriguez
382
- [@notruthless]: https://github.com/notruthless
383
- [@paulgeringer]: https://github.com/paulgeringer
384
- [@riywo]: https://github.com/riywo
385
- [@rubytester]: https://github.com/rubytester
386
- [@scotje]: https://github.com/scotje
387
- [@spikegrobstein]: https://github.com/spikegrobstein
388
- [@stjohnjohnson]: https://github.com/stjohnjohnson
389
- [@sunaot]: https://github.com/sunaot
390
- [@tjhanley]: https://github.com/tjhanley
391
- [@woodbusy]: https://github.com/woodbusy
data/CONTRIBUTORS.md DELETED
@@ -1,3 +0,0 @@
1
- Thank you very much to all who contributed to this project.
2
-
3
- Please visit the [Contributors](https://github.com/arangamani/jenkins_api_client/graphs/contributors) page on Github.
data/Gemfile DELETED
@@ -1,20 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gem "nokogiri", "~> 1.6.0"
4
- gem "thor", ">= 0.16.0"
5
- gem "terminal-table", ">= 1.4.0"
6
- gem "mixlib-shellout", ">= 1.1.0"
7
- gem 'socksify', ">= 1.7.0"
8
- gem 'json', '~> 1.0'
9
-
10
- group :development do
11
- gem "bundler", ">= 1.0"
12
- gem "rspec", "~> 2.14.1"
13
- gem "simplecov"
14
- gem "yard-thor"
15
- gem "yard"
16
- gem "pry"
17
- gem "rake"
18
- gem "jeweler"
19
- gem "rack", "~> 1.0"
20
- end
data/LICENCE DELETED
@@ -1,21 +0,0 @@
1
- The MIT License
2
-
3
- Copyright (c) 2012-2013 Kannan Manickam <arangamani.kannan@gmail.com>
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.