forked from technicalpickles/jeweler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
40 lines (33 loc) · 786 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
37
38
39
40
source "http://rubygems.org"
source "http://gems.github.com"
gem "rake"
gem "git", ">= 1.2.5"
gem "bundler", "~> 1.0"
gem "rdoc"
group :development do
gem "yard", "~> 0.7.4"
gem "rdoc"
gem "bluecloth"
gem "cucumber", "~> 1.1.4"
gem "rcov"
end
group :test do
gem "timecop"
gem "activesupport", "~> 2.3.5"
gem "shoulda"
gem "mhennemeyer-output_catcher"
gem "rr", "~> 1.0.4"
gem "mocha"
gem "redgreen"
gem "test-construct"
gem "rake"
end
# yo dawg, i herd u lieked jeweler
group :xzibit do
# steal a page from bundler's gemspec:
# add this directory as jeweler, in order to bundle exec jeweler and use the current working directory
gem 'jeweler', :path => '.'
end
group :debug do
gem (RUBY_VERSION =~ /^1\.9/ ? "ruby-debug19" : "ruby-debug")
end