-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
41 lines (35 loc) · 889 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '3.2.13'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'debugger'
gem 'sextant'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'uglifier', '>= 1.0.3'
# installing the foundation SCSS gem http://foundation.zurb.com/docs/sass.html
# Add these gems
gem 'compass-rails'
gem 'zurb-foundation'
end
gem 'jquery-rails'
group :development, :test do
gem 'sqlite3'
gem 'rspec-rails'
gem 'faker'
gem 'factory_girl_rails'
gem 'shoulda-matchers'
gem 'simplecov'
gem 'capybara'
gem 'turn', '< 0.8.3' # pretty printing for tests
gem 'guard-rspec' # auto-run tests
gem 'launchy'
# gem 'selenium-webdriver'
gem 'capybara-webkit','~>1.0.0'
# gem 'ruby_gntp' # growl notify
gem 'rb-fsevent' #notifies when files change
# gem 'database_cleaner'
end
gem 'pry-rails', :group => :development
group :production do
gem 'pg'
end