cached_resource 5.3.0 → 7.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7102fd60421cc8ddea333b62047f5bf15dcc07e1ac38444084f8815d728ad386
4
- data.tar.gz: 51e3b4a15b4094cdcfeda312a10b44aaff7f1da7143020c5100cd55b7f8dd22e
3
+ metadata.gz: 945dbe812b6e4fea58b155907076ea3821bf87a7b37312a7301f16f420ed9158
4
+ data.tar.gz: f07ca05471ba063bbe38d8ae7a29d6b16c4cd5132066f9c8d9f71d2d06a22c45
5
5
  SHA512:
6
- metadata.gz: 789e3ab01ffa4dd155a7587cab2d6f92455c0e9a8e2d8ce429b562c626be43eaadbfda3a44d13e09cb998c5e51805042eb7cd7463adc6b7f1e8cc25e2e77628e
7
- data.tar.gz: 636d931d7de4ab7068d3f68704c4832f6216be8b0d7d50cc28797fb55389e8d2b0199b78685b57d5c48f8d596c6bf0e96a58f24d75a2a9b89467688de90140b3
6
+ metadata.gz: ab3c75b4c0384b7ea516159ce7526e7dcd62443951331302986483403887d7e498528fef972c1268fc9a2dce3fb2d0df56434617ea21db03a3adc3457534527d
7
+ data.tar.gz: 21a1220f34e5bb07b5da51648dcbdb521970c801d7aabdcc53a142b4ad5347c0e779c3bd7186891f5bb9e4b9b79bb74df5790b9524cd14f72358d875b293c9db
@@ -0,0 +1,109 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: Test
9
+
10
+ on: [push]
11
+
12
+ permissions:
13
+ contents: read
14
+
15
+ jobs:
16
+ test:
17
+
18
+ runs-on: ubuntu-latest
19
+
20
+ strategy:
21
+ matrix:
22
+ ruby-version: ['1.9', '2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2']
23
+ rails-version: ['4.2', '5.0', '5.1', '6.0', '6.1', '7.0']
24
+ exclude:
25
+ # Segmentation faults during tests, but should work?
26
+ - ruby-version: '2.2'
27
+ rails-version: '5.0'
28
+ - ruby-version: '2.2'
29
+ rails-version: '5.1'
30
+ # Too old
31
+ - ruby-version: '1.9'
32
+ rails-version: '5.0'
33
+ - ruby-version: '1.9'
34
+ rails-version: '5.1'
35
+ - ruby-version: '1.9'
36
+ rails-version: '6.0'
37
+ - ruby-version: '1.9'
38
+ rails-version: '6.1'
39
+ - ruby-version: '1.9'
40
+ rails-version: '7.0'
41
+ # activesupport (~> 6.0.0) was resolved to 6.0.6.1, which depends on ruby (>= 2.5.0)
42
+ # activesupport (~> 6.1.0) was resolved to 6.1.7.2, which depends on ruby (>= 2.5.0)
43
+ - ruby-version: '2.2'
44
+ rails-version: '6.0'
45
+ - ruby-version: '2.2'
46
+ rails-version: '6.1'
47
+ - ruby-version: '2.3'
48
+ rails-version: '6.0'
49
+ - ruby-version: '2.3'
50
+ rails-version: '6.1'
51
+ - ruby-version: '2.4'
52
+ rails-version: '6.0'
53
+ - ruby-version: '2.4'
54
+ rails-version: '6.1'
55
+ # activesupport (~> 7.0.0) was resolved to 7.0.4.2, which depends on Ruby (>= 2.7.0)
56
+ - ruby-version: '2.2'
57
+ rails-version: '7.0'
58
+ - ruby-version: '2.3'
59
+ rails-version: '7.0'
60
+ - ruby-version: '2.4'
61
+ rails-version: '7.0'
62
+ - ruby-version: '2.5'
63
+ rails-version: '7.0'
64
+ - ruby-version: '2.6'
65
+ rails-version: '7.0'
66
+ # incompatbility with BigDecimal.new
67
+ - ruby-version: '2.7'
68
+ rails-version: '4.2'
69
+ - ruby-version: '3.0'
70
+ rails-version: '4.2'
71
+ - ruby-version: '3.1'
72
+ rails-version: '4.2'
73
+ - ruby-version: '3.2'
74
+ rails-version: '4.2'
75
+ # ArgumentError: expected attributes to be able to convert to Hash, got "#<Thing:0x000055d208b2e258>"
76
+ # probably keyword argument delegation different in Ruby 3
77
+ # https://www.ruby-lang.org/en/news/2019/12/12/separation-of-positional-and-keyword-arguments-in-ruby-3-0/
78
+ - ruby-version: '3.0'
79
+ rails-version: '5.0'
80
+ - ruby-version: '3.0'
81
+ rails-version: '5.1'
82
+ - ruby-version: '3.1'
83
+ rails-version: '5.0'
84
+ - ruby-version: '3.1'
85
+ rails-version: '5.1'
86
+ - ruby-version: '3.2'
87
+ rails-version: '5.0'
88
+ - ruby-version: '3.2'
89
+ rails-version: '5.1'
90
+
91
+ steps:
92
+ - uses: actions/checkout@v3
93
+ - name: Set up Ruby ${{ matrix.ruby-version }}
94
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
95
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
96
+ # uses: ruby/setup-ruby@v1
97
+ uses: ruby/setup-ruby@v1
98
+ with:
99
+ ruby-version: ${{ matrix.ruby-version }}
100
+ - name: Install bundler 1.x.x
101
+ if: matrix.rails-version == '4.2'
102
+ run: gem uninstall -aIx bundler && gem install bundler -v 1.17.3
103
+ - name: Install dependencies
104
+ run: bundle install
105
+ env:
106
+ TEST_RAILS_VERSION: ${{ matrix.rails-version }}
107
+ DEBUG: true
108
+ - name: Run tests
109
+ run: bundle exec rake
data/.gitignore CHANGED
@@ -4,3 +4,4 @@ Gemfile.lock
4
4
  pkg/*
5
5
  *DS_Store
6
6
  .ruby-version
7
+ .tool-versions
data/Gemfile CHANGED
@@ -1,3 +1,29 @@
1
1
  source "http://rubygems.org"
2
2
 
3
3
  gemspec
4
+
5
+ def eval_gemfile(path)
6
+ gemfile_local = File.expand_path(path, __FILE__)
7
+ if File.readable?(gemfile_local)
8
+ puts "Loading #{gemfile_local}..." if ENV['DEBUG']
9
+ instance_eval(File.read(gemfile_local))
10
+ end
11
+ end
12
+
13
+ puts "\e[93mUsing TEST_RAILS_VERSION #{ENV['TEST_RAILS_VERSION']}\e[0m" if ENV['DEBUG']
14
+ case ENV['TEST_RAILS_VERSION']
15
+ when "4.2"
16
+ eval_gemfile('../gemfiles/4.2.gemfile')
17
+ when "5.0"
18
+ eval_gemfile('../gemfiles/5.0.gemfile')
19
+ when "5.1"
20
+ eval_gemfile('../gemfiles/5.1.gemfile')
21
+ when "6.0"
22
+ eval_gemfile('../gemfiles/6.0.gemfile')
23
+ when "6.1"
24
+ eval_gemfile('../gemfiles/6.1.gemfile')
25
+ when "7.0"
26
+ eval_gemfile('../gemfiles/7.0.gemfile')
27
+ else
28
+ puts "\e[93mNo TEST_RAILS_VERSION present, letting dependency manager decide what's best.\e[0m" if ENV['DEBUG']
29
+ end
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
- # CachedResource [![Build Status](https://travis-ci.org/mhgbrown/cached_resource.svg?branch=master)](http://travis-ci.org/mhgbrown/cached_resource)
1
+ # CachedResource ![Tests](https://github.com/mhgbrown/cached_resource/actions/workflows/ruby.yml/badge.svg)
2
+
2
3
  CachedResource is a Ruby gem whose goal is to increase the performance of interacting with web services via ActiveResource by caching responses based on request parameters. It can help reduce the lag created by making repeated requests across a network.
3
4
 
4
5
  ## Installation
@@ -8,23 +9,25 @@ gem install cached_resource
8
9
  ```
9
10
 
10
11
  ## Compatibility
11
- CachedResource supports the following Ruby versions:
12
-
13
- * 2.2.x
14
- * 2.3.x
15
- * 2.4.x
16
-
17
- ...and likely other modern Ruby versions. If you require 1.8.7 support, please use version 2.3.4.
18
12
 
19
- CachedResource is designed to be framework agnostic, but will hook into Rails for caching and logging if available. The latest CachedResource officially supports the following Rails versions:
13
+ CachedResource is designed to be framework agnostic, but will hook into Rails for caching and logging if available. CachedResource supports the following ActiveSupport/Rails (right) and Ruby (down) version combinations:
20
14
 
21
- * 4.2.x
22
- * 5.0.x
23
- * 5.1.x
15
+ | | 🛤️ 4.2 | 🛤️ 5.0 | 🛤️ 5.1 | 🛤️ 6.0 | 🛤️ 6.1 | 🛤️ 7.0 |
16
+ |-------|-----|-----|-----|-----|-----|-----|
17
+ | 💎 1.9 | ✅ | | | | | |
18
+ | 💎 2.2 | ✅ | | | | | |
19
+ | 💎 2.3 | ✅ | ✅ | ✅ | | | |
20
+ | 💎 2.4 | ✅ | ✅ | ✅ | | | |
21
+ | 💎 2.5 | ✅ | ✅ | ✅ | ✅ | ✅ | |
22
+ | 💎 2.6 | ✅ | ✅ | ✅ | ✅ | ✅ | |
23
+ | 💎 2.7 | | ✅ | ✅ | ✅ | ✅ | ✅ |
24
+ | 💎 3.0 | | | | ✅ | ✅ | ✅ |
25
+ | 💎 3.1 | | | | ✅ | ✅ | ✅ |
26
+ | 💎 3.2 | | | | ✅ | ✅ | ✅ |
24
27
 
25
- For previously supported versions, use 4.2.0 or below.
26
28
 
27
29
  ## Configuration
30
+
28
31
  **Set up CachedResource across all ActiveResources:**
29
32
 
30
33
  ```ruby
@@ -149,25 +152,46 @@ Since resources are cached with an argument based key, you may pass in extra dat
149
152
  ```ruby
150
153
  MyActiveResource.find(:one, from: "/admin/shop.json", uid: "unique value")
151
154
  ```
155
+
152
156
  ## Testing
153
157
 
154
- ```ruby
155
- rake
158
+ To test the Ruby + Rails combination configured by default:
159
+
160
+ ```bash
161
+ $ rake
156
162
  ```
157
163
 
158
- or to test all supported environments, make sure appraisal is setup
164
+ or to test all supported environments...you have to do a little more work...
159
165
 
160
- ```ruby
161
- bundle exec appraisal install
166
+ Switch your Ruby version to the desired version. This project's maintainer uses `asdf`, so switching to Ruby 3 looks like this:
167
+
168
+ ```bash
169
+ $ asdf local ruby 3.0.5
162
170
  ```
163
171
 
164
- and then run
172
+ If you have a `Gemfile.lock`, delete it:
165
173
 
166
- ```ruby
167
- bundle exec appraisal rake
174
+ ```bash
175
+ $ rm Gemfile.lock
168
176
  ```
169
177
 
170
- For more details, head over to the [appraisal](https://github.com/thoughtbot/appraisal) documentation.
178
+ Then reinstall your dependencies:
179
+
180
+ ```bash
181
+ $ bundle install
182
+ ```
183
+
184
+ and finally, run the tests:
185
+
186
+ ```bash
187
+ $ rake
188
+ ```
189
+
190
+ If you want to test with a specific Rails version, start over and install dependencies with `TEST_RAILS_VERSION` set:
191
+
192
+ ```bash
193
+ $ TEST_RAILS_VERSION=6.1 bundle install
194
+ ```
171
195
 
172
196
  ## Credit/Inspiration
173
197
  * quamen and [this gist](http://gist.github.com/947734)
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
6
6
  s.name = "cached_resource"
7
7
  s.version = CachedResource::VERSION
8
8
  s.authors = "Morgan Brown"
9
- s.email = "brown.mhg@gmail.com"
9
+ s.email = "cached_resource@email.mhgbrown.is"
10
10
  s.homepage = "https://github.com/mhgbrown/cached_resource"
11
11
  s.summary = %q{Caching for ActiveResource}
12
12
  s.description = %q{Enables request-based caching for ActiveResource}
@@ -17,11 +17,12 @@ Gem::Specification.new do |s|
17
17
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
18
  s.require_paths = ["lib"]
19
19
 
20
+ s.required_ruby_version = '>= 1.9.0'
21
+
20
22
  s.add_runtime_dependency "activeresource", ">= 4.0"
21
23
  s.add_runtime_dependency "activesupport", ">= 4.0"
22
24
  s.add_runtime_dependency "nilio", ">= 1.0"
23
25
 
24
26
  s.add_development_dependency "rake"
25
27
  s.add_development_dependency "rspec"
26
- s.add_development_dependency "appraisal"
27
28
  end
data/gemfiles/4.2.gemfile CHANGED
@@ -1,7 +1,6 @@
1
- # This file was generated by Appraisal
2
-
3
1
  source "http://rubygems.org"
4
2
 
5
3
  gem "rails", "~> 4.2.0"
6
4
 
7
- gemspec path: "../"
5
+ # https://stackoverflow.com/questions/60226893/rails-nomethoderror-undefined-method-new-for-bigdecimalclass
6
+ # gem "bigdecimal", "1.3.5"
data/gemfiles/5.0.gemfile CHANGED
@@ -1,7 +1,3 @@
1
- # This file was generated by Appraisal
2
-
3
1
  source "http://rubygems.org"
4
2
 
5
3
  gem "rails", "~> 5.0.0"
6
-
7
- gemspec path: "../"
data/gemfiles/5.1.gemfile CHANGED
@@ -1,7 +1,3 @@
1
- # This file was generated by Appraisal
2
-
3
1
  source "http://rubygems.org"
4
2
 
5
3
  gem "rails", "~> 5.1.0"
6
-
7
- gemspec path: "../"
@@ -0,0 +1,3 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem "rails", "~> 6.0.0"
@@ -0,0 +1,3 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem "rails", "~> 6.1.0"
@@ -0,0 +1,3 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem "rails", "~> 7.0.0"
@@ -1,3 +1,3 @@
1
1
  module CachedResource
2
- VERSION = "5.3.0"
2
+ VERSION = "7.0.0"
3
3
  end
@@ -24,7 +24,7 @@ describe CachedResource do
24
24
  @thing3 = {:thing => {:id => 3, :name => "Stu"}}
25
25
  @string_thing = {:thing => {:id => "fded", :name => "Lev"}}
26
26
  @other_string_thing = {:thing => {:id => "fded", :name => "Lon"}}
27
- @date_thing = {:thing => {:id => 4, :created_at => Time.utc(2020).iso8601}}
27
+ @date_thing = {:thing => {:id => 4, :created_at => DateTime.new(2020)}}
28
28
  @thing_json = @thing.to_json
29
29
  @other_thing_json = @other_thing.to_json
30
30
  @string_thing_json = @string_thing.to_json
data/spec/spec_helper.rb CHANGED
@@ -9,3 +9,4 @@ require 'cached_resource'
9
9
  RSpec.configure do |config|
10
10
  # nada
11
11
  end
12
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cached_resource
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.3.0
4
+ version: 7.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Morgan Brown
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-13 00:00:00.000000000 Z
11
+ date: 2023-02-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeresource
@@ -80,41 +80,26 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- - !ruby/object:Gem::Dependency
84
- name: appraisal
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - ">="
88
- - !ruby/object:Gem::Version
89
- version: '0'
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - ">="
95
- - !ruby/object:Gem::Version
96
- version: '0'
97
83
  description: Enables request-based caching for ActiveResource
98
- email: brown.mhg@gmail.com
84
+ email: cached_resource@email.mhgbrown.is
99
85
  executables: []
100
86
  extensions: []
101
87
  extra_rdoc_files: []
102
88
  files:
89
+ - ".github/workflows/ruby.yml"
103
90
  - ".gitignore"
104
91
  - ".rspec"
105
- - ".travis.yml"
106
- - Appraisals
107
92
  - Gemfile
108
93
  - LICENSE
109
94
  - README.md
110
95
  - Rakefile
111
96
  - cached_resource.gemspec
112
97
  - gemfiles/4.2.gemfile
113
- - gemfiles/4.2.gemfile.lock
114
98
  - gemfiles/5.0.gemfile
115
- - gemfiles/5.0.gemfile.lock
116
99
  - gemfiles/5.1.gemfile
117
- - gemfiles/5.1.gemfile.lock
100
+ - gemfiles/6.0.gemfile
101
+ - gemfiles/6.1.gemfile
102
+ - gemfiles/7.0.gemfile
118
103
  - lib/cached_resource.rb
119
104
  - lib/cached_resource/cached_resource.rb
120
105
  - lib/cached_resource/caching.rb
@@ -136,14 +121,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
136
121
  requirements:
137
122
  - - ">="
138
123
  - !ruby/object:Gem::Version
139
- version: '0'
124
+ version: 1.9.0
140
125
  required_rubygems_version: !ruby/object:Gem::Requirement
141
126
  requirements:
142
127
  - - ">="
143
128
  - !ruby/object:Gem::Version
144
129
  version: '0'
145
130
  requirements: []
146
- rubygems_version: 3.0.9
131
+ rubygems_version: 3.1.6
147
132
  signing_key:
148
133
  specification_version: 4
149
134
  summary: Caching for ActiveResource
data/.travis.yml DELETED
@@ -1,15 +0,0 @@
1
- language: ruby
2
- sudo: false
3
- before_install:
4
- - gem install bundler:1.17.3
5
- cache: bundler
6
-
7
- rvm:
8
- - 2.2.4
9
- - 2.3.4
10
- - 2.4.1
11
-
12
- gemfile:
13
- - gemfiles/4.2.gemfile
14
- - gemfiles/5.0.gemfile
15
- - gemfiles/5.1.gemfile
data/Appraisals DELETED
@@ -1,11 +0,0 @@
1
- appraise "4.2" do
2
- gem "rails", "~> 4.2.0"
3
- end
4
-
5
- appraise "5.0" do
6
- gem "rails", "~> 5.0.0"
7
- end
8
-
9
- appraise "5.1" do
10
- gem "rails", "~> 5.1.0"
11
- end
@@ -1,140 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- cached_resource (5.3.0)
5
- activeresource (>= 4.0)
6
- activesupport (>= 4.0)
7
- nilio (>= 1.0)
8
-
9
- GEM
10
- remote: http://rubygems.org/
11
- specs:
12
- actionmailer (4.2.9)
13
- actionpack (= 4.2.9)
14
- actionview (= 4.2.9)
15
- activejob (= 4.2.9)
16
- mail (~> 2.5, >= 2.5.4)
17
- rails-dom-testing (~> 1.0, >= 1.0.5)
18
- actionpack (4.2.9)
19
- actionview (= 4.2.9)
20
- activesupport (= 4.2.9)
21
- rack (~> 1.6)
22
- rack-test (~> 0.6.2)
23
- rails-dom-testing (~> 1.0, >= 1.0.5)
24
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
25
- actionview (4.2.9)
26
- activesupport (= 4.2.9)
27
- builder (~> 3.1)
28
- erubis (~> 2.7.0)
29
- rails-dom-testing (~> 1.0, >= 1.0.5)
30
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
31
- activejob (4.2.9)
32
- activesupport (= 4.2.9)
33
- globalid (>= 0.3.0)
34
- activemodel (4.2.9)
35
- activesupport (= 4.2.9)
36
- builder (~> 3.1)
37
- activerecord (4.2.9)
38
- activemodel (= 4.2.9)
39
- activesupport (= 4.2.9)
40
- arel (~> 6.0)
41
- activeresource (4.1.0)
42
- activemodel (~> 4.0)
43
- activesupport (~> 4.0)
44
- rails-observers (~> 0.1.2)
45
- activesupport (4.2.9)
46
- i18n (~> 0.7)
47
- minitest (~> 5.1)
48
- thread_safe (~> 0.3, >= 0.3.4)
49
- tzinfo (~> 1.1)
50
- appraisal (2.2.0)
51
- bundler
52
- rake
53
- thor (>= 0.14.0)
54
- arel (6.0.4)
55
- builder (3.2.3)
56
- concurrent-ruby (1.0.5)
57
- diff-lcs (1.3)
58
- erubis (2.7.0)
59
- globalid (0.4.0)
60
- activesupport (>= 4.2.0)
61
- i18n (0.8.4)
62
- loofah (2.0.3)
63
- nokogiri (>= 1.5.9)
64
- mail (2.6.6)
65
- mime-types (>= 1.16, < 4)
66
- mime-types (3.1)
67
- mime-types-data (~> 3.2015)
68
- mime-types-data (3.2016.0521)
69
- mini_portile2 (2.2.0)
70
- minitest (5.10.2)
71
- nilio (1.0.0)
72
- nokogiri (1.8.0)
73
- mini_portile2 (~> 2.2.0)
74
- rack (1.6.8)
75
- rack-test (0.6.3)
76
- rack (>= 1.0)
77
- rails (4.2.9)
78
- actionmailer (= 4.2.9)
79
- actionpack (= 4.2.9)
80
- actionview (= 4.2.9)
81
- activejob (= 4.2.9)
82
- activemodel (= 4.2.9)
83
- activerecord (= 4.2.9)
84
- activesupport (= 4.2.9)
85
- bundler (>= 1.3.0, < 2.0)
86
- railties (= 4.2.9)
87
- sprockets-rails
88
- rails-deprecated_sanitizer (1.0.3)
89
- activesupport (>= 4.2.0.alpha)
90
- rails-dom-testing (1.0.8)
91
- activesupport (>= 4.2.0.beta, < 5.0)
92
- nokogiri (~> 1.6)
93
- rails-deprecated_sanitizer (>= 1.0.1)
94
- rails-html-sanitizer (1.0.3)
95
- loofah (~> 2.0)
96
- rails-observers (0.1.5)
97
- activemodel (>= 4.0)
98
- railties (4.2.9)
99
- actionpack (= 4.2.9)
100
- activesupport (= 4.2.9)
101
- rake (>= 0.8.7)
102
- thor (>= 0.18.1, < 2.0)
103
- rake (12.0.0)
104
- rspec (3.6.0)
105
- rspec-core (~> 3.6.0)
106
- rspec-expectations (~> 3.6.0)
107
- rspec-mocks (~> 3.6.0)
108
- rspec-core (3.6.0)
109
- rspec-support (~> 3.6.0)
110
- rspec-expectations (3.6.0)
111
- diff-lcs (>= 1.2.0, < 2.0)
112
- rspec-support (~> 3.6.0)
113
- rspec-mocks (3.6.0)
114
- diff-lcs (>= 1.2.0, < 2.0)
115
- rspec-support (~> 3.6.0)
116
- rspec-support (3.6.0)
117
- sprockets (3.7.1)
118
- concurrent-ruby (~> 1.0)
119
- rack (> 1, < 3)
120
- sprockets-rails (3.2.0)
121
- actionpack (>= 4.0)
122
- activesupport (>= 4.0)
123
- sprockets (>= 3.0.0)
124
- thor (0.19.4)
125
- thread_safe (0.3.6)
126
- tzinfo (1.2.3)
127
- thread_safe (~> 0.1)
128
-
129
- PLATFORMS
130
- ruby
131
-
132
- DEPENDENCIES
133
- appraisal
134
- cached_resource!
135
- rails (~> 4.2.0)
136
- rake
137
- rspec
138
-
139
- BUNDLED WITH
140
- 1.17.3
@@ -1,149 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- cached_resource (5.3.0)
5
- activeresource (>= 4.0)
6
- activesupport (>= 4.0)
7
- nilio (>= 1.0)
8
-
9
- GEM
10
- remote: http://rubygems.org/
11
- specs:
12
- actioncable (5.0.2)
13
- actionpack (= 5.0.2)
14
- nio4r (>= 1.2, < 3.0)
15
- websocket-driver (~> 0.6.1)
16
- actionmailer (5.0.2)
17
- actionpack (= 5.0.2)
18
- actionview (= 5.0.2)
19
- activejob (= 5.0.2)
20
- mail (~> 2.5, >= 2.5.4)
21
- rails-dom-testing (~> 2.0)
22
- actionpack (5.0.2)
23
- actionview (= 5.0.2)
24
- activesupport (= 5.0.2)
25
- rack (~> 2.0)
26
- rack-test (~> 0.6.3)
27
- rails-dom-testing (~> 2.0)
28
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
- actionview (5.0.2)
30
- activesupport (= 5.0.2)
31
- builder (~> 3.1)
32
- erubis (~> 2.7.0)
33
- rails-dom-testing (~> 2.0)
34
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
35
- activejob (5.0.2)
36
- activesupport (= 5.0.2)
37
- globalid (>= 0.3.6)
38
- activemodel (5.0.2)
39
- activesupport (= 5.0.2)
40
- activemodel-serializers-xml (1.0.2)
41
- activemodel (> 5.x)
42
- activesupport (> 5.x)
43
- builder (~> 3.1)
44
- activerecord (5.0.2)
45
- activemodel (= 5.0.2)
46
- activesupport (= 5.0.2)
47
- arel (~> 7.0)
48
- activeresource (5.1.1)
49
- activemodel (>= 5.0, < 7)
50
- activemodel-serializers-xml (~> 1.0)
51
- activesupport (>= 5.0, < 7)
52
- activesupport (5.0.2)
53
- concurrent-ruby (~> 1.0, >= 1.0.2)
54
- i18n (~> 0.7)
55
- minitest (~> 5.1)
56
- tzinfo (~> 1.1)
57
- appraisal (2.2.0)
58
- bundler
59
- rake
60
- thor (>= 0.14.0)
61
- arel (7.1.4)
62
- builder (3.2.3)
63
- concurrent-ruby (1.0.5)
64
- diff-lcs (1.3)
65
- erubis (2.7.0)
66
- globalid (0.4.0)
67
- activesupport (>= 4.2.0)
68
- i18n (0.8.4)
69
- loofah (2.0.3)
70
- nokogiri (>= 1.5.9)
71
- mail (2.6.6)
72
- mime-types (>= 1.16, < 4)
73
- method_source (0.8.2)
74
- mime-types (3.1)
75
- mime-types-data (~> 3.2015)
76
- mime-types-data (3.2016.0521)
77
- mini_portile2 (2.2.0)
78
- minitest (5.10.2)
79
- nilio (1.0.0)
80
- nio4r (2.1.0)
81
- nokogiri (1.8.0)
82
- mini_portile2 (~> 2.2.0)
83
- rack (2.0.3)
84
- rack-test (0.6.3)
85
- rack (>= 1.0)
86
- rails (5.0.2)
87
- actioncable (= 5.0.2)
88
- actionmailer (= 5.0.2)
89
- actionpack (= 5.0.2)
90
- actionview (= 5.0.2)
91
- activejob (= 5.0.2)
92
- activemodel (= 5.0.2)
93
- activerecord (= 5.0.2)
94
- activesupport (= 5.0.2)
95
- bundler (>= 1.3.0, < 2.0)
96
- railties (= 5.0.2)
97
- sprockets-rails (>= 2.0.0)
98
- rails-dom-testing (2.0.3)
99
- activesupport (>= 4.2.0)
100
- nokogiri (>= 1.6)
101
- rails-html-sanitizer (1.0.3)
102
- loofah (~> 2.0)
103
- railties (5.0.2)
104
- actionpack (= 5.0.2)
105
- activesupport (= 5.0.2)
106
- method_source
107
- rake (>= 0.8.7)
108
- thor (>= 0.18.1, < 2.0)
109
- rake (12.0.0)
110
- rspec (3.6.0)
111
- rspec-core (~> 3.6.0)
112
- rspec-expectations (~> 3.6.0)
113
- rspec-mocks (~> 3.6.0)
114
- rspec-core (3.6.0)
115
- rspec-support (~> 3.6.0)
116
- rspec-expectations (3.6.0)
117
- diff-lcs (>= 1.2.0, < 2.0)
118
- rspec-support (~> 3.6.0)
119
- rspec-mocks (3.6.0)
120
- diff-lcs (>= 1.2.0, < 2.0)
121
- rspec-support (~> 3.6.0)
122
- rspec-support (3.6.0)
123
- sprockets (3.7.1)
124
- concurrent-ruby (~> 1.0)
125
- rack (> 1, < 3)
126
- sprockets-rails (3.2.0)
127
- actionpack (>= 4.0)
128
- activesupport (>= 4.0)
129
- sprockets (>= 3.0.0)
130
- thor (0.19.4)
131
- thread_safe (0.3.6)
132
- tzinfo (1.2.3)
133
- thread_safe (~> 0.1)
134
- websocket-driver (0.6.5)
135
- websocket-extensions (>= 0.1.0)
136
- websocket-extensions (0.1.2)
137
-
138
- PLATFORMS
139
- ruby
140
-
141
- DEPENDENCIES
142
- appraisal
143
- cached_resource!
144
- rails (~> 5.0.0)
145
- rake
146
- rspec
147
-
148
- BUNDLED WITH
149
- 1.17.3
@@ -1,149 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- cached_resource (5.3.0)
5
- activeresource (>= 4.0)
6
- activesupport (>= 4.0)
7
- nilio (>= 1.0)
8
-
9
- GEM
10
- remote: http://rubygems.org/
11
- specs:
12
- actioncable (5.1.2)
13
- actionpack (= 5.1.2)
14
- nio4r (~> 2.0)
15
- websocket-driver (~> 0.6.1)
16
- actionmailer (5.1.2)
17
- actionpack (= 5.1.2)
18
- actionview (= 5.1.2)
19
- activejob (= 5.1.2)
20
- mail (~> 2.5, >= 2.5.4)
21
- rails-dom-testing (~> 2.0)
22
- actionpack (5.1.2)
23
- actionview (= 5.1.2)
24
- activesupport (= 5.1.2)
25
- rack (~> 2.0)
26
- rack-test (~> 0.6.3)
27
- rails-dom-testing (~> 2.0)
28
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
- actionview (5.1.2)
30
- activesupport (= 5.1.2)
31
- builder (~> 3.1)
32
- erubi (~> 1.4)
33
- rails-dom-testing (~> 2.0)
34
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
35
- activejob (5.1.2)
36
- activesupport (= 5.1.2)
37
- globalid (>= 0.3.6)
38
- activemodel (5.1.2)
39
- activesupport (= 5.1.2)
40
- activemodel-serializers-xml (1.0.2)
41
- activemodel (> 5.x)
42
- activesupport (> 5.x)
43
- builder (~> 3.1)
44
- activerecord (5.1.2)
45
- activemodel (= 5.1.2)
46
- activesupport (= 5.1.2)
47
- arel (~> 8.0)
48
- activeresource (5.1.1)
49
- activemodel (>= 5.0, < 7)
50
- activemodel-serializers-xml (~> 1.0)
51
- activesupport (>= 5.0, < 7)
52
- activesupport (5.1.2)
53
- concurrent-ruby (~> 1.0, >= 1.0.2)
54
- i18n (~> 0.7)
55
- minitest (~> 5.1)
56
- tzinfo (~> 1.1)
57
- appraisal (2.2.0)
58
- bundler
59
- rake
60
- thor (>= 0.14.0)
61
- arel (8.0.0)
62
- builder (3.2.3)
63
- concurrent-ruby (1.0.5)
64
- diff-lcs (1.3)
65
- erubi (1.6.0)
66
- globalid (0.4.0)
67
- activesupport (>= 4.2.0)
68
- i18n (0.8.4)
69
- loofah (2.0.3)
70
- nokogiri (>= 1.5.9)
71
- mail (2.6.6)
72
- mime-types (>= 1.16, < 4)
73
- method_source (0.8.2)
74
- mime-types (3.1)
75
- mime-types-data (~> 3.2015)
76
- mime-types-data (3.2016.0521)
77
- mini_portile2 (2.2.0)
78
- minitest (5.10.2)
79
- nilio (1.0.0)
80
- nio4r (2.1.0)
81
- nokogiri (1.8.0)
82
- mini_portile2 (~> 2.2.0)
83
- rack (2.0.3)
84
- rack-test (0.6.3)
85
- rack (>= 1.0)
86
- rails (5.1.2)
87
- actioncable (= 5.1.2)
88
- actionmailer (= 5.1.2)
89
- actionpack (= 5.1.2)
90
- actionview (= 5.1.2)
91
- activejob (= 5.1.2)
92
- activemodel (= 5.1.2)
93
- activerecord (= 5.1.2)
94
- activesupport (= 5.1.2)
95
- bundler (>= 1.3.0, < 2.0)
96
- railties (= 5.1.2)
97
- sprockets-rails (>= 2.0.0)
98
- rails-dom-testing (2.0.3)
99
- activesupport (>= 4.2.0)
100
- nokogiri (>= 1.6)
101
- rails-html-sanitizer (1.0.3)
102
- loofah (~> 2.0)
103
- railties (5.1.2)
104
- actionpack (= 5.1.2)
105
- activesupport (= 5.1.2)
106
- method_source
107
- rake (>= 0.8.7)
108
- thor (>= 0.18.1, < 2.0)
109
- rake (12.0.0)
110
- rspec (3.6.0)
111
- rspec-core (~> 3.6.0)
112
- rspec-expectations (~> 3.6.0)
113
- rspec-mocks (~> 3.6.0)
114
- rspec-core (3.6.0)
115
- rspec-support (~> 3.6.0)
116
- rspec-expectations (3.6.0)
117
- diff-lcs (>= 1.2.0, < 2.0)
118
- rspec-support (~> 3.6.0)
119
- rspec-mocks (3.6.0)
120
- diff-lcs (>= 1.2.0, < 2.0)
121
- rspec-support (~> 3.6.0)
122
- rspec-support (3.6.0)
123
- sprockets (3.7.1)
124
- concurrent-ruby (~> 1.0)
125
- rack (> 1, < 3)
126
- sprockets-rails (3.2.0)
127
- actionpack (>= 4.0)
128
- activesupport (>= 4.0)
129
- sprockets (>= 3.0.0)
130
- thor (0.19.4)
131
- thread_safe (0.3.6)
132
- tzinfo (1.2.3)
133
- thread_safe (~> 0.1)
134
- websocket-driver (0.6.5)
135
- websocket-extensions (>= 0.1.0)
136
- websocket-extensions (0.1.2)
137
-
138
- PLATFORMS
139
- ruby
140
-
141
- DEPENDENCIES
142
- appraisal
143
- cached_resource!
144
- rails (~> 5.1.0)
145
- rake
146
- rspec
147
-
148
- BUNDLED WITH
149
- 1.17.3