cached_resource 6.0.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: 1db920707ba1bb3a1ba5c619c316ea9a1a0c932b9852231f312178a15952ac43
4
- data.tar.gz: 7bb62db4f9df25eb585ab2d1a7605ed5b4ca0811df2e83cb19be9adefd039be0
3
+ metadata.gz: 945dbe812b6e4fea58b155907076ea3821bf87a7b37312a7301f16f420ed9158
4
+ data.tar.gz: f07ca05471ba063bbe38d8ae7a29d6b16c4cd5132066f9c8d9f71d2d06a22c45
5
5
  SHA512:
6
- metadata.gz: c7f06dba0aaf189395a70fc6c5d8e7d97a5e48e327f2d73fdc192b9bb3b911b85e01bff9cdda67aad53c91d471df59bb5b3db808f3eac5c92f9a881c41a7347b
7
- data.tar.gz: 307f61951d5ac54b1c28677253b862a8857b79358afe7abb8504849b8da902bfba1ae05bda6231aa34044d1f0eaa0228fd4794ccf25e6acf5406df7747840fcc
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://app.travis-ci.com/mhgbrown/cached_resource.svg?branch=master)](https://app.travis-ci.com/github/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,28 +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
- * 2.5.x
17
- * 2.7.x
18
-
19
- ...and likely other modern Ruby versions. If you require 1.8.7 support, please use version 2.3.4.
20
12
 
21
- 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:
22
14
 
23
- * 4.2.x
24
- * 5.0.x
25
- * 5.1.x
26
- * 6.0.x
27
- * 6.1.x
28
- * 7.0.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 | | | | ✅ | ✅ | ✅ |
29
27
 
30
- For previously supported versions, use 4.2.0 or below.
31
28
 
32
29
  ## Configuration
30
+
33
31
  **Set up CachedResource across all ActiveResources:**
34
32
 
35
33
  ```ruby
@@ -154,25 +152,46 @@ Since resources are cached with an argument based key, you may pass in extra dat
154
152
  ```ruby
155
153
  MyActiveResource.find(:one, from: "/admin/shop.json", uid: "unique value")
156
154
  ```
155
+
157
156
  ## Testing
158
157
 
159
- ```ruby
160
- rake
158
+ To test the Ruby + Rails combination configured by default:
159
+
160
+ ```bash
161
+ $ rake
161
162
  ```
162
163
 
163
- 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...
164
165
 
165
- ```ruby
166
- 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
167
170
  ```
168
171
 
169
- and then run
172
+ If you have a `Gemfile.lock`, delete it:
170
173
 
171
- ```ruby
172
- bundle exec appraisal rake
174
+ ```bash
175
+ $ rm Gemfile.lock
173
176
  ```
174
177
 
175
- 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
+ ```
176
195
 
177
196
  ## Credit/Inspiration
178
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,9 +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
- # https://stackoverflow.com/questions/60226893/rails-nomethoderror-undefined-method-new-for-bigdecimalclass
7
- gem "bigdecimal", "1.3.5"
8
4
 
9
- 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: "../"
data/gemfiles/6.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", "~> 6.0.0"
6
-
7
- gemspec path: "../"
data/gemfiles/6.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", "~> 6.1.0"
6
-
7
- gemspec path: "../"
data/gemfiles/7.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", "~> 7.0.0"
6
-
7
- gemspec path: "../"
@@ -1,3 +1,3 @@
1
1
  module CachedResource
2
- VERSION = "6.0.0"
2
+ VERSION = "7.0.0"
3
3
  end
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: 6.0.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: 2022-09-18 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,47 +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
118
100
  - gemfiles/6.0.gemfile
119
- - gemfiles/6.0.gemfile.lock
120
101
  - gemfiles/6.1.gemfile
121
- - gemfiles/6.1.gemfile.lock
122
102
  - gemfiles/7.0.gemfile
123
- - gemfiles/7.0.gemfile.lock
124
103
  - lib/cached_resource.rb
125
104
  - lib/cached_resource/cached_resource.rb
126
105
  - lib/cached_resource/caching.rb
@@ -142,7 +121,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
142
121
  requirements:
143
122
  - - ">="
144
123
  - !ruby/object:Gem::Version
145
- version: '0'
124
+ version: 1.9.0
146
125
  required_rubygems_version: !ruby/object:Gem::Requirement
147
126
  requirements:
148
127
  - - ">="
