Sha256: 31cd4236b468bf69c0569635b0637d8ef2c7cfcb1223c803f098a43cccb7a202

Contents?: true

Size: 834 Bytes

Versions: 8

Compression:

Stored size: 834 Bytes

Contents

if gem_source = ENV['GEM_SOURCE']
  source gem_source
else
  source "https://rubygems.org"
end

# C Ruby (MRI) or Rubinius, but NOT Windows
platforms :ruby do
  gem 'watchr', :group => :development
  gem 'pry', :group => :development
  gem 'yard', :group => :development
  gem 'redcarpet', :group => :development
end

group :development, :test do
  gem 'rake'
  gem 'facter', ">= 1.0.0", :path => File.expand_path("..", __FILE__)
  gem 'rspec', "~> 2.11.0"
  gem 'mocha', "~> 0.10.5"
  gem 'json', "~> 1.7"
  gem 'puppetlabs_spec_helper'
end

platform :mswin, :mingw do
  gem "win32-api", "~> 1.4.8"
  gem "win32-dir", "~> 0.3.7"
  gem "windows-api", "~> 0.4.1"
  gem "windows-pr", "~> 1.2.1"
  gem "win32console", "~> 1.3.2"
end

if File.exists? "#{__FILE__}.local"
  eval(File.read("#{__FILE__}.local"), binding)
end

# vim:ft=ruby

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
facter-1.7.3 Gemfile
facter-1.7.3.rc1 Gemfile
facter-1.7.2 Gemfile
facter-1.7.2.rc1 Gemfile
facter-1.7.1 Gemfile
facter-1.7.1.rc1 Gemfile
facter-1.7.0 Gemfile
facter-1.7.0.rc2 Gemfile