forked from algolia/hn-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
48 lines (45 loc) · 1014 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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.0'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 1.2'
gem 'figaro'
gem 'haml-rails'
gem 'bourbon'
gem 'therubyracer'
gem 'hogan_assets'
gem 'jquery-cookie-rails'
gem 'rest_client'
gem 'algoliasearch-rails'
gem 'curb'
gem 'aws-s3'
gem 'open_uri_redirections'
gem 'simple_enum'
gem 'whenever'
gem 'thin'
gem 'rails-api'
gem 'active_model_serializers', github: "rails-api/active_model_serializers"
gem 'delayed_job_active_record'
gem 'bluepill'
gem 'groupdate', git: 'https://github.com/mieko/groupdate.git', branch: 'sqlite3'
group :development do
gem 'sqlite3'
gem 'better_errors'
gem 'binding_of_caller', :platforms=>[:mri_19, :mri_20, :rbx]
gem 'html2haml'
gem 'quiet_assets'
gem 'rails_layout'
end
group :production do
gem 'mysql2'
end
group :development, :test do
gem 'factory_girl_rails'
end
group :test do
gem 'capybara'
gem 'minitest-spec-rails'
gem 'minitest-wscolor'
end