rundeck-ruby-client 0.0.2 → 0.0.3
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 +4 -4
- data/README.md +2 -2
- data/lib/rundeck-ruby-client/version.rb +1 -1
- data/rundeck-ruby-client.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0123952d381e7659f3ab340e20069f1d485c42ea
|
4
|
+
data.tar.gz: b41887e71fa6087fdd17b61afa45dd8505a1902e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14f57106864767fb0ea9898afe4a517ecf9ab2298b7f029a9ed470626114489fd7ec3b64d6f0ff1d496e7f696a8e1d54071500bb17906dce6509343addfee25a
|
7
|
+
data.tar.gz: b4e190097ebe4f13c6702f09c5f346a80a6fa20d22e47c005cd90aceadba26916eba24672ab44f23382876c115bc138fa7d48ad8fe313aa91e7ba4f10b73d868
|
data/README.md
CHANGED
@@ -10,7 +10,7 @@ The usual stuff:
|
|
10
10
|
|
11
11
|
Add this line to your application's Gemfile:
|
12
12
|
|
13
|
-
gem 'rundeck-ruby'
|
13
|
+
gem 'rundeck-ruby-client'
|
14
14
|
|
15
15
|
And then execute:
|
16
16
|
|
@@ -58,7 +58,7 @@ prints out the url of the resulting execution.
|
|
58
58
|
Connections to your rundeck server are handled with the `Session` class.
|
59
59
|
Like so:
|
60
60
|
```
|
61
|
-
require 'rundeck-ruby'
|
61
|
+
require 'rundeck-ruby-client'
|
62
62
|
session = Rundeck::Session('https://my.server', 'my token')
|
63
63
|
```
|
64
64
|
That's it. You have a session.
|
data/rundeck-ruby-client.gemspec
CHANGED
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
21
21
|
spec.executables = `git ls-files -- exe/*`.split("\n").map{ |f| File.basename(f) }
|
22
22
|
spec.add_runtime_dependency "rest-client", "~> 1.6"
|
23
23
|
spec.add_runtime_dependency "json", "~> 1.8"
|
24
|
-
spec.add_runtime_dependency "activesupport", "~>
|
24
|
+
spec.add_runtime_dependency "activesupport", "~> 4.0"
|
25
25
|
spec.add_runtime_dependency "i18n", "~> 0.6"
|
26
26
|
spec.add_runtime_dependency "naught", "~> 1.0"
|
27
27
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rundeck-ruby-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jon Phillips
|
@@ -45,14 +45,14 @@ dependencies:
|
|
45
45
|
requirements:
|
46
46
|
- - ~>
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: '
|
48
|
+
version: '4.0'
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
53
|
- - ~>
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: '
|
55
|
+
version: '4.0'
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: i18n
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|