forked from dgidb/dgidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
51 lines (44 loc) · 920 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
source 'https://rubygems.org'
gem 'rails', '3.2.21'
gem 'pg'
gem 'less-rails-bootstrap', '2.3.3'
gem 'nokogiri'
gem 'haml'
gem 'textacular', require: 'textacular/rails'
gem 'jquery-rails', '2.1.4'
gem 'therubyracer', '~> 0.12.1'
gem 'libv8', '~> 3.16.14.7', :platform => :ruby
gem 'exception_notification'
gem 'rake'
gem 'xpath'
gem 'jbuilder'
gem 'lograge'
gem 'syslog-logger'
gem 'rye'
group :production do
gem 'dalli'
end
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'pry'
gem 'pry-remote'
gem 'pry-nav'
gem 'rack-mini-profiler'
end
group :test, :development do
gem 'rspec-rails'
gem 'fabrication'
gem "capybara"
gem "launchy"
gem 'better_errors'
gem 'binding_of_caller', '~> 0.7.0'
gem 'activerecord-import'
gem 'stamp'
gem 'database_cleaner'
gem 'coveralls'
gem 'test-unit'
end