forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
44 lines (37 loc) · 1.04 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
source 'http://rubygems.org'
gemspec
require File.expand_path('../spec/support/detect_rails_version', __FILE__)
rails_version = detect_rails_version
gem 'rails', rails_version
gem 'bourbon'
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'
gem 'rake', '~> 0.9.2.2', :require => false
gem 'haml', '~> 3.1.1', :require => false
gem 'yard'
gem 'rdiscount' # For yard
gem "sprockets"
gem 'rails-i18n' # Gives us default i18n for many languages
end
group :test do
gem 'rspec-rails', '~> 2.9.0'
gem 'cucumber-rails', '1.2.1', :require => false
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'
gem "guard-coffeescript"
gem 'jasmine'
end