forked from isaacbowen/heartbeat
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
65 lines (52 loc) · 1.17 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
source 'https://rubygems.org'
ruby '2.1.2'
gem 'rails', '4.1.1'
gem 'pg'
gem 'foreigner'
gem 'dalli'
gem 'sass-rails', '~> 4.0.3'
gem 'bootstrap-sass'
gem 'autoprefixer-rails'
gem 'font-awesome-sass'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'haml'
gem 'stamp'
gem 'numbers_and_words'
gem 'liquid'
# auth
gem 'devise'
gem 'omniauth-google-oauth2'
# if auto-required, this will monkeypatch the crap out of Enumerable
gem 'descriptive_statistics', require: false
gem 'newrelic_rpm'
group :development do
gem 'annotate'
gem 'spring'
gem 'spring-commands-rspec'
gem 'better_errors'
gem 'binding_of_caller'
gem 'guard'
gem 'guard-rspec'
end
group :development, :test do
gem 'dotenv-rails'
gem 'rspec-rails'
gem 'shoulda'
gem 'factory_girl_rails'
gem 'faker'
gem 'pry-rails'
gem 'capybara'
gem 'poltergeist'
gem 'database_cleaner'
gem 'timecop'
gem 'codeclimate-test-reporter', require: nil
gem 'quiet_assets'
# http://collectiveidea.com/blog/archives/2014/02/11/false-positives-on-travis-ci-with-codeclimate-simplecov/
gem 'simplecov', '~> 0.7.1', require: nil
end
group :test do
gem 'webmock'
gem 'vcr'
end