forked from buethling/story_mode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
39 lines (32 loc) · 736 Bytes
/
Copy pathGemfile
File metadata and controls
39 lines (32 loc) · 736 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
39
source :rubygems
gem 'rails', '3.1.0'
gem 'sqlite3-ruby', '1.3.3', :require => 'sqlite3'
gem 'gravatar_image_tag', '1.0.0'
gem 'will_paginate', '3.0.0'
gem 'jquery-rails'
group :assets do
gem 'sass-rails', " ~> 3.1.0"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
end
group :development do
gem 'faker', '1.0.0'
end
group :production do
gem "pg"
end
group :test do
gem 'simplecov'
gem 'capybara'
end
group :development, :test do
gem 'guard'
gem 'guard-rspec'
gem 'guard-rails-assets'
gem 'guard-bundler'
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'rb-fchange', :platforms => [:mswin, :mingw]
gem 'rb-notifu', :platforms => [:mswin, :mingw]
gem 'win32console', :platforms => [:mswin, :mingw]
end