-
Notifications
You must be signed in to change notification settings - Fork 23
/
Gemfile
55 lines (41 loc) · 1.06 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
source 'https://rubygems.org'
gem 'rails', '4.2.3'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg', '0.19.0'
group :development, :test do
gem 'rspec-rails'
gem 'capybara'
gem 'poltergeist'
end
gem 'factory_girl_rails'
gem 'test-unit'
gem 'sass-rails'
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier'
gem 'jquery-rails'
gem 'rubyzip'
gem 'roo'
gem 'httparty'
gem 'nokogiri'
gem 'formtastic'
gem "rabl", "~> 0.9.3"
gem 'oj'
gem 'amatch'
gem 'friendly_id'
gem 'twitter'
gem 'lightbox2-rails'
gem 'refinerycms', '3.0.5'
gem 'refinerycms-wymeditor', '~> 1.0.0'
gem 'refinerycms-authentication-devise'
gem 'refinerycms-blog', git: 'https://github.com/refinery/refinerycms-blog', branch: 'master'
# To use ActiveModel has_secure_password
gem 'bcrypt', '3.1.11', :require => 'bcrypt'
# timezone database
gem 'tzinfo-data'
# tweet parsing
gem 'twitter-text'
# exception notifications via email
gem 'exception_notification'