forked from starpeak/gricer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
62 lines (53 loc) · 1.14 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
source "http://rubygems.org"
gemspec
if true
gem "rails", '>3.2.1'
gem 'compass-rails'
gem 'sass-rails', '> 3.2'
else
gem "rails", '>3.1.3'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '> 3.1'
gem 'compass-rails'
gem 'coffee-rails', '> 3.1'
gem 'uglifier'
end
gem 'jquery-rails'
end
# SQLite and PG for ActiveRecord flavoured model tests
gem 'sqlite3'
gem 'pg'
# Mongoid for Mongoid flavoured model tests
gem "mongoid", ">= 2.4"
gem "bson_ext", ">= 1.5"
group :test do
gem 'rspec-rails', '>= 2.8.1'
gem 'mongoid-rspec'
gem 'email_spec'
gem 'webrat'
gem 'capybara'
gem 'cucumber-rails'
gem 'database_cleaner'
gem 'jasmine'
end
group :development do
gem 'pry'
gem 'yard'
end
group :test, :development do
# gem 'ruby-debug19', require: 'ruby-debug'
gem 'fabrication'
gem 'launchy'
gem 'faker'
gem 'chronic'
gem 'syntax'
gem 'timecop'
gem 'jasminerice'
gem 'guard-shell'
if RUBY_PLATFORM =~ /darwin/i
gem 'growl_notify'
gem 'rb-fsevent', :require => false
end
end