-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
52 lines (44 loc) · 901 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
41
42
43
44
45
46
47
48
49
50
51
52
source 'http://rubygems.org'
gem 'rails', '3.0.9'
gem 'sqlite3'
gem "enumerate_it"
gem "acts_as_list"
gem "state_machine"
gem "haml"
gem "sass"
gem "compass"
gem "html5-boilerplate"
gem "simple-navigation"
gem "will_paginate", "3.0.pre2"
gem "devise"
gem "cancan"
gem "newrelic_rpm"
group :development do
gem "capistrano"
end
group :development, :test do
gem "rspec-rails"
gem "autotest"
gem "autotest-rails-pure"
gem "nokogiri"
gem "cucumber-rails"
gem "nokogiri"
gem "webrat"
gem "jasmine"
gem "spork"
gem "factory_girl_rails"
gem "remarkable_activerecord", '= 4.0.0.alpha4'
platform :ruby_18 do
# gem 'ruby-debug'
# gem 'rcov'
end
platform :ruby_19 do
gem 'ruby-debug19', :require => 'ruby-debug'
gem "cover_me"
end
end
# Gems to exclude when using Linux
# Use: bundle install --without osxtest
group :osxtest do
gem "autotest-fsevent"
end