forked from quintel/etflex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
101 lines (77 loc) · 2.22 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
source 'https://rubygems.org'
RAILS_VERSION = '~> 4.1.0'
gem 'rails', '~> 4.1.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'rack-proxy'
gem 'mysql2'
gem 'acts_as_list'
gem 'default_value_for'
gem 'haml', '~> 4.0'
gem 'jbuilder'
gem 'simple_form'
gem 'redcarpet'
gem 'gravtastic'
gem 'rest-client'
gem 'devise'
gem 'jquery-rails', '~> 2.1.4'
gem 'jquery-ui-rails'
gem 'i18n-js'
gem 'rails-i18n'
gem 'http_accept_language'
gem 'pusher'
gem 'airbrake'
gem 'hashie'
gem 'json'
gem 'dotenv-rails', groups: [:development, :test, :production, :staging]
# Treetop for the grammars
gem 'treetop'
# The Ruby Racer gives _much_ faster CoffeeScript compilation than simply
# using Node since it all happens within the Ruby process; compilation with
# Node fires up a new Node process for each source file, slowing things down
# considerably in development.
gem 'therubyracer', '>= 0.12'
gem 'libv8', '>= 3.16.14.3'
gem 'sass-rails', '~> 4.0'
gem 'coffee-rails', '>= 3.2.1'
gem 'compass-rails', '>= 1.0.0'
gem 'eco', '~> 1.0'
gem 'uglifier', '>= 1.0.3'
gem 'animation'
group :production, :staging do
gem 'unicorn'
gem 'newrelic_rpm'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'guard'
gem 'guard-rspec'
gem 'guard-shell'
gem 'rb-fsevent'
gem 'growl_notify'
# Deploy with Capistrano.
gem 'capistrano', '~> 3.0', require: false
gem 'capistrano-rbenv', '~> 2.0', require: false
gem 'capistrano-rails', '~> 1.1', require: false
gem 'capistrano-bundler', '~> 1.1', require: false
gem 'capistrano3-unicorn', '~> 0.2', require: false
end
group :test, :development do
# gem 'ruby-debug19', :require => 'ruby-debug'
# An effective alternative to ruby-debug; call "binding.pry" instead
# of "debugger"
gem 'pry', '>= 0.9.7'
# rspec-rails needs to be added to the development environment, otherwise
# the spec:* tasks won't be available when using rake.
gem 'rspec-rails', '~> 2.8'
gem 'factory_girl_rails'
gem 'launchy'
end
group :test do
gem 'database_cleaner'
gem 'shoulda-matchers', require: false
# Integration / acceptance testing.
gem 'capybara', '~> 2.1.0'
gem 'poltergeist'
end