acts_as_nested_by 0.1.3 → 0.1.4
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.
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/acts_as_nested_by.gemspec +3 -3
- metadata +3 -3
data/Rakefile
CHANGED
|
@@ -8,11 +8,11 @@ begin
|
|
|
8
8
|
gem.summary = %Q{Add a acts_as_nested_by :nesting_model class method to ActiveRecord::Base models}
|
|
9
9
|
gem.description = %Q{
|
|
10
10
|
The acts_as_nested_by class method add 3 instance methods to the model.
|
|
11
|
-
nested_by_nesting_model=(flag) sets the nesting_model
|
|
11
|
+
nested_by_nesting_model=(flag) sets the nesting_model
|
|
12
12
|
nested_by_nesting_model returns true if nested_by nesting_model
|
|
13
13
|
nested_by_nesting_model? alias for nested_by_nesting_model
|
|
14
14
|
}
|
|
15
|
-
gem.email = "thomas
|
|
15
|
+
gem.email = "thomas@limpirium.net"
|
|
16
16
|
gem.homepage = "http://github.com/tehael/acts_as_nested_by"
|
|
17
17
|
gem.authors = ["Thomas Limp"]
|
|
18
18
|
gem.add_development_dependency "shoulda", ">= 0"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.4
|
data/acts_as_nested_by.gemspec
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "acts_as_nested_by"
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Thomas Limp"]
|
|
12
12
|
s.date = "2012-05-08"
|
|
13
|
-
s.description = "\n The acts_as_nested_by class method add 3 instance methods to the model.\n nested_by_nesting_model=(flag) sets the nesting_model
|
|
14
|
-
s.email = "thomas
|
|
13
|
+
s.description = "\n The acts_as_nested_by class method add 3 instance methods to the model.\n nested_by_nesting_model=(flag) sets the nesting_model\n nested_by_nesting_model returns true if nested_by nesting_model\n nested_by_nesting_model? alias for nested_by_nesting_model\n "
|
|
14
|
+
s.email = "thomas@limpirium.net"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"LICENSE",
|
|
17
17
|
"README.rdoc"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acts_as_nested_by
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -60,10 +60,10 @@ dependencies:
|
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: '0'
|
|
62
62
|
description: ! "\n The acts_as_nested_by class method add 3 instance methods
|
|
63
|
-
to the model.\n nested_by_nesting_model=(flag) sets the nesting_model
|
|
63
|
+
to the model.\n nested_by_nesting_model=(flag) sets the nesting_model\n nested_by_nesting_model
|
|
64
64
|
returns true if nested_by nesting_model\n nested_by_nesting_model? alias for
|
|
65
65
|
nested_by_nesting_model\n "
|
|
66
|
-
email: thomas
|
|
66
|
+
email: thomas@limpirium.net
|
|
67
67
|
executables: []
|
|
68
68
|
extensions: []
|
|
69
69
|
extra_rdoc_files:
|