omnibus-gitlab/Gemfile.lock

653 lines
16 KiB
Plaintext
Raw Normal View History

2015-05-26 11:19:03 +00:00
GIT
remote: https://gitlab.com/gitlab-org/omnibus.git
revision: f48d9cd3d9e275da9cab4fff229d9520da161ba7
tag: 9.0.19.2
2015-05-26 11:19:03 +00:00
specs:
omnibus (9.0.19)
aws-sdk-s3 (~> 1.116.0)
chef-cleanroom (~> 1.0)
chef-utils (>= 15.4)
contracts (>= 0.16.0, < 0.17.0)
2016-07-20 14:34:07 +00:00
ffi-yajl (~> 2.2)
mixlib-shellout (>= 2.0, < 4.0)
2015-06-29 11:24:35 +00:00
mixlib-versioning
ohai (>= 16, < 19)
2017-06-01 11:19:45 +00:00
pedump
rexml (~> 3.2)
2015-06-29 11:24:35 +00:00
ruby-progressbar (~> 1.7)
thor (>= 0.18, < 2.0)
2015-05-26 11:19:03 +00:00
2013-11-21 11:46:44 +00:00
GEM
remote: https://packagecloud.io/cinc-project/stable/
2013-11-21 11:46:44 +00:00
specs:
chef (18.3.0)
Update to Chef 12.21.31 * Updates the Gemfile.lock used by `bundle` CI tasks and rspec * Updates the software definitions to match Gemfile.lock * Tweaks Ohai Logging to supress noise in the rspec run * Fix deprecations in `account` and `templatesymlink` LWRPs = Gemfile and software definitions Initially generated by $ bundle upgrade chef $ git add --patch Gemfile.lock Reflecting pinning changes from Gemfile.lock into the software definitions. $ git add config/software This let us rely on bundler doing the hard work of solving for transient dependencies, but also allowed us to keep the versions of chef used for rspec testing aligned with the versions of components we add to the packages. = Ohai Logging With the update to ohai 8.26.1 we started to see an additional logging line during test startup: $ bundle exec rspec spec/chef/recipes/unicorn_spec.rb [2018-02-13T09:27:01+00:00] INFO: The plugin path /etc/chef/ohai/plugins does not exist. Skipping... Platform mac_os_x 10.13.3 not supported. Falling back to ubuntu 14.04 Here we configure the loglevel of Ohai down to error before we call it to find our current platform, to tidy up the test output. = `account` LWRP's use of user type In Chef 12.14 the supports property of the user type was deprecated, to be removed in Chef 13. Here we avoid this deprecation by changing our single use of the accounts LWRP to take/pass a manage_home property, rather than the previous `user_supports manage_home: false` property. https://docs.chef.io/deprecations_supports_property.html = `templatesymlink` LWRP property deprecations In moving to Chef 12.21.31 we are alerted of deprecations that will become fatal errors in moving to Chef 13. For `templatesymlink` they were both of the class of shadowing properties, as `sensitive` and `notifies` are both defined as methods in Chef::Resource which is an eventual parent class of the LWRPs. Fixing `sensitive` was simple, as the parent property behaves like a simple setter, so we can remove our and simply make use of the inherited behaviour from the baseclass, and just call `new_resource.sensitive`. https://github.com/chef/chef/blob/v12.21.33/lib/chef/resource.rb#L456-L466 `notifies` was a little more complex. Instead of attempting to supply this property, we instead use `new_resource.updated_by_last_action` if the wrapped templates :create action reported an update via `#updated_by_last_action?` This moves the thing that generates the notification from the wrapped template to the instance of `templatesymlink`, so some tests needed to be updated. This has also been manually tested by editing /opt/gitlab/embedded/service/gitlab-rails/config/gitlab.yml and then observing that the reconfigure ran 'execute[clear the gitlab-rails cache]'
2018-02-12 14:47:38 +00:00
addressable
aws-sdk-s3 (~> 1.91)
aws-sdk-secretsmanager (~> 1.46)
chef-config (= 18.3.0)
chef-utils (= 18.3.0)
chef-vault
chef-zero (>= 14.0.11)
corefoundation (~> 0.3.4)
diff-lcs (>= 1.2.4, < 1.6.0, != 1.4.0)
2016-08-01 20:36:33 +00:00
erubis (~> 2.7)
ffi (>= 1.15.5)
2020-07-22 18:24:30 +00:00
ffi-libarchive (~> 1.0, >= 1.0.3)
2016-08-01 20:36:33 +00:00
ffi-yajl (~> 2.2)
iniparse (~> 1.4)
inspec-core (>= 5)
license-acceptance (>= 1.0.5, < 3)
mixlib-archive (>= 0.4, < 2.0)
mixlib-authentication (>= 2.1, < 4)
mixlib-cli (>= 2.1.1, < 3.0)
mixlib-log (>= 2.0.3, < 4.0)
mixlib-shellout (>= 3.1.1, < 4.0)
net-ftp
net-sftp (>= 2.1.2, < 5.0)
ohai (~> 18.0)
2016-08-01 20:36:33 +00:00
plist (~> 3.2)
proxifier2 (~> 1.1)
2016-08-01 20:36:33 +00:00
syslog-logger (~> 1.6)
train-core (~> 3.10)
train-rest (>= 0.4.1)
train-winrm (>= 0.2.5)
unf_ext (>= 0.0.8.2)
uuidtools (>= 2.1.5, < 3.0)
vault (~> 0.16)
chef-cli (5.6.1)
addressable (>= 2.3.5, < 2.9)
chef (>= 16.0)
cookbook-omnifetch (~> 0.5)
diff-lcs (>= 1.0, < 1.4)
ffi-yajl (>= 1.0, < 3.0)
license-acceptance (>= 1.0.11, < 3)
minitar (~> 0.6)
mixlib-cli (>= 1.7, < 3.0)
mixlib-shellout (>= 2.0, < 4.0)
pastel (~> 0.7)
solve (> 2.0, < 5.0)
chef-config (18.3.0)
Update to Chef 12.21.31 * Updates the Gemfile.lock used by `bundle` CI tasks and rspec * Updates the software definitions to match Gemfile.lock * Tweaks Ohai Logging to supress noise in the rspec run * Fix deprecations in `account` and `templatesymlink` LWRPs = Gemfile and software definitions Initially generated by $ bundle upgrade chef $ git add --patch Gemfile.lock Reflecting pinning changes from Gemfile.lock into the software definitions. $ git add config/software This let us rely on bundler doing the hard work of solving for transient dependencies, but also allowed us to keep the versions of chef used for rspec testing aligned with the versions of components we add to the packages. = Ohai Logging With the update to ohai 8.26.1 we started to see an additional logging line during test startup: $ bundle exec rspec spec/chef/recipes/unicorn_spec.rb [2018-02-13T09:27:01+00:00] INFO: The plugin path /etc/chef/ohai/plugins does not exist. Skipping... Platform mac_os_x 10.13.3 not supported. Falling back to ubuntu 14.04 Here we configure the loglevel of Ohai down to error before we call it to find our current platform, to tidy up the test output. = `account` LWRP's use of user type In Chef 12.14 the supports property of the user type was deprecated, to be removed in Chef 13. Here we avoid this deprecation by changing our single use of the accounts LWRP to take/pass a manage_home property, rather than the previous `user_supports manage_home: false` property. https://docs.chef.io/deprecations_supports_property.html = `templatesymlink` LWRP property deprecations In moving to Chef 12.21.31 we are alerted of deprecations that will become fatal errors in moving to Chef 13. For `templatesymlink` they were both of the class of shadowing properties, as `sensitive` and `notifies` are both defined as methods in Chef::Resource which is an eventual parent class of the LWRPs. Fixing `sensitive` was simple, as the parent property behaves like a simple setter, so we can remove our and simply make use of the inherited behaviour from the baseclass, and just call `new_resource.sensitive`. https://github.com/chef/chef/blob/v12.21.33/lib/chef/resource.rb#L456-L466 `notifies` was a little more complex. Instead of attempting to supply this property, we instead use `new_resource.updated_by_last_action` if the wrapped templates :create action reported an update via `#updated_by_last_action?` This moves the thing that generates the notification from the wrapped template to the instance of `templatesymlink`, so some tests needed to be updated. This has also been manually tested by editing /opt/gitlab/embedded/service/gitlab-rails/config/gitlab.yml and then observing that the reconfigure ran 'execute[clear the gitlab-rails cache]'
2018-02-12 14:47:38 +00:00
addressable
chef-utils (= 18.3.0)
2016-08-01 20:36:33 +00:00
fuzzyurl
mixlib-config (>= 2.2.12, < 4.0)
mixlib-shellout (>= 2.0, < 4.0)
tomlrb (~> 1.2)
chef-utils (18.3.0)
concurrent-ruby
chef-zero (15.0.11)
2016-08-01 20:36:33 +00:00
ffi-yajl (~> 2.2)
hashie (>= 2.0, < 5.0)
mixlib-log (>= 2.0, < 4.0)
rack (~> 2.0, >= 2.0.6)
2016-08-01 20:36:33 +00:00
uuidtools (~> 2.1)
webrick
inspec-core (5.22.36)
addressable (~> 2.4)
chef-telemetry (~> 1.0, >= 1.0.8)
faraday (>= 1, < 3)
faraday-follow_redirects (~> 0.3)
hashie (>= 3.4, < 6.0)
license-acceptance (>= 0.2.13, < 3.0)
method_source (>= 0.8, < 2.0)
mixlib-log (~> 3.0)
multipart-post (~> 2.0)
parallel (~> 1.9)
parslet (>= 1.5, < 3.0)
pry (~> 0.13)
rspec (>= 3.9, <= 3.12)
rspec-its (~> 1.2)
rubyzip (>= 1.2.2, < 3.0)
semverse (~> 3.0)
sslshake (~> 1.2)
thor (>= 0.20, < 1.3.0)
tomlrb (>= 1.2, < 2.1)
train-core (~> 3.10)
tty-prompt (~> 0.17)
tty-table (~> 0.10)
mixlib-versioning (1.2.12)
GEM
remote: https://rubygems.org/
specs:
activesupport (6.1.3.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
2022-11-25 07:48:57 +00:00
addressable (2.8.1)
public_suffix (>= 2.0.2, < 6.0)
ast (2.4.2)
awesome_print (1.9.2)
aws-eventstream (1.2.0)
aws-partitions (1.763.0)
aws-sdk-core (3.172.0)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.651.0)
aws-sigv4 (~> 1.5)
jmespath (~> 1, >= 1.6.1)
aws-sdk-ec2 (1.327.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sigv4 (~> 1.1)
aws-sdk-kms (1.64.0)
aws-sdk-core (~> 3, >= 3.165.0)
aws-sigv4 (~> 1.1)
aws-sdk-marketplacecatalog (1.22.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.116.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.4)
aws-sdk-secretsmanager (1.75.0)
aws-sdk-core (~> 3, >= 3.165.0)
aws-sigv4 (~> 1.1)
aws-sigv4 (1.5.2)
aws-eventstream (~> 1, >= 1.0.2)
binding_of_caller (1.0.0)
debug_inspector (>= 0.0.1)
builder (3.2.4)
chef-cleanroom (1.0.5)
chef-telemetry (1.1.1)
chef-config
concurrent-ruby (~> 1.0)
chef-vault (4.1.11)
chefspec (9.3.3)
chef (>= 15)
chef-cli
fauxhai-ng (>= 7.5)
2016-08-01 20:36:33 +00:00
rspec (~> 3.0)
citrus (3.0.2)
claide (1.1.0)
claide-plugins (0.9.2)
cork
nap
open4 (~> 1.3)
coderay (1.1.3)
colored2 (3.1.2)
concurrent-ruby (1.1.8)
contracts (0.16.1)
cookbook-omnifetch (0.11.1)
mixlib-archive (>= 0.4, < 2.0)
corefoundation (0.3.13)
ffi (>= 1.15.0)
cork (0.3.0)
colored2 (~> 3.1)
danger (8.6.1)
claide (~> 1.0)
claide-plugins (>= 0.9.2)
colored2 (~> 3.1)
cork (~> 0.1)
faraday (>= 0.9.0, < 2.0)
faraday-http-cache (~> 2.0)
git (~> 1.7)
kramdown (~> 2.3)
kramdown-parser-gfm (~> 1.0)
no_proxy_fix
octokit (~> 4.7)
terminal-table (>= 1, < 4)
danger-gitlab (8.0.0)
danger
gitlab (~> 4.2, >= 4.2.0)
date (3.3.4)
debug (1.6.1)
irb (>= 1.3.6)
reline (>= 0.3.1)
debug_inspector (1.1.0)
declarative (0.0.20)
Update to Chef 12.21.31 * Updates the Gemfile.lock used by `bundle` CI tasks and rspec * Updates the software definitions to match Gemfile.lock * Tweaks Ohai Logging to supress noise in the rspec run * Fix deprecations in `account` and `templatesymlink` LWRPs = Gemfile and software definitions Initially generated by $ bundle upgrade chef $ git add --patch Gemfile.lock Reflecting pinning changes from Gemfile.lock into the software definitions. $ git add config/software This let us rely on bundler doing the hard work of solving for transient dependencies, but also allowed us to keep the versions of chef used for rspec testing aligned with the versions of components we add to the packages. = Ohai Logging With the update to ohai 8.26.1 we started to see an additional logging line during test startup: $ bundle exec rspec spec/chef/recipes/unicorn_spec.rb [2018-02-13T09:27:01+00:00] INFO: The plugin path /etc/chef/ohai/plugins does not exist. Skipping... Platform mac_os_x 10.13.3 not supported. Falling back to ubuntu 14.04 Here we configure the loglevel of Ohai down to error before we call it to find our current platform, to tidy up the test output. = `account` LWRP's use of user type In Chef 12.14 the supports property of the user type was deprecated, to be removed in Chef 13. Here we avoid this deprecation by changing our single use of the accounts LWRP to take/pass a manage_home property, rather than the previous `user_supports manage_home: false` property. https://docs.chef.io/deprecations_supports_property.html = `templatesymlink` LWRP property deprecations In moving to Chef 12.21.31 we are alerted of deprecations that will become fatal errors in moving to Chef 13. For `templatesymlink` they were both of the class of shadowing properties, as `sensitive` and `notifies` are both defined as methods in Chef::Resource which is an eventual parent class of the LWRPs. Fixing `sensitive` was simple, as the parent property behaves like a simple setter, so we can remove our and simply make use of the inherited behaviour from the baseclass, and just call `new_resource.sensitive`. https://github.com/chef/chef/blob/v12.21.33/lib/chef/resource.rb#L456-L466 `notifies` was a little more complex. Instead of attempting to supply this property, we instead use `new_resource.updated_by_last_action` if the wrapped templates :create action reported an update via `#updated_by_last_action?` This moves the thing that generates the notification from the wrapped template to the instance of `templatesymlink`, so some tests needed to be updated. This has also been manually tested by editing /opt/gitlab/embedded/service/gitlab-rails/config/gitlab.yml and then observing that the reconfigure ran 'execute[clear the gitlab-rails cache]'
2018-02-12 14:47:38 +00:00
diff-lcs (1.3)
digest-crc (0.6.5)
rake (>= 12.0.0, < 14.0.0)
docile (1.4.0)
docker-api (2.0.0)
excon (>= 0.47.0)
multi_json
2022-11-25 07:48:57 +00:00
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
erubi (1.12.0)
2016-08-01 20:36:33 +00:00
erubis (2.7.0)
excon (0.76.0)
fantaskspec (1.2.0)
rake (>= 10.0)
rspec (~> 3.4)
faraday (1.4.3)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
faraday-net_http (~> 1.0)
faraday-net_http_persistent (~> 1.1)
multipart-post (>= 1.2, < 3)
ruby2_keywords (>= 0.0.4)
faraday-em_http (1.0.0)
faraday-em_synchrony (1.0.0)
faraday-excon (1.1.0)
faraday-follow_redirects (0.3.0)
faraday (>= 1, < 3)
faraday-http-cache (2.4.1)
faraday (>= 0.8)
faraday-net_http (1.0.1)
faraday-net_http_persistent (1.2.0)
fauxhai-ng (8.7.0)
2016-08-01 20:36:33 +00:00
net-ssh
ffi (1.15.5)
2022-11-25 07:48:57 +00:00
ffi-compiler (1.0.1)
ffi (>= 1.0.0)
rake
ffi-libarchive (1.1.13)
ffi (~> 1.0)
ffi-yajl (2.4.0)
libyajl2 (>= 1.2)
2016-08-01 20:36:33 +00:00
fuzzyurl (0.9.0)
git (1.11.0)
rchardet (~> 1.8)
gitlab (4.19.0)
httparty (~> 0.20)
terminal-table (>= 1.5.1)
gitlab-dangerfiles (3.5.0)
danger (>= 8.4.5)
danger-gitlab (>= 8.0.0)
rake
gitlab-styles (9.0.0)
rubocop (~> 1.36.0)
rubocop-gitlab-security (~> 0.1.1)
rubocop-graphql (~> 0.14)
rubocop-performance (~> 1.14)
rubocop-rails (~> 2.15)
rubocop-rspec (~> 2.12)
google-apis-core (0.11.0)
addressable (~> 2.5, >= 2.5.1)
googleauth (>= 0.16.2, < 2.a)
httpclient (>= 2.8.1, < 3.a)
mini_mime (~> 1.0)
representable (~> 3.0)
retriable (>= 2.0, < 4.a)
rexml
webrick
google-apis-iamcredentials_v1 (0.17.0)
google-apis-core (>= 0.11.0, < 2.a)
google-apis-storage_v1 (0.19.0)
google-apis-core (>= 0.9.0, < 2.a)
google-cloud-core (1.6.0)
google-cloud-env (~> 1.0)
google-cloud-errors (~> 1.0)
google-cloud-env (1.6.0)
faraday (>= 0.17.3, < 3.0)
google-cloud-errors (1.3.1)
google-cloud-storage (1.44.0)
addressable (~> 2.8)
digest-crc (~> 0.4)
google-apis-iamcredentials_v1 (~> 0.1)
google-apis-storage_v1 (~> 0.19.0)
google-cloud-core (~> 1.6)
googleauth (>= 0.16.2, < 2.a)
mini_mime (~> 1.0)
googleauth (1.7.0)
faraday (>= 0.17.3, < 3.a)
jwt (>= 1.4, < 3.0)
memoist (~> 0.16)
multi_json (~> 1.11)
os (>= 0.9, < 2.0)
signet (>= 0.16, < 2.a)
gssapi (1.3.1)
ffi (>= 1.0.1)
gyoku (1.4.0)
builder (>= 2.1.2)
rexml (~> 3.0)
hashie (4.1.0)
highline (2.0.3)
2022-11-25 07:48:57 +00:00
http (5.1.0)
addressable (~> 2.8)
http-cookie (~> 1.0)
2022-11-25 07:48:57 +00:00
http-form_data (~> 2.2)
llhttp-ffi (~> 0.4.0)
http-accept (1.7.0)
2022-11-25 07:48:57 +00:00
http-cookie (1.0.5)
domain_name (~> 0.5)
2022-11-25 07:48:57 +00:00
http-form_data (2.3.0)
httparty (0.20.0)
mime-types (~> 3.0)
multi_xml (>= 0.5.2)
httpclient (2.8.3)
i18n (1.8.10)
concurrent-ruby (~> 1.0)
iniparse (1.5.0)
io-console (0.5.11)
iostruct (0.0.5)
2016-07-20 14:34:07 +00:00
ipaddress (0.8.3)
irb (1.4.1)
reline (>= 0.3.0)
jmespath (1.6.2)
json (2.6.1)
json_pure (2.3.1)
jwt (2.7.1)
knapsack (1.17.1)
rake
kramdown (2.4.0)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
libyajl2 (2.1.0)
license-acceptance (2.1.13)
pastel (~> 0.7)
tomlrb (>= 1.2, < 3.0)
tty-box (~> 0.6)
tty-prompt (~> 0.20)
little-plugger (1.1.4)
2022-11-25 07:48:57 +00:00
llhttp-ffi (0.4.0)
ffi-compiler (~> 1.0)
rake (~> 13.0)
logging (2.3.1)
little-plugger (~> 1.1)
multi_json (~> 1.14)
memoist (0.16.2)
method_source (1.0.0)
mime-types (3.3.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2020.0512)
mini_mime (1.1.2)
minitar (0.9)
minitest (5.14.4)
mixlib-archive (1.1.7)
2016-08-01 20:36:33 +00:00
mixlib-log
mixlib-authentication (3.0.10)
mixlib-cli (2.1.8)
mixlib-config (3.0.27)
tomlrb
mixlib-log (3.0.9)
mixlib-shellout (3.2.7)
chef-utils
molinillo (0.8.0)
multi_json (1.15.0)
multi_xml (0.6.0)
multipart-post (2.1.1)
nap (1.1.0)
net-ftp (0.3.4)
net-protocol
time
net-protocol (0.2.2)
timeout
net-scp (4.0.0)
net-ssh (>= 2.6.5, < 8.0.0)
net-sftp (4.0.0)
net-ssh (>= 5.0.0, < 8.0.0)
net-ssh (6.1.0)
netrc (0.11.0)
no_proxy_fix (0.1.2)
nori (2.6.0)
octokit (4.25.1)
faraday (>= 1, < 3)
sawyer (~> 0.9)
ohai (18.1.3)
chef-config (>= 14.12, < 19)
chef-utils (>= 16.0, < 19)
ffi (~> 1.9)
ffi-yajl (~> 2.2)
ipaddress
mixlib-cli (>= 1.7.0)
mixlib-config (>= 2.0, < 4.0)
mixlib-log (>= 2.0.1, < 4.0)
mixlib-shellout (~> 3.2, >= 3.2.5)
plist (~> 3.1)
train-core
wmi-lite (~> 1.0)
omnibus-ctl (0.3.6)
open4 (1.3.4)
os (1.1.4)
package_cloud (0.3.09)
highline (~> 2.0.0)
json_pure (~> 2.3.0)
rainbow (= 2.2.2)
rest-client (~> 2.0)
thor (~> 1.2)
parallel (1.19.2)
parser (3.2.2.1)
ast (~> 2.4.1)
parslet (2.0.0)
pastel (0.8.0)
tty-color (~> 0.5)
pedump (0.6.6)
2017-06-01 11:19:45 +00:00
awesome_print
iostruct (>= 0.0.4)
multipart-post (>= 2.0.0)
rainbow
2017-06-01 11:19:45 +00:00
zhexdump (>= 0.0.2)
plist (3.7.1)
proc_to_ast (0.1.0)
coderay
parser
unparser
proxifier2 (1.1.0)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
2022-11-25 07:48:57 +00:00
public_suffix (5.0.0)
rack (2.2.4)
rainbow (2.2.2)
rake
rake (13.0.6)
rchardet (1.8.0)
regexp_parser (2.1.1)
reline (0.3.1)
io-console (~> 0.5)
representable (3.2.0)
declarative (< 0.1.0)
trailblazer-option (>= 0.1.1, < 0.2.0)
uber (< 0.2.0)
rest-client (2.1.0)
http-accept (>= 1.7.0, < 2.0)
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
retriable (3.1.2)
rexml (3.2.5)
rspec (3.11.0)
rspec-core (~> 3.11.0)
rspec-expectations (~> 3.11.0)
rspec-mocks (~> 3.11.0)
rspec-core (3.11.0)
rspec-support (~> 3.11.0)
rspec-expectations (3.11.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.11.0)
rspec-its (1.3.0)
rspec-core (>= 3.0.0)
rspec-expectations (>= 3.0.0)
rspec-mocks (3.11.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.11.0)
rspec-parameterized (1.0.0)
rspec-parameterized-core (< 2)
rspec-parameterized-table_syntax (< 2)
rspec-parameterized-core (1.0.0)
parser
proc_to_ast
rspec (>= 2.13, < 4)
unparser
rspec-parameterized-table_syntax (1.0.0)
binding_of_caller
rspec-parameterized-core (< 2)
rspec-support (3.11.1)
rspec_junit_formatter (0.4.1)
2016-08-01 20:36:33 +00:00
rspec-core (>= 2, < 4, != 2.12.0)
rubocop (1.36.0)
json (~> 2.3)
2018-02-25 13:44:36 +00:00
parallel (~> 1.10)
parser (>= 3.1.2.1)
2018-02-25 13:44:36 +00:00
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.20.1, < 2.0)
2017-02-20 07:02:54 +00:00
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.21.0)
parser (>= 3.1.1.0)
rubocop-gitlab-security (0.1.1)
rubocop (>= 0.51)
rubocop-graphql (0.14.5)
rubocop (>= 0.87, < 2)
rubocop-performance (1.15.0)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rails (2.16.0)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 1.33.0, < 2.0)
rubocop-rspec (2.13.1)
rubocop (~> 1.33)
ruby-progressbar (1.11.0)
ruby2_keywords (0.0.5)
rubyntlm (0.6.3)
rubyzip (2.3.2)
sawyer (0.9.2)
addressable (>= 2.3.5)
faraday (>= 0.17.3, < 3)
semverse (3.0.0)
signet (0.17.0)
addressable (~> 2.8)
faraday (>= 0.17.5, < 3.a)
jwt (>= 1.5, < 3.0)
multi_json (~> 1.10)
simplecov (0.21.2)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-cobertura (2.1.0)
rexml
simplecov (~> 0.19)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
solve (4.0.4)
molinillo (~> 0.6)
semverse (>= 1.1, < 4.0)
sslshake (1.3.1)
strings (0.2.1)
strings-ansi (~> 0.2)
unicode-display_width (>= 1.5, < 3.0)
unicode_utils (~> 1.4)
strings-ansi (0.2.0)
2016-08-01 20:36:33 +00:00
syslog-logger (1.6.8)
terminal-table (1.8.0)
unicode-display_width (~> 1.1, >= 1.1.1)
thor (1.2.1)
time (0.3.0)
date
timeout (0.4.1)
toml-rb (2.2.0)
citrus (~> 3.0, > 3.0)
tomlib (0.6.0)
tomlrb (1.3.0)
trailblazer-option (0.1.2)
train-core (3.11.0)
addressable (~> 2.5)
2020-07-22 18:24:30 +00:00
ffi (!= 1.13.0)
json (>= 1.8, < 3.0)
mixlib-shellout (>= 2.0, < 4.0)
net-scp (>= 1.2, < 5.0)
net-ssh (>= 2.9, < 8.0)
train-rest (0.5.0)
aws-sigv4 (~> 1.5)
rest-client (~> 2.1)
train-core (~> 3.0)
train-winrm (0.2.13)
winrm (>= 2.3.6, < 3.0)
2020-10-01 21:05:21 +00:00
winrm-elevated (~> 1.2.2)
winrm-fs (~> 1.0)
tty-box (0.7.0)
pastel (~> 0.8)
strings (~> 0.2.0)
tty-cursor (~> 0.7)
tty-color (0.6.0)
tty-cursor (0.7.1)
tty-prompt (0.23.1)
pastel (~> 0.8)
tty-reader (~> 0.8)
tty-reader (0.9.0)
tty-cursor (~> 0.7)
tty-screen (~> 0.8)
wisper (~> 2.0)
tty-screen (0.8.1)
tty-table (0.12.0)
pastel (~> 0.8)
strings (~> 0.2.0)
tty-screen (~> 0.8)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
uber (0.1.0)
unf (0.1.4)
unf_ext
unf_ext (0.0.9.1)
unicode-display_width (1.8.0)
unicode_utils (1.4.0)
unparser (0.6.7)
diff-lcs (~> 1.3)
parser (>= 3.2.0)
uuidtools (2.2.0)
vault (0.18.2)
aws-sigv4
webrick (1.7.0)
winrm (2.3.6)
builder (>= 2.1.2)
erubi (~> 1.8)
gssapi (~> 1.2)
gyoku (~> 1.0)
httpclient (~> 2.2, >= 2.2.0.2)
logging (>= 1.6.1, < 3.0)
nori (~> 2.0)
rubyntlm (~> 0.6.0, >= 0.6.3)
winrm-elevated (1.2.3)
2020-10-01 21:05:21 +00:00
erubi (~> 1.8)
winrm (~> 2.0)
winrm-fs (~> 1.0)
winrm-fs (1.3.5)
erubi (~> 1.8)
logging (>= 1.6.1, < 3.0)
rubyzip (~> 2.0)
winrm (~> 2.0)
wisper (2.0.1)
wmi-lite (1.0.7)
yard (0.9.26)
zeitwerk (2.4.2)
2017-06-01 11:19:45 +00:00
zhexdump (0.0.2)
2013-11-21 11:46:44 +00:00
PLATFORMS
ruby
DEPENDENCIES
aws-sdk-ec2
aws-sdk-marketplacecatalog
chef (~> 18.3.0)!
chef-cli (~> 5.6.1)!
chef-utils!
2016-08-01 20:36:33 +00:00
chefspec
debug
2017-02-26 11:46:44 +00:00
docker-api
fantaskspec
gitlab
gitlab-dangerfiles (~> 3.0)
gitlab-styles (~> 9.0)
google-cloud-storage
http
2015-04-01 14:38:09 +00:00
json
knapsack
mixlib-versioning!
ohai (~> 18.0)
2015-05-26 11:19:03 +00:00
omnibus!
omnibus-ctl (= 0.3.6)
2015-03-27 14:55:58 +00:00
package_cloud
rainbow (~> 2.2)
rake
retriable
rspec
rspec-parameterized
2018-08-31 11:00:50 +00:00
rspec_junit_formatter
simplecov-cobertura
thor (~> 1.2)
toml-rb
tomlib (~> 0.6.0)
unf_ext (~> 0.0.9.1)
yard
BUNDLED WITH
2.5.9