New Upstream Snapshot - ruby-acts-as-tree

Ready changes

Summary

Merged new upstream version: 2.9.1+git20220216.1.9895c5e (was: 2.9.1).

Resulting package

Built on 2023-01-05T18:07 (took 5m37s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-snapshots ruby-acts-as-tree

Lintian Result

Diff

diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 5ac62da..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-*.gem
-.bundle
-pkg/*
-.rvmrc
-Gemfile.lock
-gemfiles/*.gemfile.lock
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 2aaadde..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-language: ruby
-
-sudo: false
-cache: bundler
-
-before_install: gem install bundler -v '~> 1.15' --conservative --minimal-deps
-
-matrix:
-  include:
-    # using ruby 1.9.3 for lack of 1.9.2 rvm binaries
-    - rvm: 1.9.3
-      gemfile: gemfiles/rails-3.0.gemfile
-    - rvm: 1.9.3
-      gemfile: gemfiles/rails-3.1.gemfile
-    - rvm: 1.9.3
-      gemfile: gemfiles/rails-3.2.gemfile
-    # rails 4.x requries ruby >= 1.9.3
-    - rvm: 1.9.3
-      gemfile: gemfiles/rails-4.0.gemfile
-    - rvm: 1.9.3
-      gemfile: gemfiles/rails-4.1.gemfile
-    - rvm: 1.9.3
-      gemfile: gemfiles/rails-4.2.gemfile
-    # rails 5.x requires ruby >= 2.2.2
-    - rvm: 2.2.10
-      gemfile: gemfiles/rails-5.0.gemfile
-    - rvm: 2.2.10
-      gemfile: gemfiles/rails-5.1.gemfile
-    - rvm: 2.2.10
-      gemfile: gemfiles/rails-5.2.gemfile
-    # rails 6.x requires ruby >= 2.5.0
-    - rvm: 2.5.6
-      gemfile: gemfiles/rails-6.0.gemfile
-    - rvm: 2.6.4
-      gemfile: gemfiles/rails-6.0.gemfile
-    # test latest rails and ruby
-    - rvm: 2.7.0
-      gemfile: gemfiles/rails-6.0.gemfile
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..8fcd02e
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2007 David Heinemeier Hansson
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
index 9f1ad4a..d46d225 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
 # ActsAsTree
-[![Build Status](https://secure.travis-ci.org/amerine/acts_as_tree.svg?branch=master)](http://travis-ci.org/amerine/acts\_as\_tree)
+[![CI](https://github.com/amerine/acts_as_tree/actions/workflows/ci.yml/badge.svg)](https://github.com/amerine/acts_as_tree/actions/workflows/ci.yml)
 [![Gem Version](https://badge.fury.io/rb/acts_as_tree.svg)](http://badge.fury.io/rb/acts\_as\_tree)
 
 ActsAsTree extends ActiveRecord to add simple support for organizing items into parent–children relationships. By default, ActsAsTree expects a foreign key column called `parent_id`.
@@ -21,7 +21,7 @@ root.children # => [child1]
 root.children.first.children.first # => subchild1
 ```
 
-We also have a convenient `TreeView` module you can mixin if you want a little visual representation of the tree strucuture. Example:
+We also have a convenient `TreeView` module you can mixin if you want a little visual representation of the tree structure. Example:
 
 ```ruby
 class Category < ActiveRecord::Base
diff --git a/debian/changelog b/debian/changelog
index bd7cb42..2d0751c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-ruby-acts-as-tree (2.9.1-2) UNRELEASED; urgency=medium
+ruby-acts-as-tree (2.9.1+git20220216.1.9895c5e-1) UNRELEASED; urgency=medium
 
   * Update standards version to 4.6.2, no changes needed.
+  * New upstream snapshot.
 
- -- Debian Janitor <janitor@jelmer.uk>  Thu, 05 Jan 2023 13:08:44 -0000
+ -- Debian Janitor <janitor@jelmer.uk>  Thu, 05 Jan 2023 18:03:34 -0000
 
 ruby-acts-as-tree (2.9.1-1) unstable; urgency=medium
 
diff --git a/gemfiles/rails-6.1.gemfile b/gemfiles/rails-6.1.gemfile
new file mode 100644
index 0000000..c06ea11
--- /dev/null
+++ b/gemfiles/rails-6.1.gemfile
@@ -0,0 +1,6 @@
+source "https://rubygems.org"
+
+gem "rails", "~> 6.1.0"
+gem "sqlite3", "~> 1.4"
+
+gemspec path: "../"
diff --git a/gemfiles/rails-7.0.gemfile b/gemfiles/rails-7.0.gemfile
new file mode 100644
index 0000000..3d6eff9
--- /dev/null
+++ b/gemfiles/rails-7.0.gemfile
@@ -0,0 +1,6 @@
+source "https://rubygems.org"
+
+gem "rails", "~> 7.0.1"
+gem "sqlite3", "~> 1.4"
+
+gemspec path: "../"

More details

Full run details