-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
154 lines (123 loc) · 4.07 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
source 'https://rubygems.org'
ruby '2.1.0'
gem 'rails', '4.0.2'
gem 'protected_attributes', '~> 1.0.5' # When upgrade to strong_parameters, remove this gem.
gem 'rails-observers', '~> 0.1.2'
gem 'sidekiq', '~> 2.17.0'
gem 'sinatra', '~> 1.4.3', require: false # required by sidekiq web interface mounted on /sidekiq
# Turns every field on a editable one
gem 'best_in_place', github: 'bernat/best_in_place', branch: 'rails-4'
# State machine for attributes on models
gem 'state_machine', require: 'state_machine/core'
# Database and data related
gem 'pg'
gem 'postgres-copy'
gem 'pg_search'
gem 'schema_plus'
gem 'schema_associations'
gem 'chartkick', '1.2.0'
# Payment engines
gem 'catarse_credit_card_net', github: 'luminopolis/catarse_credit_card_net', ref: '7413ebaba40505881e3366b26b4238981d82d67a'
gem 'catarse_echeck_net', github: 'luminopolis/catarse_echeck_net', ref: 'f5c6f32b857c5e651c55d4713d779100c3c10e4f'
gem 'catarse_paypal_express', github: 'luminopolis/catarse_paypal_express', ref: 'd2382b1c7c3cb5f230b901776aa08fe827acce98'
gem "authorize-net", "~> 1.5.2"
# Decorators
gem 'draper'
# Frontend stuff
gem 'slim-rails'
gem 'jquery-rails', '~> 3.0.4'
gem 'browser'
# Static pages
gem 'high_voltage'
# Authentication and Authorization
gem 'omniauth'
gem 'omniauth-twitter'
gem 'omniauth-google-oauth2', '0.2.1'
gem 'omniauth-linkedin'
gem 'omniauth-facebook', '1.5.1'
gem 'devise', '~> 3.1.2'
gem 'ezcrypto'
# See https://github.com/ryanb/cancan/tree/2.0 for help about this
# In resume: this version of cancan allow checking for authorization on specific fields on the model
gem 'cancan', github: 'ryanb/cancan', branch: '2.0', ref: 'f1cebde51a87be149b4970a3287826bb63c0ac0b'
# Email marketing
gem 'catarse_mailchimp', github: 'catarse/catarse_mailchimp', ref: '2ed4f39'
# HTML manipulation and formatting
gem 'simple_form', '~> 3.0.1'
gem 'auto_html', '~> 1.6.1'
gem 'kaminari'
# Uploads
gem 'carrierwave', '~> 0.9.0'
gem 'rmagick'
gem 'dropzonejs-rails', '~> 0.4.10'
# Other Tools
gem 'has_permalink'
gem 'to_xls'
gem 'ranked-model'
gem 'inherited_resources', '~> 1.4.1'
gem 'has_scope', '~> 0.6.0.rc'
gem 'spectator-validates_email', require: 'validates_email'
gem 'video_info', '~> 2.0.2'
gem 'pludoni-simple_captcha', require: 'simple_captcha', github: 'pludoni/simple-captcha', branch: 'rails-4'
gem 'geocoder'
# Payment
gem 'httpclient', '>= 2.2.5'
group :production do
gem 'google-analytics-rails'
# Gem used to handle image uploading
gem 'unf'
gem 'fog', '>= 1.3.1'
# Workers, forks and all that jazz
gem 'unicorn'
# Enabling Gzip on Heroku
# If you don't use Heroku, please comment the line below.
gem 'heroku-deflater', '>= 0.4.1'
# Make heroku serve static assets and loggin with stdout
gem 'rails_12factor'
# Monitoring with the new new relic
gem 'newrelic_rpm', '3.6.9.171'
end
group :development do
gem "letter_opener"
gem 'thin'
gem 'better_errors'
gem 'binding_of_caller'
end
group :test, :development do
gem 'rspec-rails', '~> 2.14.1'
gem 'jasmine-rails', '~> 0.4.6'
gem "pry" # rails consoleコマンドの機能を強化
gem "pry-doc"
gem "pry-rails"
gem "pry-debugger"
gem "spring", "~> 0.0.10"
gem 'binding_of_caller' # irb in better_errors
gem 'rails-footnotes', github:'tommireinikainen/rails-footnotes' #本家とは違うが、本家がマージしないので利用
gem 'awesome_print'
gem 'commands'
gem "turn", "0.8.2", require:false # Pretty printed test output
gem "quiet_assets"
end
group :test do
gem 'fakeweb'
gem 'launchy'
gem 'database_cleaner'
gem 'shoulda'
gem 'factory_girl_rails'
gem 'capybara', '~> 2.1.0'
gem 'coveralls', require: false
gem 'selenium-webdriver', '~> 2.35.1'
end
gem 'sass-rails', '~> 4.0.1'
gem 'coffee-rails', '~> 4.0.1'
gem 'compass-rails'
gem 'uglifier'
gem 'font-icons-rails', github: 'shorelabs/font-icons-rails', ref: '19da71315862d54f766645444accd4e9f5dab6e7'
gem 'zurb-foundation', '~> 4.3.2'
gem 'turbolinks'
gem 'nprogress-rails'
gem 'pjax_rails'
gem 'initjs', '~> 2.0.0'
# FIXME: Not-anymore-on-development
# Gems that are with 1 or more years on the vacuum
gem 'weekdays'