forked from alexreisner/geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
43 lines (35 loc) · 731 Bytes
/
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
source "https://rubygems.org"
group :development, :test do
gem 'rake'
gem 'mongoid'
gem 'bson_ext', platforms: :ruby
gem 'geoip'
gem 'rubyzip'
gem 'rails', '~>5.1.0'
gem 'test-unit' # needed for Ruby >=2.2.0
platforms :jruby do
gem 'jruby-openssl'
gem 'jgeoip'
end
platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'rubysl-test-unit'
end
end
group :test do
platforms :ruby, :mswin, :mingw do
gem 'sqlite3', '~> 1.4.2'
gem 'sqlite_ext', '~> 1.5.0'
end
gem 'webmock'
platforms :ruby do
gem 'pg', '~> 0.11'
gem 'mysql2', '~> 0.3.11'
end
platforms :jruby do
gem 'jdbc-mysql'
gem 'jdbc-sqlite3'
gem 'activerecord-jdbcpostgresql-adapter'
end
end
gemspec