added sidekiq gem and a route to /sidekiq (commented) for devel
This commit is contained in:
parent
b8155ea091
commit
f7f17a2908
2 changed files with 11 additions and 2 deletions
9
Gemfile
9
Gemfile
|
@ -7,7 +7,7 @@ gem 'rails', '3.2.17'
|
|||
# gem 'rails', :git => 'git://github.com/rails/rails.git'
|
||||
|
||||
#gem 'watir'
|
||||
#gem 'phantomjs'
|
||||
gem 'phantomjs'
|
||||
|
||||
gem 'devise'
|
||||
gem 'redis', '2.2.2'
|
||||
|
@ -17,9 +17,13 @@ gem 'formula'
|
|||
gem 'formtastic'
|
||||
gem 'json'
|
||||
gem 'rails3-jquery-autocomplete'
|
||||
gem 'best_in_place'
|
||||
gem 'best_in_place' #in-place editing
|
||||
gem 'kaminari' # pagination
|
||||
|
||||
gem 'sidekiq' # worker processes
|
||||
gem 'sinatra', require: false
|
||||
gem 'slim'
|
||||
|
||||
gem 'paperclip'
|
||||
gem 'aws-sdk'
|
||||
|
||||
|
@ -58,3 +62,4 @@ gem 'jquery-rails', '2.1.2'
|
|||
|
||||
# To use debugger
|
||||
# gem 'ruby-debug19', :require => 'ruby-debug'
|
||||
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
require 'sidekiq/web'
|
||||
|
||||
Metamaps::Application.routes.draw do
|
||||
|
||||
root to: 'main#home', via: :get
|
||||
|
||||
mount Sidekiq::Web, at: '/sidekiq'
|
||||
|
||||
devise_scope :user do
|
||||
get "join" => "devise/registrations#new"
|
||||
|
|
Loading…
Reference in a new issue