-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
97 lines (86 loc) · 1.98 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
source 'https://rubygems.org'
ruby '2.2.4'
gem 'rails', '4.2.4'
### JS ###
gem 'coffee-script-source'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'coffee-rails', '~> 4.1.0'
gem 'jbuilder', '~> 2.0'
gem 'turbolinks'
gem 'rails-backbone'
gem 'underscore-string-rails'
gem 'underscore-rails'
gem 'jquery-mousewheel-rails'
gem 'mwheelintent-rails'
gem 'audiojs-rails'
gem 'gmaps4rails'
gem 'gon'
### Styles ###
gem 'bootstrap-sass', '~> 3.3.6'
gem 'sass-rails', '~> 5.0', '>= 5.0.4'
gem 'will_paginate'
gem 'will_paginate-bootstrap'
### HTML ###
gem 'simple_form'
gem 'slim-rails'
gem 'html2slim', '~> 0.2.0'
### Model ###
gem 'paperclip', '~> 4.2'
gem 'acts_as_list'
gem 'youtube_id'
gem 'activeadmin', '~> 1.0.0.pre2'
gem 'devise'
gem 'cancancan'
gem 'wannabe_bool'
### DB ###
gem 'pg'
gem 'annotate'
gem 'faker'
gem 'populator', git: "https://github.com/ryanb/populator.git"
gem 'globalize', '~> 5.0.0'
gem 'globalize-accessors'
gem 'geocoder'
gem 'http_accept_language'
group :development, :test do
gem 'byebug'
end
group :development do
gem 'web-console', '~> 2.0'
gem 'spring'
end
group :development do
gem 'better_errors'
gem 'quiet_assets'
gem 'colorize'
gem 'bullet'
gem 'capistrano', '~> 3.4'
gem 'capistrano-bundler', '~> 1.1', '>= 1.1.4'
gem 'capistrano-rails', '~> 1.1', '>= 1.1.6'
gem 'capistrano-rails-console'
gem 'capistrano-rails-db'
gem 'capistrano-passenger', require: false, github: 'capistrano/passenger'
gem 'capistrano-rbenv', '~> 2.0', '>= 2.0.4'
gem 'guard-bundler'
gem 'guard-rails'
gem 'guard-rspec'
gem 'guard-livereload', '~> 2.5', require: false
gem 'rails_layout'
gem 'rb-fchange', require: false
gem 'rb-fsevent', require: false
gem 'rb-inotify', require: false
gem 'spring-commands-rspec'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'pry-rails'
gem 'pry-rescue'
gem 'pry-remote'
gem 'rspec-rails'
end
group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'launchy'
gem 'selenium-webdriver'
end