forked from publiclab/plots2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
115 lines (95 loc) · 2.94 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
source 'https://rubygems.org'
gem 'rails', '~> 4.1.16'
gem 'activerecord-session_store'
gem 'protected_attributes'
gem 'passenger'
gem 'rails-i18n', '~> 4.0.0'
# gem 'responders', '~> 2.0' # for Rails 4.2
gem 'turbolinks'
# run with `bundle install --without production` or `bundle install --without mysql` to exclude this
group :mysql, :production do
gem 'mysql2', '~> 0.3.20'
# mysql 0.4.3+ causes a version mismatch, apparently, and demands 'activerecord-mysql2-adapter'
end
# ships with sqlite set up for easy setup during development
# run with `bundle install --without development` or `bundle install --without sqlite` to exclude this
group :sqlite, :development do
gem 'sqlite3'
end
#group :postgresql do
# gem "activerecord-postgresql-adapter"
#end
# Gems used only for assets and not required in production environments by default.
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'execjs' # See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
# run with `bundle install --without development` to exclude these
group :development do
gem "letter_opener"
gem "nifty-generators"
gem 'byebug'
gem 'rubocop', '~> 0.52.1', require: false
end
# run with `bundle install --without test` to exclude these
group :test, :development do
gem 'test-unit'
gem 'rails-perftest'
gem 'minitest-reporters', '~> 1.1.19'
gem 'rake', '~> 10.5.0'
# gems to test RESTful API
gem 'rest-client'
gem 'rspec'
gem 'json_expressions'
gem 'timecop'
gem 'jasmine-rails'
gem 'jasmine-jquery-rails'
gem 'coveralls', require: false
gem 'ci_reporter_test_unit'
end
# run with `bundle install --without production` to exclude these
group :production do
gem "scrypt", "~> 3"
end
gem 'composite_primary_keys'
gem 'jquery-rails'
gem 'rdiscount', '~> 2.2', '>= 2.2.0.1' # Markdown
gem 'will_paginate', '>= 3.0.6'
gem 'will_paginate-bootstrap', '>= 1.0.1'
# could be deprecated:
gem 'georuby', '2.0'
gem 'geokit-rails'
gem 'rails_autolink'
gem 'rb-readline'
gem "paperclip", "~> 4.2.0"
gem "ruby-openid", :require => "openid"
gem "rack-openid"
gem "authlogic", "~> 3.5.0"
gem 'authlogic-oid'
gem "php-serialize", :require => "php_serialize"
gem 'less-rails', '~> 2.6'
gem 'progress_bar'
gem 'impressionist'
gem "recaptcha", require: "recaptcha/rails"
# RESTful API Support
gem 'grape'
gem 'grape-entity'
gem 'grape-swagger', '~> 0.25.3' # later versions require
gem 'grape-swagger-entity', '= 0.1.5' # Ruby 2.2 or later
gem 'grape-swagger-rails'
gem 'grape-swagger-ui'
gem 'rack-cors', :require => 'rack/cors'
gem 'mocha', '~> 1.1'
gem 'geocoder'
gem "i18n-js", ">= 3.0.0.rc11"
gem 'http_accept_language'
# The default friendly_id version compatible with Rails 3 is v4.0
gem 'friendly_id'
gem 'jbuilder'
#gem 'strong_parameters'
# Pin mustermann to Ruby 2.1 compatible
gem 'mustermann' , '~> 0.4'
#OAuth Based login
gem 'omniauth', '~> 1.3', '>= 1.3.1'
gem 'omniauth-facebook', '~> 3.0'