forked from mark-craig/engineerswithoutborders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
85 lines (74 loc) · 1.96 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
source 'https://rubygems.org'
ruby '2.4.1'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.9'
gem 'sprockets-rails', :require => 'sprockets/railtie'
# Boostrap for styling
gem 'bootstrap'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'bootstrap-datepicker-rails'
gem 'rails4-autocomplete'
gem 'language_list'
gem 'turbolinks'
gem 'ransack'
gem 'jbuilder'
gem 'sdoc' # , '~> 0.4.0', group: :doc
gem 'jquery-turbolinks'
gem 'bcrypt'
gem 'cancancan'
gem 'simple_form'
gem 'devise'
gem 'rails-assets-tether'
gem 'kaminari'
gem 'rails_admin'
gem 'json'
gem 'rake' # , '10.4.2'
gem 'faker'
gem 'factory_girl_rails'
gem 'multi-select-rails'
gem 'magnific-popup-rails', '~> 1.1.0'
group :development, :test do
gem 'sqlite3'
gem 'byebug'
gem 'rspec-rails'
gem 'test-unit'
gem 'guard-rspec'
gem 'jasmine'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-commands-cucumber'
end
# Setup Cucumber, RSpec, autotest support
group :test do
gem 'simplecov', :require => false
gem 'cucumber-rails', :require => false
gem 'cucumber-rails-training-wheels'
# Basic imperative step defs
# required for Cucumber
gem 'database_cleaner'
gem 'autotest-rails'
gem 'selenium-webdriver'
# gem 'factory_girl_rails' # if using FactoryGirl
gem 'metric_fu' # collect code metrics
end
group :production do
# Use PostgreSQL in production (Heroku)
gem 'pg'
# Heroku specific production settings
gem 'rails_12factor'
end
gem "haml"
gem "chartkick"
gem "paperclip", git: "git://github.com/thoughtbot/paperclip.git"