openstax_rescue_from 4.0.2 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53fd87c21936796f9da1611b6fbd604471bb951343e149f70c38ffbe52c261ac
4
- data.tar.gz: 8f76e5b4a4909df2d994dd95a5d76682435c0303524b90aa3c303e34a9959b54
3
+ metadata.gz: 9163a3a8cb7a7a6baad57ca29a8d81e7ad0364babd83c49effa32a2bb9e2b3d3
4
+ data.tar.gz: 3bb60e52fa77a815c6b28b66bffcc43b6b7199d69fdf4813958710ae2f2df6c6
5
5
  SHA512:
6
- metadata.gz: 1cb208f9a3c24dadbee74c6bc0af483a652aca813135bfd920fa566345feecdf7ecd73c6443fc14fb58af8df36c334016e3e0eeb05d79daeda379777e5af7f7f
7
- data.tar.gz: 0db33d90e194ac3c3985fa3dc81c90ae4bf6ea2da7ec18d5e91572b16f2c3bd880550def47a31e06c12a31dc23a5599bbafb893c1c8c5e6186bb47d497e95de8
6
+ metadata.gz: 64f22d8daaf77a2e3a2aa118a329939bbe5e309ab5f30f0f6b7e72a28ee6204e6569009b47c50687bc9907f45649385369ef8e7b2fff5945c89a6767f912d2c8
7
+ data.tar.gz: b36c2d0ae5250ff5c2d302721533d80517975b9048ade2bd616fb01fd19eb09cea7c7f2c19fbb1dd79b496d3105d51e0e2c689dc9d1f65a4868b1c3fc2257e5f
@@ -0,0 +1,25 @@
1
+ name: Tests
2
+ on:
3
+ pull_request:
4
+ push:
5
+ branches:
6
+ - main
7
+ jobs:
8
+ tests:
9
+ timeout-minutes: 30
10
+ runs-on: ubuntu-18.04
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: actions/setup-ruby@v1
14
+ with:
15
+ ruby-version: 2.6
16
+ - uses: actions/cache@v2
17
+ with:
18
+ path: vendor/bundle
19
+ key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
20
+ restore-keys: |
21
+ ${{ runner.os }}-gems-
22
+ - name: Setup
23
+ run: bundle install
24
+ - name: Test
25
+ run: bundle exec rake spec
data/.gitignore CHANGED
@@ -1,13 +1,16 @@
1
- .bundle
2
- .yardoc
1
+ .bundle/
2
+ log/*.log
3
+ pkg/
4
+ spec/dummy/db/*.sqlite3
5
+ spec/dummy/log/*.log
6
+ spec/dummy/tmp/
7
+ spec/dummy/.sass-cache
8
+ *.gem
3
9
  Gemfile.lock
4
- _yardoc
5
- coverage
6
- doc
7
- pkg
8
- spec/reports
9
- tmp
10
- *.log
11
10
  .byebug_history
11
+
12
+ # Finder
12
13
  .DS_Store
14
+
15
+ # Unix temp files
13
16
  *~
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # RescueFrom
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/openstax_rescue_from.svg)](http://badge.fury.io/rb/openstax_rescue_from)
4
- [![Build Status](https://travis-ci.org/openstax/rescue_from.svg?branch=master)](https://travis-ci.org/openstax/rescue_from)
4
+ [![Tests](https://github.com/openstax/rescue_from/workflows/Tests/badge.svg)](https://github.com/openstax/rescue_from/actions?query=workflow:Tests)
5
5
  [![Code Climate](https://codeclimate.com/github/openstax/rescue_from/badges/gpa.svg)](https://codeclimate.com/github/openstax/rescue_from)
6
6
 
7
7
  This is the gem that brings together disparate systems within OpenStax and abstracts consistent exception rescuing with html and json responses, and email notifying
data/bin/rake ADDED
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ #
5
+ # This file was generated by Bundler.
6
+ #
7
+ # The application 'rake' is installed as part of a gem, and
8
+ # this file is here to facilitate running it.
9
+ #
10
+
11
+ require "pathname"
12
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
13
+ Pathname.new(__FILE__).realpath)
14
+
15
+ bundle_binstub = File.expand_path("../bundle", __FILE__)
16
+
17
+ if File.file?(bundle_binstub)
18
+ if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
19
+ load(bundle_binstub)
20
+ else
21
+ abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
22
+ Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
23
+ end
24
+ end
25
+
26
+ require "rubygems"
27
+ require "bundler/setup"
28
+
29
+ load Gem.bin_path("rake", "rake")
data/bin/rspec ADDED
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ #
5
+ # This file was generated by Bundler.
6
+ #
7
+ # The application 'rspec' is installed as part of a gem, and
8
+ # this file is here to facilitate running it.
9
+ #
10
+
11
+ require "pathname"
12
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
13
+ Pathname.new(__FILE__).realpath)
14
+
15
+ bundle_binstub = File.expand_path("../bundle", __FILE__)
16
+
17
+ if File.file?(bundle_binstub)
18
+ if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
19
+ load(bundle_binstub)
20
+ else
21
+ abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
22
+ Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
23
+ end
24
+ end
25
+
26
+ require "rubygems"
27
+ require "bundler/setup"
28
+
29
+ load Gem.bin_path("rspec-core", "rspec")
@@ -1,5 +1,5 @@
1
1
  module OpenStax
2
2
  module RescueFrom
3
- VERSION = '4.0.2'
3
+ VERSION = '4.1.0'
4
4
  end
5
5
  end
@@ -20,10 +20,11 @@ Gem::Specification.new do |spec|
20
20
 
21
21
  spec.required_ruby_version = '>= 2.0'
22
22
 
23
- spec.add_dependency "rails", '>= 3.1', '< 6.0'
23
+ spec.add_dependency "rails", '>= 3.1', '< 7.0'
24
24
 
25
25
  spec.add_development_dependency "bundler"
26
- spec.add_development_dependency "pg"
26
+ spec.add_development_dependency "sqlite3"
27
+ spec.add_development_dependency "listen"
27
28
  spec.add_development_dependency "rspec-rails"
28
29
  spec.add_development_dependency "rails-controller-testing"
29
30
  spec.add_development_dependency "database_cleaner"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openstax_rescue_from
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
4
+ version: 4.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - JP Slavinsky
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-08-02 00:00:00.000000000 Z
12
+ date: 2021-02-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -20,7 +20,7 @@ dependencies:
20
20
  version: '3.1'
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '6.0'
23
+ version: '7.0'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
@@ -30,7 +30,7 @@ dependencies:
30
30
  version: '3.1'
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '6.0'
33
+ version: '7.0'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: bundler
36
36
  requirement: !ruby/object:Gem::Requirement
@@ -46,7 +46,21 @@ dependencies:
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  - !ruby/object:Gem::Dependency
49
- name: pg
49
+ name: sqlite3
50
+ requirement: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: listen
50
64
  requirement: !ruby/object:Gem::Requirement
51
65
  requirements:
52
66
  - - ">="
@@ -125,15 +139,17 @@ executables:
125
139
  extensions: []
126
140
  extra_rdoc_files: []
127
141
  files:
142
+ - ".github/workflows/tests.yml"
128
143
  - ".gitignore"
129
144
  - ".rspec"
130
- - ".travis.yml"
131
145
  - Gemfile
132
146
  - LICENSE.txt
133
147
  - README.md
134
148
  - Rakefile
135
149
  - app/views/errors/any.html.erb
136
150
  - bin/console
151
+ - bin/rake
152
+ - bin/rspec
137
153
  - bin/setup
138
154
  - lib/generators/openstax/rescue_from/install/install_generator.rb
139
155
  - lib/generators/openstax/rescue_from/install/templates/rescue_from.rb
@@ -172,7 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
172
188
  - !ruby/object:Gem::Version
173
189
  version: '0'
174
190
  requirements: []
175
- rubygems_version: 3.0.3
191
+ rubygems_version: 3.2.7
176
192
  signing_key:
177
193
  specification_version: 4
178
194
  summary: Common exception `rescue_from` handling for OpenStax sites.
data/.travis.yml DELETED
@@ -1,17 +0,0 @@
1
- branches:
2
- only:
3
- - master
4
- sudo: false
5
- dist: trusty
6
- language: ruby
7
- rvm: 2.6.1
8
- addons:
9
- postgresql: 9.6
10
- cache: bundler
11
- bundler_args: --retry=6
12
- before_script:
13
- - bundle exec rake --trace db:setup
14
- script:
15
- - bundle exec rspec --format progress --tag ~type:acceptance
16
- notifications:
17
- email: false