forked from puppetlabs/facter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (30 loc) · 1.03 KB
/
Copy pathGemfile
File metadata and controls
36 lines (30 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
source ENV['GEM_SOURCE'] || "https://rubygems.org"
# C Ruby (MRI) or Rubinius, but NOT Windows
platforms :ruby do
gem 'watchr', :group => :development
gem 'pry', :group => :development
gem 'yard', :group => :development
redcarpet_version = RUBY_VERSION =~ /^1\.8/ ? "< 3.0.0" : nil
gem 'redcarpet', redcarpet_version, :group => :development
end
group :development, :test do
gem 'rake'
gem 'rspec', "~> 2.11.0"
gem 'mocha', "~> 0.10.5"
gem 'json', "~> 1.7", :platforms => :ruby
gem 'puppetlabs_spec_helper'
end
platform :mswin, :mingw do
gem "ffi", "1.9.0", :require => false
gem "sys-admin", "1.5.6", :require => false
gem "win32-api", "1.4.8", :require => false
gem "win32-dir", "0.4.3", :require => false
gem "windows-api", "0.4.2", :require => false
gem "windows-pr", "1.2.2", :require => false
gem "win32console", "1.3.2", :require => false
end
gem 'facter', ">= 1.0.0", :path => File.expand_path("..", __FILE__)
if File.exists? "#{__FILE__}.local"
eval(File.read("#{__FILE__}.local"), binding)
end
# vim:ft=ruby