Sha256: 2ce4b8a8777a01fb4cbce8de769c99a3075bca04ada20ea7d1a224ac6d7e3a46

Contents?: true

Size: 881 Bytes

Versions: 8

Compression:

Stored size: 881 Bytes

Contents

# encoding: utf-8
source 'https://rubygems.org'
gemspec

# pin dependency for Ruby 1.9.3 since bundler is not
# detecting that net-ssh 3 does not work with 1.9.3
if Gem::Version.new(RUBY_VERSION) <= Gem::Version.new('1.9.3')
  gem 'net-ssh', '~> 2.9'
end

group :test do
  gem 'bundler', '~> 1.5'
  gem 'minitest', '~> 5.5'
  gem 'rake', '~> 10'
  gem 'rubocop', '~> 0.36.0'
  gem 'simplecov', '~> 0.10'
  gem 'concurrent-ruby', '~> 0.9'
end

group :integration do
  gem 'berkshelf', '~> 4.0'
  gem 'test-kitchen', '~> 1.6'
  gem 'kitchen-vagrant'
  gem 'kitchen-inspec', '0.12.5'
  gem 'kitchen-ec2'
end

group :tools do
  gem 'pry', '~> 0.10'
  gem 'rb-readline'
  gem 'license_finder'
  gem 'github_changelog_generator', '~> 1'
end

# gems for Maintainers.md generation
group :maintenance do
  gem 'tomlrb'

  # To sync maintainers with github
  gem 'octokit'
  gem 'netrc'
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
inspec-0.21.6 Gemfile
inspec-0.21.5 Gemfile
inspec-0.21.4 Gemfile
inspec-0.21.3 Gemfile
inspec-0.21.2 Gemfile
inspec-0.21.1 Gemfile
inspec-0.21.0 Gemfile
inspec-0.20.1 Gemfile