data/.travis.yml DELETED
@@ -1,43 +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
- - 2.5.8
12
- - 2.7.2
13
-
14
- gemfile:
15
- - gemfiles/4.2.gemfile
16
- - gemfiles/5.0.gemfile
17
- - gemfiles/5.1.gemfile
18
- - gemfiles/6.0.gemfile
19
- - gemfiles/6.1.gemfile
20
- - gemfiles/7.0.gemfile
21
-
22
- jobs:
23
- exclude:
24
- - rvm: 2.2.4
25
- gemfile: gemfiles/6.0.gemfile
26
- - rvm: 2.3.4
27
- gemfile: gemfiles/6.0.gemfile
28
- - rvm: 2.4.1
29
- gemfile: gemfiles/6.0.gemfile
30
- - rvm: 2.2.4
31
- gemfile: gemfiles/6.1.gemfile
32
- - rvm: 2.3.4
33
- gemfile: gemfiles/6.1.gemfile
34
- - rvm: 2.4.1
35
- gemfile: gemfiles/6.1.gemfile
36
- - rvm: 2.2.4
37
- gemfile: gemfiles/7.0.gemfile
38
- - rvm: 2.3.4
39
- gemfile: gemfiles/7.0.gemfile
40
- - rvm: 2.4.1
41
- gemfile: gemfiles/7.0.gemfile
42
- - rvm: 2.5.8
43
- gemfile: gemfiles/7.0.gemfile
data/Appraisals DELETED
@@ -1,28 +0,0 @@
1
- appraise "4.2" do
2
- gem "rails", "~> 4.2.0"
3
- # https://stackoverflow.com/questions/60226893/rails-nomethoderror-undefined-method-new-for-bigdecimalclass
4
- gem "bigdecimal", "1.3.5"
5
- end
6
-
7
- appraise "5.0" do
8
- gem "rails", "~> 5.0.0"
9
- end
10
-
11
- appraise "5.1" do
12
- gem "rails", "~> 5.1.0"
13
- end
14
-
15
- # requires ruby >= 2.5.0
16
- appraise "6.0" do
17
- gem "rails", "~> 6.0.0"
18
- end
19
-
20
- # requires ruby >= 2.5.0
21
- appraise "6.1" do
22
- gem "rails", "~> 6.1.0"
23
- end
24
-
25
- # requires ruby >= 2.7.0
26
- appraise "7.0" do
27
- gem "rails", "~> 7.0.0"
28
- end
@@ -1,142 +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
- bigdecimal (1.3.5)
56
- builder (3.2.3)
57
- concurrent-ruby (1.0.5)
58
- diff-lcs (1.3)
59
- erubis (2.7.0)
60
- globalid (0.4.0)
61
- activesupport (>= 4.2.0)
62
- i18n (0.8.4)
63
- loofah (2.0.3)
64
- nokogiri (>= 1.5.9)
65
- mail (2.6.6)
66
- mime-types (>= 1.16, < 4)
67
- mime-types (3.1)
68
- mime-types-data (~> 3.2015)
69
- mime-types-data (3.2016.0521)
70
- mini_portile2 (2.2.0)
71
- minitest (5.10.2)
72
- nilio (1.0.0)
73
- nokogiri (1.8.0)
74
- mini_portile2 (~> 2.2.0)
75
- rack (1.6.8)
76
- rack-test (0.6.3)
77
- rack (>= 1.0)
78
- rails (4.2.9)
79
- actionmailer (= 4.2.9)
80
- actionpack (= 4.2.9)
81
- actionview (= 4.2.9)
82
- activejob (= 4.2.9)
83
- activemodel (= 4.2.9)
84
- activerecord (= 4.2.9)
85
- activesupport (= 4.2.9)
86
- bundler (>= 1.3.0, < 2.0)
87
- railties (= 4.2.9)
88
- sprockets-rails
89
- rails-deprecated_sanitizer (1.0.3)
90
- activesupport (>= 4.2.0.alpha)
91
- rails-dom-testing (1.0.8)
92
- activesupport (>= 4.2.0.beta, < 5.0)
93
- nokogiri (~> 1.6)
94
- rails-deprecated_sanitizer (>= 1.0.1)
95
- rails-html-sanitizer (1.0.3)
96
- loofah (~> 2.0)
97
- rails-observers (0.1.5)
98
- activemodel (>= 4.0)
99
- railties (4.2.9)
100
- actionpack (= 4.2.9)
101
- activesupport (= 4.2.9)
102
- rake (>= 0.8.7)
103
- thor (>= 0.18.1, < 2.0)
104
- rake (12.0.0)
105
- rspec (3.6.0)
106
- rspec-core (~> 3.6.0)
107
- rspec-expectations (~> 3.6.0)
108
- rspec-mocks (~> 3.6.0)
109
- rspec-core (3.6.0)
110
- rspec-support (~> 3.6.0)
111
- rspec-expectations (3.6.0)
112
- diff-lcs (>= 1.2.0, < 2.0)
113
- rspec-support (~> 3.6.0)
114
- rspec-mocks (3.6.0)
115
- diff-lcs (>= 1.2.0, < 2.0)
116
- rspec-support (~> 3.6.0)
117
- rspec-support (3.6.0)
118
- sprockets (3.7.1)
119
- concurrent-ruby (~> 1.0)
120
- rack (> 1, < 3)
121
- sprockets-rails (3.2.0)
122
- actionpack (>= 4.0)
123
- activesupport (>= 4.0)
124
- sprockets (>= 3.0.0)
125
- thor (0.19.4)
126
- thread_safe (0.3.6)
127
- tzinfo (1.2.3)
128
- thread_safe (~> 0.1)
129
-
130
- PLATFORMS
131
- ruby
132
-
133
- DEPENDENCIES
134
- appraisal
135
- bigdecimal (= 1.3.5)
136
- cached_resource!
137
- rails (~> 4.2.0)
138
- rake
139
- rspec
140
-
141
- BUNDLED WITH
142
- 1.17.3