forked from puppetlabs/facter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
36 lines (31 loc) · 834 Bytes
/
Gemfile
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
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