-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
59 lines (43 loc) · 1.52 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
source "http://rubygems.org"
# Declare your gem's dependencies in voluntary.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
gem 'voluntary', github: 'volontariat/voluntary'
gem 'voluntary_recruiting', github: 'volontariat/voluntary_recruiting'
# core
gem 'rack-cors', '~> 0.2.4', require: 'rack/cors'
gem 'thin', '~> 1.3.1', require: false
# model
gem 'settingslogic', git: 'https://github.com/binarylogic/settingslogic.git'
# view
gem 'acts_as_markup', git: 'git://github.com/vigetlabs/acts_as_markup.git'
gem 'recaptcha', require: 'recaptcha/rails'
# queue
gem 'sinatra', require: false
# URIs and HTTP
gem 'addressable', '~> 2.2', require: 'addressable/uri'
# test
gem 'jasmine', git: 'https://github.com/pivotal/jasmine-gem.git'
group :development do
gem 'mysql2', '~> 0.3.13'
gem 'linecache', '0.46', platforms: :mri_18
gem 'capistrano', '~> 2.15.5', require: false
gem 'capistrano_colors', '~> 0.5.5', require: false
gem 'capistrano-ext', '~> 1.2.1', require: false
gem 'yard', '~> 0.7', require: false
end
group :test do
gem 'cucumber', '~> 1.3.18'
gem 'cucumber-rails', '~> 1.4.0', require: false
gem 'webmock', '~> 1.8.11', require: false
gem 'simplecov', '~> 0.7.1', require: false
end
group :test, :cucumber do
gem 'codeclimate-test-reporter', require: nil
end
group :development, :test do
gem 'pry-byebug', '~> 3.1.0'
gem 'spring'
end
gem 'therubyracer', '~> 0.12.0', platforms: :ruby