forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
52 lines (44 loc) · 1.38 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
source 'http://rubygems.org'
gemspec
ACTIVE_ADMIN_PATH = File.dirname(__FILE__) unless defined?(ACTIVE_ADMIN_PATH)
require File.expand_path('spec/support/detect_rails_version', ACTIVE_ADMIN_PATH)
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 do
gem 'better_errors', '~> 0.8.0' # Web UI to debug exceptions. Go to /__better_errors to access the latest one
gem 'binding_of_caller', '~> 0.7.1' # Retrieve the binding of a method's caller in MRI Ruby >= 1.9.2
end
group :development, :test do
gem 'haml', '~> 3.1.7', :require => false
gem 'rake', '~> 10.0.2', :require => false
gem 'rails-i18n' # Provides default i18n for many languages
gem 'rdiscount' # Markdown implementation (for yard)
gem 'sprockets'
gem 'yard'
end
group :test do
gem 'cancan'
gem 'capybara', '1.1.2'
gem 'cucumber-rails', '1.3.0', :require => false
gem 'database_cleaner'
gem 'guard-coffeescript'
gem 'guard-rspec'
gem 'jasmine'
gem 'jslint_on_rails', '~> 1.1.1'
gem 'launchy'
gem 'parallel_tests'
gem 'rspec-rails', '~> 2.9.0'
gem 'shoulda-matchers'
gem 'sqlite3'
end