forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (33 loc) · 960 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'
gemspec
require File.expand_path('../spec/support/detect_rails_version', __FILE__)
rails_version = detect_rails_version
gem 'rails', rails_version
case rails_version
when /^3\.0/
# Do nothing, bundler should figure it out
when /^3\.(1|2)/
# These are the gems you have to have for Rails 3.1 to be happy
gem 'sass-rails'
gem 'uglifier'
else
raise "Rails #{rails_version} is not supported yet"
end
group :development, :test do
gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'rake', '~> 0.9.2.2', :require => false
gem 'haml', '~> 3.1.1', :require => false
gem 'yard'
gem 'rdiscount' # For yard
end
group :test do
gem 'rspec-rails', '~> 2.8.1'
gem 'cucumber', '1.1.4'
gem 'cucumber-rails', '1.2.1'
gem 'capybara', '1.1.2'
gem 'database_cleaner'
gem 'shoulda-matchers', '1.0.0'
gem 'launchy'
gem 'jslint_on_rails', '~> 1.0.6'
gem 'guard-rspec'
end