forked from johndel/Rails-Simple-CMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
executable file
·53 lines (45 loc) · 1.31 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
source 'https://rubygems.org'
gem 'rack', '>= 1.4.1'
gem 'rails', '>= 3.2.11'
gem 'mysql2', '>= 0.3.11'
gem 'devise', '>= 2.1.2'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '>= 3.2.5'
gem 'coffee-rails', '>= 3.2.2'
gem 'uglifier', '>= 1.3.0'
end
gem 'jquery-rails', '>= 2.1.4'
gem 'jquery-fileupload-rails'
gem 'paperclip', '>= 3.3.1'
gem 'capistrano', '>= 2.13.5'
gem 'thor'
# Javascript Libraries for better / easier update
gem 'bootstrap-sass', '>= 2.2.1.1'
gem 'compass-rails'
group :test, :development do
gem 'factory_girl_rails', '>= 4.1.0'
gem 'capybara', '>= 2.0.1'
gem 'guard-rspec', '>= 2.3.0'
gem 'rspec-rails', '>= 2.12.0'
gem 'shoulda-matchers', '>= 1.4.2'
gem 'spork', '>= 0.9.2'
gem 'guard-spork', '>= 1.4.0'
gem 'launchy', '>= 2.1.2'
gem 'pry-remote', '>= 0.1.6'
gem 'pry-rails', '>= 0.2.2'
gem 'pry-stack_explorer', '>= 0.4.7'
gem 'pry-debugger', '>= 0.2.0'
gem 'simplecov', '>= 0.7.1', :require => false
gem 'database_cleaner'
gem 'rb-inotify' unless RUBY_PLATFORM.match(/darwin/)
end
group :development do
gem 'rails_best_practices', '>= 1.13.1'
gem 'brakeman', '>= 1.8.2'
gem 'letter_opener', '>= 1.0.0'
gem 'bullet', '>= 4.2.0'
gem 'rack-mini-profiler', '>= 0.1.23'
gem 'better_errors'
end