forked from ethanp/fhw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
62 lines (55 loc) · 1.22 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
source 'https://rubygems.org'
ruby '2.2.0'
gem 'rails', '4.2.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
group :development, :test do
gem 'byebug'
gem 'web-console', '~> 2.0'
gem 'spring'
end
gem 'bootstrap-sass'
gem 'devise'
gem 'haml-rails'
gem 'pundit'
gem 'simple_form'
gem 'upmin-admin'
group :development do
gem 'better_errors'
gem 'guard-bundler'
gem 'guard-rails'
gem 'guard-rspec'
gem 'html2haml'
gem 'hub', require: nil
gem 'quiet_assets'
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 'faker'
gem 'rspec-rails'
gem 'sqlite3'
end
group :production do # for use with heroku
gem 'pg'
gem 'rails_12factor'
gem 'unicorn'
end
group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'launchy'
gem 'selenium-webdriver'
end
# Added by me
gem 'redcarpet' # enable markdown in haml
gem "paperclip", "~> 4.2" # file attachment for Active Record
gem 'jquery-ui-rails' # load jquery UI into all pages