forked from publiclab/plots2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
96 lines (81 loc) · 2.35 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
source 'https://rubygems.org'
ruby '2.1.2'
gem 'rails', '~> 3.2.20'
gem 'passenger'
gem 'rails-i18n', '~> 3.0.0'
# 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.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'execjs' # See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
# run with `bundle install --without development` to exclude these
group :development do
gem "nifty-generators"
gem 'byebug'
end
# run with `bundle install --without test` to exclude these
group :test do
gem 'test-unit'
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'
end
# run with `bundle install --without production` to exclude these
group :production do
gem "scrypt", "~> 1.2.1"
end
gem 'composite_primary_keys'
gem 'jquery-rails'
gem 'rdiscount', '1.6.8' # Markdown
gem 'will_paginate', '>= 3.0.6'
gem 'will_paginate-bootstrap', '>= 1.0.1'
gem 'georuby', '2.0'
gem 'geokit-rails'
gem 'rails_autolink'
gem 'rb-readline'
gem "paperclip", ">= 4.1.1"
gem "ruby-openid", :require => "openid"
gem "rack-openid"
gem "authlogic", "3.2.0"
gem "php-serialize", :require => "php_serialize"
gem 'less-rails', '~> 2.6'
gem 'progress_bar'
# RESTful API Support
gem 'grape'
gem 'grape-entity'
gem 'grape-swagger'
gem 'grape-swagger-entity'
gem 'grape-swagger-rails'
gem 'grape-swagger-ui'
gem 'rack-cors', :require => 'rack/cors'
gem 'mocha', '~> 1.1'
gem 'sunspot_rails'
gem 'sunspot_solr'
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'