forked from alexreisner/geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (35 loc) · 682 Bytes
/
Gemfile
File metadata and controls
42 lines (35 loc) · 682 Bytes
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
source "https://rubygems.org"
group :development, :test do
gem 'rake'
gem 'mongoid'
gem 'geoip'
gem 'rubyzip'
gem 'rails', '~>5.1.0'
gem 'test-unit' # needed for Ruby >=2.2.0
gem 'ip2location_ruby'
gem 'logger'
gem 'ostruct'
gem 'bigdecimal'
platforms :jruby do
gem 'jruby-openssl'
gem 'jgeoip'
end
end
group :test do
platforms :ruby, :mswin, :mingw do
gem 'sqlite3'
gem 'sqlite_ext'
end
gem 'webmock'
gem 'mutex_m'
platforms :ruby do
gem 'pg', '~> 1.5.9'
gem 'mysql2', '~> 0.5.4'
end
platforms :jruby do
gem 'jdbc-mysql'
gem 'jdbc-sqlite3'
gem 'activerecord-jdbcpostgresql-adapter'
end
end
gemspec