-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (34 loc) · 830 Bytes
/
Gemfile
File metadata and controls
38 lines (34 loc) · 830 Bytes
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
source 'https://rubygems.org'
gem 'rails', '4.2.1'
gem 'andand'
gem 'best_in_place' # Allows inline editing
gem 'cms-fortress', :path => 'vendor/gems/cms-fortress-1.3.9'
gem 'coffee-rails', '~> 4.1.0'
gem 'comfortable_mexican_sofa', '~> 1.12.0'
gem 'comfy_blog', '~> 1.12.0'
gem 'jbuilder', '~> 2.0'
gem 'jquery-rails'
# gem 'jquery-ui-rails'
gem 'bootstrap-datepicker-rails'
gem 'petfinder'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'simple_form'
gem 'social_share'
gem 'turbolinks'
gem 'uglifier', '>= 1.3.0'
group :development do
gem 'pry-rails'
end
group :development, :test do
gem 'byebug'
gem 'database_cleaner'
gem 'dotenv-rails'
gem 'factory_girl_rails', '~> 4.0'
gem 'pry'
gem 'pry-byebug'
gem 'rspec-rails', '~> 3.0'
gem 'spring'
gem 'web-console', '~> 2.0'
end