acts_as_list_with_sti_support 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.specification CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_list_with_sti_support
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
- - 0
8
- - 2
9
7
  - 1
10
- version: 0.2.1
8
+ - 0
9
+ - 0
10
+ version: 1.0.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Coroutine
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-07-13 00:00:00 -05:00
19
+ date: 2010-10-10 00:00:00 -05:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
data/README.rdoc CHANGED
@@ -70,26 +70,26 @@ to cause the position values to be scoped by type.
70
70
 
71
71
 
72
72
 
73
- == Installation (Rails 2)
73
+ == Installation (Rails 3)
74
74
 
75
- Install me from RubyGems.org and add a gem dependency in the appropriate file.
75
+ Install me from RubyGems.org by adding a gem dependency to your Gemfile. Bundler does
76
+ the rest.
76
77
 
77
- $ gem install acts_as_list_with_sti_support
78
+ gem "acts_as_list_with_sti_support"
78
79
 
79
- Or install me as a plugin.
80
+ $ bundle install
80
81
 
81
- $ script/plugin install git://github.com/coroutine/acts_as_list_with_sti_support.git
82
82
 
83
83
 
84
+ == Installation (Rails 2)
84
85
 
85
- == Installation (Rails 3)
86
+ Install me from RubyGems.org and add a gem dependency in the appropriate file.
86
87
 
87
- Install me from RubyGems.org by adding a gem dependency to your Gemfile. Bundler does
88
- the rest.
88
+ $ gem install acts_as_list_with_sti_support
89
89
 
90
- gem "acts_as_list_with_sti_support"
90
+ Or install me as a plugin.
91
91
 
92
- $ bundle install
92
+ $ script/plugin install git://github.com/coroutine/acts_as_list_with_sti_support.git
93
93
 
94
94
 
95
95
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{acts_as_list_with_sti_support}
8
- s.version = "1.0.0"
8
+ s.version = "1.0.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Coroutine", "John Dugan"]
12
- s.date = %q{2010-10-10}
12
+ s.date = %q{2010-11-05}
13
13
  s.description = %q{This acts_as extension does everything acts_as_list does, but it also works in single table inheritance designs and accepts less brain-damaged scope syntax.}
14
14
  s.email = %q{jdugan@coroutine.com}
15
15
  s.extra_rdoc_files = [
@@ -80,7 +80,7 @@ module Coroutine #:nodoc:
80
80
 
81
81
  # if no default scoping, order by position
82
82
  if self.default_scoping.empty?
83
- default_scope :order => column
83
+ default_scope :order => column.to_s
84
84
  end
85
85
 
86
86
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_list_with_sti_support
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 1
10
+ version: 1.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Coroutine
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-10-10 00:00:00 -05:00
19
+ date: 2010-11-05 00:00:00 -05:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency