-
Notifications
You must be signed in to change notification settings - Fork 47
/
Gemfile
54 lines (48 loc) · 1.26 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
source 'https://rubygems.org'
gem 'rails', '~> 4.2.5'
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'jquery-turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'haml'
gem 'storytime', '~> 2.0.0'
gem 'devise'
gem 'devise-i18n-views'
gem 'ransack'
gem 'simple_form_ransack'
gem 'simple_form_autocomplete', git: "https://github.com/apohllo/simple_form_autocomplete.git",
branch: "create-new-values-in-autocomplete"
gem 'postgres_ext'
gem 'prawn', '~> 2.0', '>= 2.0'
gem 'paper_trail'
gem 'twitter-bootstrap-rails'
gem 'impressionist'
gem 'fog', '~> 1.36.0', require: 'fog'
gem 'fog-aws', '~> 1.4.1'
gem 'font-awesome-sass', '~> 4.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
group :development, :test do
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
#gem 'web-console', '~> 2.0'
gem 'spring'
gem 'capybara'
gem 'capybara-email'
gem 'launchy'
gem 'rspec-rails', '~> 3.0'
gem 'rubocop', require: false
gem 'overcommit'
gem 'timecop'
gem 'poltergeist'
gem 'factory_girl'
end
group :development do
gem 'web-console', '~> 2.0'
end