-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
86 lines (78 loc) · 2.46 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
source 'https://rubygems.org'
ruby '2.0.0'
#ruby "1.9.3", :engine => "rbx", :engine_version => "2.0.0.rc1"
gem 'rails', '4.0.0'
#gem 'protected_attributes'
group :production do
#heroku only has PostgreSQL
gem 'puma'
gem "pg"
gem 'dalli' #managed access to memcache on heroku
gem 'newrelic_rpm'
gem 'rails_12factor'
gem 'heroku_rails_deflate'
end
group :test, :development do
gem 'awesome_print'
gem 'sqlite3'
gem 'turn'
gem 'minitest-spec-rails'
gem 'capybara'
gem 'capybara_minitest_spec' # for capybara integration and spec matchers
gem 'poltergeist' # for headless javascript tests
gem 'minitest-rails-capybara'
gem 'turn' # for prettier test output
gem 'puma'
gem 'pry'
gem 'pry-rails'
gem 'pry-doc'
gem 'interactive_editor'
gem "quiet_assets", ">= 1.0.1"
gem 'guard'
gem 'guard-rails'
gem 'guard-minitest'
gem 'guard-annotate'
gem "guard-puma"
gem 'guard-bundler', "~> 1.0.0"
gem 'guard-migrate'
gem 'brakeman'
gem 'guard-brakeman'
#gem 'guard-test'
gem "better_errors"
gem "binding_of_caller"
gem 'annotate'
#gem "literate_randomizer"
# Filesystem notifiers
gem 'ruby_gntp' # Growl notification protocol
#gem 'libnotify'
gem 'rb-inotify', :require => false
gem 'rb-fsevent', :require => false
gem 'rb-fchange', :require => false
end
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.0.3'
#gem 'turbolinks'
gem "sprockets-rails", :require => "sprockets/railtie"
gem 'jquery-rails'
gem 'madmimi'
gem "haml-rails", ">= 0.4"
gem "html2haml", ">= 1.0.1", :group => :development
#gem "database_cleaner", ">= 1.0.0.RC1", :group => :test
gem "email_spec", ">= 1.4.0", :group => :test
gem "bootstrap-sass", ">= 2.3.0.0"
gem "omniauth", ">= 1.1.3"
gem "omniauth-github"
#gem "simple_form", ">= 2.1.0"
gem "figaro", ">= 0.6.3"
#gem 'deep_merge', '1.0', :git => 'git://github.com/peritor/deep_merge.git'
gem 'friendly_id', :git => 'git://github.com/FriendlyId/friendly_id.git'#, :branch => 'rails4'
gem 'rails_admin', :git => 'git://github.com/sferik/rails_admin.git' #, :branch => 'rails-4'
gem "devise", :git => 'git://github.com/plataformatec/devise.git' #, :branch => 'rails4'
gem 'paperclip', :git => "git://github.com/thoughtbot/paperclip.git"#, :branch => 'rails-4'
gem 'fog'
gem 'tilt' # used by haml to provide Markdown rendering
gem 'redcarpet' #markdown processor
gem 'stamp'
#gem 'paper_trail', :git => '[email protected]:airblade/paper_trail.git', :branch => 'rails4'
gem 'icalendar'