dumpcar 0.1.0.1 → 0.1.0.2

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: 95196debb01edc17a9433667529b67edf4bd3b7a1e0df676bd3b737fe94a0652
4
- data.tar.gz: 30595a819538fc98521e591b3f8d072144c218422b10c50e2797ea844183f200
3
+ metadata.gz: 10d345ae8e6b891eb9706770254feecac90a4440ddb94a38afe43863a381e6db
4
+ data.tar.gz: 1785b183972b7b3441647b3fc272a09168ee023f49de87b8befdd2c671807def
5
5
  SHA512:
6
- metadata.gz: 13e204c50451401802a96e46560c7cdb12a4f10e1274e67eca829b9a310de953ddac72a2bfbbabe52b10360acd4432912a48e9d8ef9467a6c2c6bb72d542c2e7
7
- data.tar.gz: b587d21846fc3c5b7a56823d2ac7bcb3a621a19bd61ee509c6e0cbd30f2f56facd908fd7c8aabfc53e86d415adbb8f3dd40e6c06400657089a21c85a3778d54e
6
+ metadata.gz: e377f5ca42759745881c2942961bd0d2963f5c1ab0fa34b137598416143f989f286b1e3a8abd221a79bd3340e197ae969cd52fec85b07db4a36cf6794ddd42fd
7
+ data.tar.gz: '08a48d141f71ab6a4b01b964a6456a6a58d34a3c16966beb32aaf48dd50ad1cafb8caed661e2393b6ddd2608f62dbe40dee02c037dddc7eddb5695a9aaa4ed40'
data/Appraisals ADDED
@@ -0,0 +1,16 @@
1
+ [6.0, 6.1, 7.0].each do |ver|
2
+ appraise "rails-#{ver}" do
3
+ gem "rails", "~> #{ver}.0"
4
+ gem "concurrent-ruby", "1.3.4" # concurrent-ruby 1.3.5 has an issue fixed on Rails 7.1+
5
+ end
6
+ end
7
+
8
+ [7.1, 7.2, 8.0].each do |ver|
9
+ appraise "rails-#{ver}" do
10
+ gem "rails", "~> #{ver}.0"
11
+ end
12
+ end
13
+
14
+ appraise "rails-edge" do
15
+ gem "rails", github: "rails/rails", branch: "main"
16
+ end
data/NOTICES CHANGED
@@ -21,4 +21,35 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
21
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22
22
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23
23
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
+
26
+ Houdini Project:
27
+
28
+ You can copy, convey, propagate, redistribute and/or modify this program
29
+ under the terms of the GNU General Public License (GPL) as published by
30
+ the Free Software Foundation (FSF), either version 3 of the License, or
31
+ (at your option) any later version of the GPL published by the FSF.
32
+
33
+ This program is distributed in the hope that it will be useful, but
34
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
35
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
36
+ License for more details.
37
+
38
+ You should have received a copy of the GNU General Public License along
39
+ with this program in a file in the toplevel directory called
40
+ "GPL-3.0.txt". If not, see <http://www.gnu.org/licenses/>.
41
+
42
+ In addition to the permission granted by the GPLv3, you also receive
43
+ permissions as written in GNU Lesser General Public License (LGPL),
44
+ Version 3.0, as published by the Free Software Foundation (FSF), either
45
+ version 3 of the License, or (at your option) any later version of the
46
+ LGPL published by the FSF.
47
+
48
+ This program is distributed in the hope that it will be useful, but
49
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
50
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
51
+ for more details.
52
+
53
+ You should have received a copy of the GNU Lesser General Public License
54
+ along with this program in a file in the toplevel directory called
55
+ "LGPL-3.0.txt". If not, see <http://www.gnu.org/licenses/>.
data/README.md CHANGED
@@ -1,23 +1,21 @@
1
1
  # Rails::Db::Dump
2
2
 
3
- TODO: Delete this and the text below, and describe your gem
4
-
5
3
  Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/dumpcar`. To experiment with that code, run `bin/console` for an interactive prompt.
6
4
 
7
5
  ## Installation
8
6
 
9
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
7
+ TODO: Replace `Dumpcar` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
8
 
11
9
  Install the gem and add to the application's Gemfile by executing:
12
10
 
13
11
  ```bash
14
- bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
12
+ bundle add Dumpcar
15
13
  ```
16
14
 
17
15
  If bundler is not being used to manage dependencies, install the gem by executing:
18
16
 
19
17
  ```bash
