active_collection 0.2.0 → 0.2.1
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.yml +1 -1
- data/active_collection.gemspec +3 -3
- data/lib/active_collection/includes.rb +1 -1
- data/lib/active_collection/order.rb +1 -1
- data/lib/active_collection/pagination.rb +1 -1
- data/lib/active_collection/scope.rb +4 -1
- metadata +3 -3
data/Rakefile
CHANGED
@@ -5,8 +5,8 @@ begin
|
|
5
5
|
require 'jeweler'
|
6
6
|
Jeweler::Tasks.new do |gem|
|
7
7
|
gem.name = "active_collection"
|
8
|
-
gem.summary = %
|
9
|
-
gem.description = %
|
8
|
+
gem.summary = %{A lazy-loading, Array-like collection proxy for ActiveRecord that understands conditions and paging.}
|
9
|
+
gem.description = %{A lazy-loading, Array-like collection proxy for ActiveRecord that understands conditions and paging.}
|
10
10
|
gem.email = "martin.emde@gmail.com"
|
11
11
|
gem.homepage = "http://github.com/martinemde/active_collection"
|
12
12
|
gem.authors = ["Martin Emde"]
|
data/VERSION.yml
CHANGED
data/active_collection.gemspec
CHANGED
@@ -5,12 +5,12 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{active_collection}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Martin Emde"]
|
12
12
|
s.date = %q{2009-09-14}
|
13
|
-
s.description = %q{
|
13
|
+
s.description = %q{A lazy-loading, Array-like collection proxy for ActiveRecord that understands conditions and paging.}
|
14
14
|
s.email = %q{martin.emde@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
@@ -40,7 +40,7 @@ Gem::Specification.new do |s|
|
|
40
40
|
s.require_paths = ["lib"]
|
41
41
|
s.rubyforge_project = %q{collection}
|
42
42
|
s.rubygems_version = %q{1.3.5}
|
43
|
-
s.summary = %q{
|
43
|
+
s.summary = %q{A lazy-loading, Array-like collection proxy for ActiveRecord that understands conditions and paging.}
|
44
44
|
s.test_files = [
|
45
45
|
"spec/active_collection_spec.rb",
|
46
46
|
"spec/pagination_spec.rb",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_collection
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Emde
|
@@ -22,7 +22,7 @@ dependencies:
|
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: "0"
|
24
24
|
version:
|
25
|
-
description:
|
25
|
+
description: A lazy-loading, Array-like collection proxy for ActiveRecord that understands conditions and paging.
|
26
26
|
email: martin.emde@gmail.com
|
27
27
|
executables: []
|
28
28
|
|
@@ -76,7 +76,7 @@ rubyforge_project: collection
|
|
76
76
|
rubygems_version: 1.3.5
|
77
77
|
signing_key:
|
78
78
|
specification_version: 3
|
79
|
-
summary:
|
79
|
+
summary: A lazy-loading, Array-like collection proxy for ActiveRecord that understands conditions and paging.
|
80
80
|
test_files:
|
81
81
|
- spec/active_collection_spec.rb
|
82
82
|
- spec/pagination_spec.rb
|