conjur-asset-deployment-api 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/Gemfile +14 -0
- data/Gemfile.lock +206 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +27 -0
- data/conjur-asset-deployment.gemspec +49 -0
- data/lib/conjur-asset-deployment-version.rb +7 -0
- data/lib/conjur-asset-deployment.rb +6 -0
- data/lib/conjur/api/deployments.rb +17 -0
- data/lib/conjur/command/deployments.rb +49 -0
- data/lib/conjur/deployment-api.rb +19 -0
- data/lib/conjur/deployment.rb +55 -0
- metadata +252 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 262513290adf5f4134acf44d2f57ec6480391c6a
|
4
|
+
data.tar.gz: 53506bbba0c18aacf4715eb6590158205ac89ccf
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: fd6daafe016b13589552a4fe3ff3efe98fcd23bb5b2c273927a67468ed1124f005b214bc2146fdeb7ee1d12c933c7b00432c3ab2b1a19f193a6e0f1c4235b3e3
|
7
|
+
data.tar.gz: 1e602a5045d24c489908c9b37c00d3b4e3bfb7d79ed1baf79efba2849c62a2236dbf998129dcaefecdbaa65eafce87388980b16297a949bb082fc364a9afce65
|
data/.gitignore
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
source "http://rubygems.org"
|
2
|
+
|
3
|
+
# Declare your gem's dependencies in conjur-asset-deployment.gemspec.
|
4
|
+
# Bundler will treat runtime dependencies like base dependencies, and
|
5
|
+
# development dependencies will be added by default to the :development group.
|
6
|
+
gemspec
|
7
|
+
|
8
|
+
gem 'rails-api'
|
9
|
+
gem 'webmock'
|
10
|
+
gem 'rspec-rails'
|
11
|
+
gem 'selenium-webdriver'
|
12
|
+
|
13
|
+
gem 'authable', git: 'https://inscitiv-ops-dev:Me5aswes@github.com/inscitiv/authable.git', branch: 'master'
|
14
|
+
gem 'conjur-api', git: 'https://github.com/inscitiv/api-ruby.git', branch: 'master'
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,206 @@
|
|
1
|
+
GIT
|
2
|
+
remote: https://github.com/inscitiv/api-ruby.git
|
3
|
+
revision: 90dcd6174deb3369e9c4680f9fc4721a6e19394a
|
4
|
+
branch: master
|
5
|
+
specs:
|
6
|
+
conjur-api (2.4.0)
|
7
|
+
activesupport
|
8
|
+
rest-client
|
9
|
+
|
10
|
+
GIT
|
11
|
+
remote: https://inscitiv-ops-dev:Me5aswes@github.com/inscitiv/authable.git
|
12
|
+
revision: 3f3680aa5f966e2d7f7bafcb1d25012174cc73a5
|
13
|
+
branch: master
|
14
|
+
specs:
|
15
|
+
authable (0.2.0)
|
16
|
+
activesupport
|
17
|
+
conjur-api
|
18
|
+
slosilo
|
19
|
+
|
20
|
+
PATH
|
21
|
+
remote: .
|
22
|
+
specs:
|
23
|
+
conjur-asset-deployment-api (0.2.1)
|
24
|
+
conjur-api
|
25
|
+
|
26
|
+
GEM
|
27
|
+
remote: http://rubygems.org/
|
28
|
+
specs:
|
29
|
+
actionmailer (3.2.13)
|
30
|
+
actionpack (= 3.2.13)
|
31
|
+
mail (~> 2.5.3)
|
32
|
+
actionpack (3.2.13)
|
33
|
+
activemodel (= 3.2.13)
|
34
|
+
activesupport (= 3.2.13)
|
35
|
+
builder (~> 3.0.0)
|
36
|
+
erubis (~> 2.7.0)
|
37
|
+
journey (~> 1.0.4)
|
38
|
+
rack (~> 1.4.5)
|
39
|
+
rack-cache (~> 1.2)
|
40
|
+
rack-test (~> 0.6.1)
|
41
|
+
sprockets (~> 2.2.1)
|
42
|
+
activemodel (3.2.13)
|
43
|
+
activesupport (= 3.2.13)
|
44
|
+
builder (~> 3.0.0)
|
45
|
+
activerecord (3.2.13)
|
46
|
+
activemodel (= 3.2.13)
|
47
|
+
activesupport (= 3.2.13)
|
48
|
+
arel (~> 3.0.2)
|
49
|
+
tzinfo (~> 0.3.29)
|
50
|
+
activeresource (3.2.13)
|
51
|
+
activemodel (= 3.2.13)
|
52
|
+
activesupport (= 3.2.13)
|
53
|
+
activesupport (3.2.13)
|
54
|
+
i18n (= 0.6.1)
|
55
|
+
multi_json (~> 1.0)
|
56
|
+
addressable (2.3.5)
|
57
|
+
arel (3.0.2)
|
58
|
+
builder (3.0.4)
|
59
|
+
capybara (2.1.0)
|
60
|
+
mime-types (>= 1.16)
|
61
|
+
nokogiri (>= 1.3.3)
|
62
|
+
rack (>= 1.0.0)
|
63
|
+
rack-test (>= 0.5.4)
|
64
|
+
xpath (~> 2.0)
|
65
|
+
childprocess (0.3.9)
|
66
|
+
ffi (~> 1.0, >= 1.0.11)
|
67
|
+
ci_reporter (1.8.4)
|
68
|
+
builder (>= 2.1.2)
|
69
|
+
crack (0.4.0)
|
70
|
+
safe_yaml (~> 0.9.0)
|
71
|
+
cucumber (1.3.2)
|
72
|
+
builder (>= 2.1.2)
|
73
|
+
diff-lcs (>= 1.1.3)
|
74
|
+
gherkin (~> 2.12.0)
|
75
|
+
multi_json (~> 1.3)
|
76
|
+
cucumber-rails (1.3.1)
|
77
|
+
capybara (>= 1.1.2)
|
78
|
+
cucumber (>= 1.2.0)
|
79
|
+
nokogiri (>= 1.5.0)
|
80
|
+
rails (~> 3.0)
|
81
|
+
diff-lcs (1.2.4)
|
82
|
+
erubis (2.7.0)
|
83
|
+
ffi (1.9.0)
|
84
|
+
gherkin (2.12.0)
|
85
|
+
multi_json (~> 1.3)
|
86
|
+
hike (1.2.3)
|
87
|
+
i18n (0.6.1)
|
88
|
+
journey (1.0.4)
|
89
|
+
json (1.8.0)
|
90
|
+
json_spec (1.1.1)
|
91
|
+
multi_json (~> 1.0)
|
92
|
+
rspec (~> 2.0)
|
93
|
+
mail (2.5.4)
|
94
|
+
mime-types (~> 1.16)
|
95
|
+
treetop (~> 1.4.8)
|
96
|
+
mime-types (1.23)
|
97
|
+
mini_portile (0.5.0)
|
98
|
+
multi_json (1.7.7)
|
99
|
+
nokogiri (1.6.0)
|
100
|
+
mini_portile (~> 0.5.0)
|
101
|
+
pg (0.15.1)
|
102
|
+
pg_random_id (1.0.0)
|
103
|
+
polyglot (0.3.3)
|
104
|
+
rack (1.4.5)
|
105
|
+
rack-cache (1.2)
|
106
|
+
rack (>= 0.4)
|
107
|
+
rack-ssl (1.3.3)
|
108
|
+
rack
|
109
|
+
rack-test (0.6.2)
|
110
|
+
rack (>= 1.0)
|
111
|
+
rails (3.2.13)
|
112
|
+
actionmailer (= 3.2.13)
|
113
|
+
actionpack (= 3.2.13)
|
114
|
+
activerecord (= 3.2.13)
|
115
|
+
activeresource (= 3.2.13)
|
116
|
+
activesupport (= 3.2.13)
|
117
|
+
bundler (~> 1.0)
|
118
|
+
railties (= 3.2.13)
|
119
|
+
rails-api (0.1.0)
|
120
|
+
actionpack (>= 3.2.11)
|
121
|
+
railties (>= 3.2.11)
|
122
|
+
tzinfo (~> 0.3.31)
|
123
|
+
railties (3.2.13)
|
124
|
+
actionpack (= 3.2.13)
|
125
|
+
activesupport (= 3.2.13)
|
126
|
+
rack-ssl (~> 1.3.2)
|
127
|
+
rake (>= 0.8.7)
|
128
|
+
rdoc (~> 3.4)
|
129
|
+
thor (>= 0.14.6, < 2.0)
|
130
|
+
rake (10.1.0)
|
131
|
+
rdoc (3.12.2)
|
132
|
+
json (~> 1.4)
|
133
|
+
rest-client (1.6.7)
|
134
|
+
mime-types (>= 1.16)
|
135
|
+
rspec (2.13.0)
|
136
|
+
rspec-core (~> 2.13.0)
|
137
|
+
rspec-expectations (~> 2.13.0)
|
138
|
+
rspec-mocks (~> 2.13.0)
|
139
|
+
rspec-core (2.13.1)
|
140
|
+
rspec-expectations (2.13.0)
|
141
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
142
|
+
rspec-mocks (2.13.1)
|
143
|
+
rspec-rails (2.13.2)
|
144
|
+
actionpack (>= 3.0)
|
145
|
+
activesupport (>= 3.0)
|
146
|
+
railties (>= 3.0)
|
147
|
+
rspec-core (~> 2.13.0)
|
148
|
+
rspec-expectations (~> 2.13.0)
|
149
|
+
rspec-mocks (~> 2.13.0)
|
150
|
+
rubyzip (0.9.9)
|
151
|
+
safe_yaml (0.9.3)
|
152
|
+
selenium-webdriver (2.33.0)
|
153
|
+
childprocess (>= 0.2.5)
|
154
|
+
multi_json (~> 1.0)
|
155
|
+
rubyzip
|
156
|
+
websocket (~> 1.0.4)
|
157
|
+
sequel (3.48.0)
|
158
|
+
sequel-attribute_callbacks (0.1.0)
|
159
|
+
sequel (~> 3.44)
|
160
|
+
simplecov (0.7.1)
|
161
|
+
multi_json (~> 1.0)
|
162
|
+
simplecov-html (~> 0.7.1)
|
163
|
+
simplecov-html (0.7.1)
|
164
|
+
slosilo (0.2.4)
|
165
|
+
spork (0.9.2)
|
166
|
+
sprockets (2.2.2)
|
167
|
+
hike (~> 1.2)
|
168
|
+
multi_json (~> 1.0)
|
169
|
+
rack (~> 1.0)
|
170
|
+
tilt (~> 1.1, != 1.3.0)
|
171
|
+
talentbox-sequel-rails (0.3.10)
|
172
|
+
railties (~> 3.2.0)
|
173
|
+
sequel (~> 3.28)
|
174
|
+
thor (0.18.1)
|
175
|
+
tilt (1.4.1)
|
176
|
+
treetop (1.4.14)
|
177
|
+
polyglot
|
178
|
+
polyglot (>= 0.3.1)
|
179
|
+
tzinfo (0.3.37)
|
180
|
+
webmock (1.12.3)
|
181
|
+
addressable (>= 2.2.7)
|
182
|
+
crack (>= 0.3.2)
|
183
|
+
websocket (1.0.7)
|
184
|
+
xpath (2.0.0)
|
185
|
+
nokogiri (~> 1.3)
|
186
|
+
|
187
|
+
PLATFORMS
|
188
|
+
ruby
|
189
|
+
|
190
|
+
DEPENDENCIES
|
191
|
+
authable!
|
192
|
+
ci_reporter
|
193
|
+
conjur-api!
|
194
|
+
conjur-asset-deployment-api!
|
195
|
+
cucumber-rails
|
196
|
+
json_spec
|
197
|
+
pg
|
198
|
+
pg_random_id
|
199
|
+
rails-api
|
200
|
+
rspec-rails
|
201
|
+
selenium-webdriver
|
202
|
+
sequel-attribute_callbacks
|
203
|
+
simplecov
|
204
|
+
spork
|
205
|
+
talentbox-sequel-rails
|
206
|
+
webmock
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2013 YOURNAME
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
data/Rakefile
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
begin
|
3
|
+
require 'bundler/setup'
|
4
|
+
rescue LoadError
|
5
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
6
|
+
end
|
7
|
+
begin
|
8
|
+
require 'rdoc/task'
|
9
|
+
rescue LoadError
|
10
|
+
require 'rdoc/rdoc'
|
11
|
+
require 'rake/rdoctask'
|
12
|
+
RDoc::Task = Rake::RDocTask
|
13
|
+
end
|
14
|
+
|
15
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
16
|
+
rdoc.rdoc_dir = 'rdoc'
|
17
|
+
rdoc.title = 'ConjurAssetDeployment'
|
18
|
+
rdoc.options << '--line-numbers'
|
19
|
+
rdoc.rdoc_files.include('README.rdoc')
|
20
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
21
|
+
end
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
Bundler::GemHelper.install_tasks
|
27
|
+
|
@@ -0,0 +1,49 @@
|
|
1
|
+
$:.push File.expand_path("../lib", __FILE__)
|
2
|
+
|
3
|
+
# Maintain your gem's version:
|
4
|
+
require "conjur-asset-deployment-version"
|
5
|
+
|
6
|
+
files = if ENV['API_ONLY']
|
7
|
+
exclude_dirs = [ ".project", ".rvmrc", "lib/conjur/asset", "config", "db", "features", "spec", "app" ]
|
8
|
+
`git ls-files`.split("\n").select do |f|
|
9
|
+
exclude_dirs.find{|d| f.index(d) == 0}.nil?
|
10
|
+
end.tap do |files|
|
11
|
+
puts "Packaging #{files.join(" ")}"
|
12
|
+
end
|
13
|
+
else
|
14
|
+
`git ls-files`.split($/)
|
15
|
+
end
|
16
|
+
|
17
|
+
name = if ENV['API_ONLY']
|
18
|
+
"conjur-asset-deployment-api"
|
19
|
+
else
|
20
|
+
"conjur-asset-deployment"
|
21
|
+
end
|
22
|
+
|
23
|
+
# Describe your gem and declare its dependencies:
|
24
|
+
Gem::Specification.new do |s|
|
25
|
+
s.name = name
|
26
|
+
s.version = Conjur::Asset::Deployment::VERSION
|
27
|
+
s.authors = ["Kevin Gilpin"]
|
28
|
+
s.email = ["kgilpin@gmail.com"]
|
29
|
+
s.homepage = "http://conjur.net"
|
30
|
+
s.summary = "Conjur asset plugin for server deployments."
|
31
|
+
|
32
|
+
s.files = files
|
33
|
+
|
34
|
+
s.add_dependency "conjur-api"
|
35
|
+
|
36
|
+
s.add_development_dependency "authable"
|
37
|
+
s.add_development_dependency "rails-api"
|
38
|
+
s.add_development_dependency "talentbox-sequel-rails"
|
39
|
+
s.add_development_dependency "pg"
|
40
|
+
s.add_development_dependency "pg_random_id"
|
41
|
+
s.add_development_dependency "sequel-attribute_callbacks"
|
42
|
+
s.add_development_dependency "rspec-rails"
|
43
|
+
s.add_development_dependency "cucumber-rails"
|
44
|
+
s.add_development_dependency "spork"
|
45
|
+
s.add_development_dependency "simplecov"
|
46
|
+
s.add_development_dependency "webmock"
|
47
|
+
s.add_development_dependency "json_spec"
|
48
|
+
s.add_development_dependency "ci_reporter"
|
49
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'conjur/deployment'
|
2
|
+
|
3
|
+
module Conjur
|
4
|
+
class API
|
5
|
+
def create_deployment(id, options = {})
|
6
|
+
standard_create Conjur::Dep::API.host, :deployment, id, options
|
7
|
+
end
|
8
|
+
|
9
|
+
def deployments(options = {})
|
10
|
+
standard_list Conjur::Dep::API.host, :deployment, options
|
11
|
+
end
|
12
|
+
|
13
|
+
def deployment id
|
14
|
+
standard_show Conjur::Dep::API.host, :deployment, id
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require 'conjur/command'
|
2
|
+
|
3
|
+
class Conjur::Command::Deployments < Conjur::Command
|
4
|
+
self.prefix = :deployment
|
5
|
+
|
6
|
+
desc "Add a host to an deployment"
|
7
|
+
arg_name "deployment host"
|
8
|
+
command :"hosts:add" do |c|
|
9
|
+
c.action do |global_options, options, args|
|
10
|
+
id = require_arg(args, 'deployment')
|
11
|
+
hostid = require_arg(args, 'host')
|
12
|
+
|
13
|
+
api.deployment(id).add_host hostid
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
desc "Remove a host from an deployment"
|
18
|
+
arg_name "deployment host"
|
19
|
+
command :"hosts:remove" do |c|
|
20
|
+
c.action do |global_options, options, args|
|
21
|
+
id = require_arg(args, 'deployment')
|
22
|
+
hostid = require_arg(args, 'host')
|
23
|
+
|
24
|
+
api.deployment(id).remove_host hostid
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
desc "Add a child deployment to a deployment"
|
29
|
+
arg_name "deployment child"
|
30
|
+
command :"children:add" do |c|
|
31
|
+
c.action do |global_options, options, args|
|
32
|
+
id = require_arg(args, 'deployment')
|
33
|
+
childid = require_arg(args, 'child')
|
34
|
+
|
35
|
+
api.deployment(id).add_child childid
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
desc "Remove a child deployment from a deployment"
|
40
|
+
arg_name "deployment child"
|
41
|
+
command :"children:remove" do |c|
|
42
|
+
c.action do |global_options, options, args|
|
43
|
+
id = require_arg(args, 'deployment')
|
44
|
+
childid = require_arg(args, 'child')
|
45
|
+
|
46
|
+
api.deployment(id).remove_child childid
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module Conjur
|
2
|
+
module Dep
|
3
|
+
class API < Conjur::API
|
4
|
+
class << self
|
5
|
+
def host
|
6
|
+
ENV['CONJUR_DEPLOYMENT_URL'] || Conjur::Core::API.host
|
7
|
+
end
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
module Conjur
|
14
|
+
class API
|
15
|
+
include StandardMethods
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
require 'conjur/api/deployments'
|
@@ -0,0 +1,55 @@
|
|
1
|
+
module Conjur
|
2
|
+
class Deployment < RestClient::Resource
|
3
|
+
include ActsAsAsset
|
4
|
+
|
5
|
+
def add_host(hostid)
|
6
|
+
log do |logger|
|
7
|
+
logger << "Adding host #{hostid} to deployment #{id}"
|
8
|
+
end
|
9
|
+
invalidate do
|
10
|
+
RestClient::Resource.new(self['hosts'].url, options).post(hostid: hostid)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
def remove_host(hostid)
|
15
|
+
log do |logger|
|
16
|
+
logger << "Removing host #{name} from deployment #{id}"
|
17
|
+
end
|
18
|
+
invalidate do
|
19
|
+
RestClient::Resource.new(self["hosts/#{path_escape hostid}"].url, options).delete
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def add_child(childid)
|
24
|
+
log do |logger|
|
25
|
+
logger << "Adding child #{childid} to deployment #{id}"
|
26
|
+
end
|
27
|
+
invalidate do
|
28
|
+
RestClient::Resource.new(self['children'].url, options).post(id: childid)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def remove_child(childid)
|
33
|
+
log do |logger|
|
34
|
+
logger << "Removing child #{childid} from deployment #{id}"
|
35
|
+
end
|
36
|
+
invalidate do
|
37
|
+
RestClient::Resource.new(self["children/#{path_escape childid}"].url, options).delete
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def hosts
|
42
|
+
self.attributes['hosts'].values.collect do |id|
|
43
|
+
Conjur::Host.new("#{Conjur::Dep::API.host}/hosts/#{path_escape id}", options)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def children
|
48
|
+
self.attributes['children'].values.collect do |attrs|
|
49
|
+
Conjur::Deployment.new("#{Conjur::Dep::API.host}/deployments/#{path_escape attrs['id']}", options).tap do |d|
|
50
|
+
d.attributes = attrs
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
metadata
ADDED
@@ -0,0 +1,252 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: conjur-asset-deployment-api
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Kevin Gilpin
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-07-02 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: conjur-api
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: authable
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rails-api
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: talentbox-sequel-rails
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pg
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: pg_random_id
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: sequel-attribute_callbacks
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '>='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '>='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rspec-rails
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - '>='
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: cucumber-rails
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - '>='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '>='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: spork
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - '>='
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - '>='
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: simplecov
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - '>='
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - '>='
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: webmock
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - '>='
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - '>='
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: json_spec
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - '>='
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '0'
|
188
|
+
type: :development
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - '>='
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '0'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: ci_reporter
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - '>='
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - '>='
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0'
|
209
|
+
description:
|
210
|
+
email:
|
211
|
+
- kgilpin@gmail.com
|
212
|
+
executables: []
|
213
|
+
extensions: []
|
214
|
+
extra_rdoc_files: []
|
215
|
+
files:
|
216
|
+
- .gitignore
|
217
|
+
- Gemfile
|
218
|
+
- Gemfile.lock
|
219
|
+
- MIT-LICENSE
|
220
|
+
- README.rdoc
|
221
|
+
- Rakefile
|
222
|
+
- conjur-asset-deployment.gemspec
|
223
|
+
- lib/conjur-asset-deployment-version.rb
|
224
|
+
- lib/conjur-asset-deployment.rb
|
225
|
+
- lib/conjur/api/deployments.rb
|
226
|
+
- lib/conjur/command/deployments.rb
|
227
|
+
- lib/conjur/deployment-api.rb
|
228
|
+
- lib/conjur/deployment.rb
|
229
|
+
homepage: http://conjur.net
|
230
|
+
licenses: []
|
231
|
+
metadata: {}
|
232
|
+
post_install_message:
|
233
|
+
rdoc_options: []
|
234
|
+
require_paths:
|
235
|
+
- lib
|
236
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
237
|
+
requirements:
|
238
|
+
- - '>='
|
239
|
+
- !ruby/object:Gem::Version
|
240
|
+
version: '0'
|
241
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
242
|
+
requirements:
|
243
|
+
- - '>='
|
244
|
+
- !ruby/object:Gem::Version
|
245
|
+
version: '0'
|
246
|
+
requirements: []
|
247
|
+
rubyforge_project:
|
248
|
+
rubygems_version: 2.0.3
|
249
|
+
signing_key:
|
250
|
+
specification_version: 4
|
251
|
+
summary: Conjur asset plugin for server deployments.
|
252
|
+
test_files: []
|