20
- gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
18
+ gem install Dumpcar
21
19
  ```
22
20
 
23
21
  ## Usage
@@ -28,15 +26,13 @@ TODO: Write usage instructions here
28
26
 
29
27
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
28
 
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
-
33
29
  ## Contributing
34
30
 
35
31
  Bug reports and pull requests are welcome on GitHub at https://github.com/wwahammy/dumpcar. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/wwahammy/dumpcar/blob/main/CODE_OF_CONDUCT.md).
36
32
 
37
33
  ## License
38
34
 
39
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
35
+ The gem is available as open source under the terms of the [LGPL-3.0-or-later license](https://github.com/wwahammy/dumpcar/blob/LICENSE).
40
36
 
41
37
  ## Code of Conduct
42
38
 
data/config.ru CHANGED
@@ -5,5 +5,5 @@ require "bundler"
5
5
 
6
6
  Bundler.require :default, :development
7
7
 
8
- Combustion.initialize! :all
8
+ Combustion.initialize! :active_record
9
9
  run Combustion::Application
@@ -0,0 +1,17 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "irb"
6
+ gem "rake", "~> 13.0"
7
+ gem "rspec", "~> 3.0"
8
+ gem "shoulda-matchers"
9
+ gem "standard", "~> 1.3"
10
+ gem "combustion"
11
+ gem "pg"
12
+ gem "rspec-rails"
13
+ gem "appraisal", "~> 2.0"
14
+ gem "rails", "~> 6.0.0"
15
+ gem "concurrent-ruby", "1.3.4"
16
+
17
+ gemspec path: "../"
@@ -0,0 +1,17 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "irb"
6
+ gem "rake", "~> 13.0"
7
+ gem "rspec", "~> 3.0"
8
+ gem "shoulda-matchers"
9
+ gem "standard", "~> 1.3"
10
+ gem "combustion"
11
+ gem "pg"
12
+ gem "rspec-rails"
13
+ gem "appraisal", "~> 2.0"
14
+ gem "rails", "~> 6.1.0"
15
+ gem "concurrent-ruby", "1.3.4"
16
+
17
+ gemspec path: "../"
@@ -0,0 +1,17 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "irb"
6
+ gem "rake", "~> 13.0"
7
+ gem "rspec", "~> 3.0"
8
+ gem "shoulda-matchers"
9
+ gem "standard", "~> 1.3"
10
+ gem "combustion"
11
+ gem "pg"
12
+ gem "rspec-rails"
13
+ gem "appraisal", "~> 2.0"
14
+ gem "rails", "~> 7.0.0"
15
+ gem "concurrent-ruby", "1.3.4"
16
+
17
+ gemspec path: "../"
@@ -0,0 +1,16 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "irb"
6
+ gem "rake", "~> 13.0"
7
+ gem "rspec", "~> 3.0"
8
+ gem "shoulda-matchers"
9
+ gem "standard", "~> 1.3"
10
+ gem "combustion"
11
+ gem "pg"
12
+ gem "rspec-rails"
13
+ gem "appraisal", "~> 2.0"
14
+ gem "rails", "~> 7.1.0"
15
+
16
+ gemspec path: "../"
@@ -0,0 +1,16 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "irb"
6
+ gem "rake", "~> 13.0"
7
+ gem "rspec", "~> 3.0"
8
+ gem "shoulda-matchers"
9
+ gem "standard", "~> 1.3"
10
+ gem "combustion"
11
+ gem "pg"
12
+ gem "rspec-rails"
13
+ gem "appraisal", "~> 2.0"
14
+ gem "rails", "~> 7.2.0"
15
+
16
+ gemspec path: "../"
@@ -0,0 +1,16 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "irb"
6
+ gem "rake", "~> 13.0"
7
+ gem "rspec", "~> 3.0"
8
+ gem "shoulda-matchers"
9
+ gem "standard", "~> 1.3"
10
+ gem "combustion"
11
+ gem "pg"
12
+ gem "rspec-rails"
13
+ gem "appraisal", "~> 2.0"
14
+ gem "rails", "~> 8.0.0"
15
+
16
+ gemspec path: "../"
@@ -0,0 +1,16 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "irb"
6
+ gem "rake", "~> 13.0"
7
+ gem "rspec", "~> 3.0"
8
+ gem "shoulda-matchers"
9
+ gem "standard", "~> 1.3"
10
+ gem "combustion"
11
+ gem "pg"
12
+ gem "rspec-rails"
13
+ gem "appraisal", "~> 2.0"
14
+ gem "rails", github: "rails/rails", branch: "main"
15
+
16
+ gemspec path: "../"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dumpcar
4
- VERSION = "0.1.0.1"
4
+ VERSION = "0.1.0.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dumpcar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.1
4
+ version: 0.1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Schultz
@@ -36,6 +36,7 @@ files:
36
36
  - ".rspec"
37
37
  - ".ruby-version"
38
38
  - ".standard.yml"
39
+ - Appraisals
39
40
  - CHANGELOG.md
40
41
  - CODE_OF_CONDUCT.md
41
42
  - GPL-3.0.txt
@@ -45,6 +46,13 @@ files:
45
46
  - README.md
46
47
  - Rakefile
47
48
  - config.ru
49
+ - gemfiles/rails_6.0.gemfile
50
+ - gemfiles/rails_6.1.gemfile
51
+ - gemfiles/rails_7.0.gemfile
52
+ - gemfiles/rails_7.1.gemfile
53
+ - gemfiles/rails_7.2.gemfile
54
+ - gemfiles/rails_8.0.gemfile
55
+ - gemfiles/rails_edge.gemfile
48
56
  - lib/dumpcar.rb
49
57
  - lib/dumpcar/generators/dumpcar_generator.rb
50
58
  - lib/dumpcar/instance.rb