forked from burnleew/site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
105 lines (82 loc) · 3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
source 'http://rubygems.org'
gem 'rails', '3.0.5'
gem 'formtastic', '~> 1.2.3'
gem 'carmen', '0.2.4'
gem 'ajaxful_rating', '~> 3.0.0.beta3'
gem 'acts-as-taggable-on'
gem 'rack-cache', :require => 'rack/cache'
gem 'dragonfly', '0.8.2'
gem 'uuidtools', '~> 2.1.2'
gem 'acts_as_commentable', '3.0.1'
gem 'fastercsv', '1.5.4'
gem 'gravtastic'
gem 'mmcopyrights'
gem 'friendly_id_globalize3', '~> 3.2.1'
gem 'decent_exposure', '~> 1.0'
gem 'RedCloth', '~> 4.2'
gem 'jammit', '~> 0.6'
gem 'client_side_validations', '~> 3.0.4'
gem 'ri_cal', '~> 0.8.8'
gem 'savon', '0.9.1'
gem 'require_relative', '1.0.1'
gem 'omniauth', '0.2.6'
gem 'oa-openid', :require => 'omniauth/openid'
gem 'faraday_middleware','0.6.3'
group :development, :test do
gem 'sqlite3-ruby', '~> 1.3.2', :require => 'sqlite3'
gem 'awesome_print', '~> 0.4.0'
gem 'ruby-debug', '~> 0.10.4'
#gem 'ruby-debug19', '~> 0.11.6'
end
group :production do
gem 'mysql2', '0.2.7'
gem 'unicorn', '3.6.0'
gem 'rack-ssl', :require => 'rack/ssl'
end
group :test do
gem 'shoulda', '~> 2.11.3'
gem 'factory_girl_rails', '~> 1.0.1'
gem 'rails3-generators', '~> 0.17.2'
gem 'jasmine'
#gem 'capybara-envjs'
end
# REFINERY CMS ================================================================
# Specify the Refinery CMS core:
#gem 'refinerycms', '= 0.9.9.15'
#Branch off of 0.9.9.15 with fix for _path instead of _url for SSL support
#And with fix for erroneous call to '.url' method on object that doesn't respond to that
#And with fix that doesn't assume cache strategy is file/directory backed
#And with Google Analytics _trackPageLoadTime
#And switching defaults that would otherwise say 'Company Name' to 'Strange Loop'
gem 'refinerycms', :git => "git://github.com/strangeloop/refinerycms.git", :branch => 'path_not_url_ssl_fix', :ref => 'aeaaef2078903cb9ec9f8b80f45aeb335f7acc13'
#gem 'refinerycms', :path => "~/devl/tsl/tsl-refinerycms"
group :development, :test do
# RSpec
gem 'rspec-rails', '~> 2.5.0'
# Cucumber
gem 'capybara', '~> 1.0.0'
gem 'database_cleaner', '~> 0.6.0'
gem 'cucumber-rails', '~> 1.0.2'
gem 'launchy', '~> 0.3.7'
gem 'gherkin'
gem 'spork', '>= 0.9.0.rc4' unless Bundler::WINDOWS
gem 'rack-test', '~> 0.5.6'
gem 'json_pure', '~> 1.5.1'
# Factory Girl
#gem 'factory_girl'
gem "#{'j' if RUBY_PLATFORM == 'java'}ruby-prof" unless defined?(RUBY_ENGINE) and RUBY_ENGINE == 'rbx'
gem 'ZenTest', '4.6.0'
# Autotest
gem 'autotest', '4.4.6'
gem 'autotest-rails', '4.1.0'
gem 'autotest-notification', '2.3.3'
end
# END REFINERY CMS ============================================================
# USER DEFINED
# Specify additional Refinery CMS Engines here (all optional):
gem 'refinerycms-news', '1.0.1' #Use this version specifically
# gem 'refinerycms-search', '~> 0.9.8'
# END USER DEFINED
gem 'refinerycms-proposals', '1.0', :path => 'vendor/engines'
gem 'refinerycms-conference_sessions', '1.0', :path => 'vendor/engines'
gem 'refinerycms-sponsorships', '1.0', :path => 'vendor/engines'