-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
76 lines (57 loc) · 1.68 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
source 'http://rubygems.org'
gem 'rails', '4.2.11.1'
## DATABASES
gem 'mysql2', '0.5.3'
## RAILS DEPENDENCIES
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'therubyracer', platforms: :ruby
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
## TWITTER BOOTSTRAP, SIMPLE_FORM & FONTAWESOME
gem "tilt", "1.4.1"
gem 'jquery-rails', "4.0.3"
gem 'jquery-ui-rails', "4.2.0"
gem 'less-rails', "2.8.0"
gem 'twitter-bootstrap-rails', "3.2.2"
gem 'simple_form', "3.1.0"
gem "font-awesome-rails", '4.6.3.1'
## TOOLS AND PLUGINS
gem 'rufus-scheduler', "3.0.9"
gem 'ipaddress', "0.8.0"
gem 'carrierwave', "1.3.2"
gem "mini_magick", "4.9.4"
gem 'remotipart', '~> 1.2'
gem 'best_in_place', '3.0.3'
# DEPLOYMENT
gem 'capistrano', '3.8.0'
gem 'capistrano-rails', '1.2.3'
gem 'capistrano-bundler', "1.2.0"
gem 'capistrano-rbenv', "2.1.0"
group :development, :test do
gem 'sqlite3', "1.3.10"
gem "better_errors", "2.8.0"
gem "binding_of_caller", "0.7.2"
## defaults
gem 'byebug', "3.5.1" # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'spring', "1.3.6"
## testing specific
gem 'factory_girl_rails', "4.5.0"
gem "minitest", "5.5.1"
gem 'shoulda', "3.5"
gem 'shoulda-matchers', "2.8.0"
gem 'shoulda-context', "1.2.1"
gem 'database_cleaner', "1.2.0"
## development helpers
gem "populator", git: "https://github.com/ryanb/populator.git"
gem "faker", "1.4.3"
## user sim testing
gem "capybara", "2.1.0"
## autoreload
gem "guard-minitest", "2.4.4"
gem 'guard-livereload', "2.4.0", require: false
gem "rack-livereload", "0.3.16"
end
gem 'web-console', '~> 2.0', group: :development
gem 'puma'