forked from otwcode/otwarchive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
131 lines (98 loc) · 2.62 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
source 'http://rubygems.org'
ruby '1.9.3'
gem 'bundler'
gem 'rails', '3.2.18'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# Database
# gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'mysql2'
# Version of redis-rb gem
# We are currently running Redis 2.6.4 (12/6/2012)
gem 'redis', ">=3.0"
gem 'redis-namespace'
# Here are all our application-specific gems
gem 'will_paginate', '>=3.0.2'
gem 'acts_as_list'
gem 'akismetor'
gem 'httparty'
gem 'htmlentities'
gem 'whenever', '~>0.6.2', :require => false
gem 'nokogiri', '>=1.4.2'
gem 'mechanize'
gem 'sanitize'
gem 'rest-client', :require => 'rest_client'
gem 'resque', '>=1.14.0'
gem 'resque_mailer'
gem 'resque-scheduler', :require => 'resque_scheduler'
#gem 'daemon-spawn', :require => 'daemon_spawn'
gem 'tire'
gem 'elasticsearch'
gem 'aws-sdk'
gem 'css_parser'
gem 'cocaine'
gem 'paperclip'
# for looking up image dimensions quickly
gem 'fastimage'
gem 'authlogic'
gem 'bcrypt'
# A highly updated version of the authorization plugin
gem 'permit_yo'
# fix for annoying UTF-8 error messages as per this:
# http://openhood.com/rack/ruby/2010/07/15/rack-test-warning/
gem "escape_utils"
gem 'jquery-rails', '>= 0.2.6'
gem 'valium'
gem 'best_in_place'
gem 'timeliness'
gem 'rpm_contrib'
# for generating graphs
gem "google_visualr", ">= 2.1"
# Copycopter to aid translation
# gem 'copycopter_client', '~> 2.0.1'
# Globalize for translations
gem 'globalize', '~> 3.1.0'
# Coveralls for code test coverage
gem 'coveralls', require: false
# Add a clean notifier that shows we are on dev or test
gem "rack-dev-mark"
#Phrase-app
gem 'phrase'
# For URL mangling
gem 'addressable'
# For controlling application behavour dynamically
gem 'rollout'
# Place the New Relic gem as low in the list as possible, allowing the
# frameworks above it to be instrumented when the gem initializes.
gem 'newrelic_rpm', "3.9.3.241"
gem 'newrelic-redis'
group :test do
gem 'rspec-rails', '>=2.6.0'
gem 'pickle'
gem 'shoulda'
gem 'factory_girl'
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails', require: false
gem 'gherkin'
gem 'launchy' # So you can do Then show me the page
gem 'delorean'
gem 'faker'
# Record and replay data from external URLs
gem "vcr", "~> 2.5.0"
gem 'webmock', '~> 1.8.8'
# Code coverage
gem 'simplecov', :require => false
gem 'email_spec'
end
group :test, :development do
gem 'pry'
end
# Deploy with Capistrano
gem 'capistrano-gitflow_version', '>=0.0.3', :require => false
gem 'rvm-capistrano'
group :production do
# Use unicorn as the web server
gem 'unicorn', :require => false
gem "memcache-client"
end