-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
59 lines (46 loc) · 1.2 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
source 'http://rubygems.org'
gem 'rails', '3.1.0.rc4'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# gem "oily_png" - "chunck_png"
gem 'sqlite3'
gem "devise", "~> 1.4.2"
gem "carrierwave", "~> 0.5.4"
gem "faraday", "~> 0.7.3"
gem 'responders', "~> 0.6.4"
gem 'simple_form', '~> 1.4.2'
gem 'compass', :git => "http://github.com/chriseppstein/compass.git", :branch => "rails31"
# Asset template engines
gem 'json'
gem 'sass-rails', "~> 3.1.0.rc"
gem 'coffee-script'
gem 'uglifier'
gem 'jquery-rails'
#to run javascript
gem "therubyracer", :require => "v8"
group :development, :test do
gem 'rspec-rails'
gem 'capybara', '~> 1.0.0'
gem 'factory_girl', '~> 1.3.3'
gem 'factory_girl_rails'
gem "autotest-rails"
gem "autotest-notification"
gem "autotest-fsevent"
gem "launchy"
gem "hermes", "~> 0.4.1"
gem "rcov"
end
group :development do
gem 'livereload', :git =>'https://github.com/mockko/livereload.git', :tag => 'v1.3'
gem "metric_fu"
gem "ruby-debug"
gem "ruby-prof"
# for query analysis
#gem "query_reviewer"
end
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'