This repository was archived by the owner on May 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGemfile
More file actions
71 lines (63 loc) · 1.71 KB
/
Gemfile
File metadata and controls
71 lines (63 loc) · 1.71 KB
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
source 'https://rubygems.org'
ruby '2.1.2'
gem 'rails', '~> 4.2.0'
gem 'pg', '~> 0.18.4'
gem 'sass-rails'
gem 'uglifier', '~> 2.5.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails', '~> 4.0.3'
gem 'jquery-turbolinks', '~> 2.1.0'
gem 'turbolinks', '~> 2.5.2'
gem 'jbuilder', '~> 2.2.11'
gem 'pony', '~> 1.11'
gem 'devise', '~> 4.7.1'
gem 'friendly_id', '~> 5.1.0'
gem 'puma', '~> 2.11.1'
gem 'font-awesome-rails', '~> 4.3.0.0'
gem 'cancancan', '~> 1.10.0'
gem 'mail_form', '~> 1.5.0'
gem 'nav_lynx', '~> 1.1.1'
gem 'figaro', '~> 1.1.0'
gem 'metamagic', '~> 3.1.6'
gem 'hologram', '~> 1.3.1'
gem 'twitter'
gem "github_api"
gem 'bourbon';
gem 'neat';
gem 'bitters';
gem 'high_voltage'
gem 'rdiscount'
gem 'clrs';
# For super light CMS
gem 'clearance'
gem 'redcarpet'
group :development do
gem 'quiet_assets', '~> 1.1.0'
gem 'spring'
end
group :production do
gem 'rails_12factor'
gem 'rails_log_stdout', github: 'heroku/rails_log_stdout'
end
group :development, :test do
gem 'rb-readline'
gem 'pry'
gem 'pry-remote'
gem 'pry-rails'
gem 'pry-nav'
gem 'awesome_print'
gem 'guard'
gem 'guard-bundler'
gem 'guard-compass'
gem 'guard-sass'
gem 'guard-livereload'
gem 'guard-puma'
end
group :test do
gem 'database_cleaner', '~> 1.3.0'
gem 'rspec-rails', '~> 3.0.1'
gem 'capybara', '~> 2.3.0'
gem 'poltergeist', '~> 1.5.1'
gem 'launchy', '~> 2.3.0'
gem 'timecop', '~> 0.7.1'
end