aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2016-01-12 21:01:29 +0900
committerKazuki Yamaguchi <k@rhe.jp>2016-01-12 21:01:29 +0900
commit50c894964c6ed5adc8a2a21bfe0f99abbc8e996e (patch)
treef4ce912197a134d777f74777176d86a9d133fdf3
parentf0440d3ff68a6ff0db0ca0f9572d1250109039b1 (diff)
downloadpoe-50c894964c6ed5adc8a2a21bfe0f99abbc8e996e.tar.gz
comment out not-using gems
-rw-r--r--Gemfile9
-rw-r--r--Gemfile.lock18
-rw-r--r--config/application.rb2
3 files changed, 6 insertions, 23 deletions
diff --git a/Gemfile b/Gemfile
index e4b5c4a..76a35ef 100644
--- a/Gemfile
+++ b/Gemfile
@@ -2,11 +2,10 @@ source "https://rubygems.org"
gem "rails", ">= 5.0.0.beta1", "< 5.1"
gem "mysql2", ">= 0.3.18", "< 0.5"
-gem "sidekiq"
+# gem "sidekiq"
gem "sinatra", require: false
gem "haml"
-
gem "sprockets"
gem "sass-rails"
gem "uglifier", ">= 1.3.0"
@@ -15,14 +14,14 @@ gem "jquery-rails"
gem "bootstrap-sass"
gem "codemirror-rails"
-gem "plum"
+# gem "plum"
gem "thin"
group :development, :test do
- gem "byebug"
+ # gem "byebug"
end
group :development do
- gem "web-console", "~> 3.0"
+ # gem "web-console", "~> 3.0"
gem "quiet_assets"
end
diff --git a/Gemfile.lock b/Gemfile.lock
index 5378c0f..ee40de7 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -57,7 +57,6 @@ GEM
autoprefixer-rails (>= 5.2.1)
sass (>= 3.3.4)
builder (3.2.2)
- byebug (8.2.1)
celluloid (0.17.2)
celluloid-essentials
celluloid-extras
@@ -85,9 +84,7 @@ GEM
execjs
coffee-script-source (1.10.0)
concurrent-ruby (1.0.0)
- connection_pool (2.2.0)
daemons (1.2.3)
- debug_inspector (0.0.2)
em-hiredis (0.3.0)
eventmachine (~> 1.0)
hiredis (~> 0.5.0)
@@ -120,7 +117,6 @@ GEM
mysql2 (0.4.2)
nokogiri (1.6.7.1)
mini_portile2 (~> 2.0.0.rc2)
- plum (0.2.8)
quiet_assets (1.1.0)
railties (>= 3.1, < 5.0)
rack (2.0.0.alpha)
@@ -155,17 +151,13 @@ GEM
thor (>= 0.18.1, < 2.0)
rake (10.4.2)
redis (3.2.2)
- sass (3.4.20)
+ sass (3.4.21)
sass-rails (5.0.4)
railties (>= 4.0.0, < 5.0)
sass (~> 3.1)
sprockets (>= 2.8, < 4.0)
sprockets-rails (>= 2.0, < 4.0)
tilt (>= 1.1, < 3)
- sidekiq (4.0.2)
- concurrent-ruby (~> 1.0)
- connection_pool (~> 2.2, >= 2.2.0)
- redis (~> 3.2, >= 3.2.1)
sinatra (1.0)
rack (>= 1.0)
sprockets (3.5.2)
@@ -193,10 +185,6 @@ GEM
uglifier (2.7.2)
execjs (>= 0.3.0)
json (>= 1.8.0)
- web-console (3.0.0)
- activemodel (>= 4.2)
- debug_inspector
- railties (>= 4.2)
websocket-driver (0.6.3)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.2)
@@ -206,22 +194,18 @@ PLATFORMS
DEPENDENCIES
bootstrap-sass
- byebug
codemirror-rails
haml
jquery-rails
mysql2 (>= 0.3.18, < 0.5)
- plum
quiet_assets
rails (>= 5.0.0.beta1, < 5.1)
sass-rails
- sidekiq
sinatra
sprockets
sprockets-es6
thin
uglifier (>= 1.3.0)
- web-console (~> 3.0)
BUNDLED WITH
1.11.2
diff --git a/config/application.rb b/config/application.rb
index f41dc96..c62a553 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -22,6 +22,6 @@ module Poe
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
- config.active_job.queue_adapter = :sidekiq
+ # config.active_job.queue_adapter = :sidekiq
end
end