diff options
| author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-09-08 07:53:35 +0900 | 
|---|---|---|
| committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-09-08 08:00:30 +0900 | 
| commit | 75a921828c9b5ba74a76846c51ee11b6003d7ab4 (patch) | |
| tree | 5275c5755a7a0c05a349d125da37f479565dee79 | |
| parent | 18f342d82a380d5bd23c33018818224d32b69a95 (diff) | |
| download | rails-75a921828c9b5ba74a76846c51ee11b6003d7ab4.tar.gz rails-75a921828c9b5ba74a76846c51ee11b6003d7ab4.tar.bz2 rails-75a921828c9b5ba74a76846c51ee11b6003d7ab4.zip | |
Do not install unused gem
`qu-redis` is need for qu adapter test.
However, since 8ecc5ab, qu adapter test has not been executed,
it is unnecessary now.
| -rw-r--r-- | Gemfile | 2 | ||||
| -rw-r--r-- | Gemfile.lock | 8 | 
2 files changed, 1 insertions, 9 deletions
| @@ -74,7 +74,7 @@ group :job do    gem "backburner", require: false    #TODO: add qu after it support Rails 5.1    # gem 'qu-rails', github: "bkeepers/qu", branch: "master", require: false -  gem "qu-redis", require: false +  # gem "qu-redis", require: false    gem "delayed_job_active_record", require: false    gem "sequel", require: false  end diff --git a/Gemfile.lock b/Gemfile.lock index 9da1aef756..387bd608f9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -336,12 +336,6 @@ GEM      psych (2.2.4)      public_suffix (2.0.5)      puma (3.9.1) -    qu (0.2.0) -      multi_json -    qu-redis (0.2.0) -      qu (= 0.2.0) -      redis-namespace -      simple_uuid      que (0.14.0)      racc (1.4.14)      rack (2.0.3) @@ -415,7 +409,6 @@ GEM        faraday (~> 0.9)        jwt (~> 1.5)        multi_json (~> 1.10) -    simple_uuid (0.4.0)      sinatra (2.0.0)        mustermann (~> 1.0)        rack (~> 2.0) @@ -515,7 +508,6 @@ DEPENDENCIES    pg (>= 0.18.0)    psych (~> 2.0)    puma -  qu-redis    que    queue_classic!    racc (>= 1.4.6) | 
