Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP Feature/ra #1

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ source 'https://rubygems.org'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
# Use postgresql as the database for Active Record
gem 'pg', '~> 0.18'
gem 'activerecord-postgis-adapter'

# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
Expand All @@ -13,6 +15,15 @@ gem 'jbuilder', '~> 2.5'
# gem 'bcrypt', '~> 3.1.7'

gem 'dotenv'
gem 'faraday'

gem 'clockwork'
gem 'sidekiq'
gem 'sidekiq-symbols'

gem 'typhoeus'
gem 'nokogiri'
gem 'ox'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
Expand Down
34 changes: 34 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ GEM
activemodel (= 5.0.0.1)
activesupport (= 5.0.0.1)
arel (~> 7.0)
activerecord-postgis-adapter (4.0.0)
activerecord (~> 5.0.0)
rgeo-activerecord (~> 5.0.0)
activesupport (5.0.0.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
Expand All @@ -41,11 +44,19 @@ GEM
arel (7.1.2)
builder (3.2.2)
byebug (9.0.6)
clockwork (2.0.0)
activesupport
tzinfo
concurrent-ruby (1.0.2)
connection_pool (2.2.0)
debug_inspector (0.0.2)
diff-lcs (1.2.5)
dotenv (2.1.1)
erubis (2.7.0)
ethon (0.9.0)
ffi (>= 1.3.0)
faraday (0.9.2)
multipart-post (>= 1.2, < 3)
ffi (1.9.14)
globalid (0.3.7)
activesupport (>= 4.1.0)
Expand All @@ -67,9 +78,11 @@ GEM
mini_portile2 (2.1.0)
minitest (5.9.1)
multi_json (1.12.1)
multipart-post (2.0.0)
nio4r (1.2.1)
nokogiri (1.6.8.1)
mini_portile2 (~> 2.1.0)
ox (2.4.4)
pg (0.19.0)
rack (2.0.1)
rack-test (0.6.3)
Expand Down Expand Up @@ -101,6 +114,11 @@ GEM
rb-fsevent (0.9.7)
rb-inotify (0.9.7)
ffi (>= 0.5.0)
redis (3.3.0)
rgeo (0.5.3)
rgeo-activerecord (5.0.0)
activerecord (~> 5.0.0)
rgeo (~> 0.3)
rspec-core (3.5.2)
rspec-support (~> 3.5.0)
rspec-expectations (3.5.0)
Expand All @@ -118,6 +136,12 @@ GEM
rspec-mocks (~> 3.5.0)
rspec-support (~> 3.5.0)
rspec-support (3.5.0)
sidekiq (4.1.1)
concurrent-ruby (~> 1.0)
connection_pool (~> 2.2, >= 2.2.0)
redis (~> 3.2, >= 3.2.1)
sidekiq-symbols (0.1.1)
sidekiq
spring (2.0.0)
activesupport (>= 4.2)
spring-watcher-listen (2.0.1)
Expand All @@ -132,6 +156,8 @@ GEM
sprockets (>= 3.0.0)
thor (0.19.1)
thread_safe (0.3.5)
typhoeus (1.0.2)
ethon (>= 0.9.0)
tzinfo (1.2.2)
thread_safe (~> 0.1)
web-console (3.3.1)
Expand All @@ -147,15 +173,23 @@ PLATFORMS
ruby

DEPENDENCIES
activerecord-postgis-adapter
byebug
clockwork
dotenv
faraday
jbuilder (~> 2.5)
listen (~> 3.0.5)
nokogiri
ox
pg (~> 0.18)
rails (~> 5.0.0, >= 5.0.0.1)
rspec-rails
sidekiq
sidekiq-symbols
spring
spring-watcher-listen (~> 2.0.0)
typhoeus
tzinfo-data
web-console

Expand Down
Loading