forked from xaviershay/enki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
72 lines (59 loc) · 1.61 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
source 'https://rubygems.org'
gem 'rails', '~> 4.2.4'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails'
platforms :ruby do
# gem 'pg'
gem 'sqlite3'
end
platforms :jruby do
# The stable version has not yet supported Rails 4
gem 'activerecord-jdbcsqlite3-adapter', '1.3.0.beta2'
gem 'trinidad'
gem 'jruby-openssl'
end
gem 'jquery-rails'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'
# Bundle the extra gems:
gem 'RedCloth', '~> 4.2.9', :require => 'redcloth'
gem 'ruby-openid', :require => 'openid'
gem 'rack-openid', :require => 'rack/openid'
gem 'chronic'
gem 'coderay', '~> 1.0.5'
gem 'lesstile', '~> 1.1.0'
gem 'formtastic'
gem 'will_paginate', '~> 3.0.2'
gem 'exception_notification', '~> 2.5.2'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'omniauth-openid'
gem 'acts-as-taggable-on', '~> 3.5'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :test do
gem 'database_cleaner'
gem 'cucumber-rails', :require => false
gem 'cucumber-websteps', :require => false
gem 'factory_girl'
gem 'rspec'
gem 'rspec-activemodel-mocks'
gem 'rspec-collection_matchers'
gem 'nokogiri', '~> 1.6.0'
gem 'webrat'
end
# Uncomment if you want easy profiling in development.
#group :development do
# gem 'rack-mini-profiler'
#end
group :development, :test do
gem 'rspec-rails'
end