friendly_id 3.2.0.rc1 → 3.2.0

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.
@@ -6,7 +6,7 @@ suggestions, ideas and improvements to FriendlyId.
6
6
  * Table of Contents
7
7
  {:toc}
8
8
 
9
- ## 3.2.0 (NOT RELEASED YET)
9
+ ## 3.2.0 (2011-01-17)
10
10
 
11
11
  * Fixed deprecation on Rails edge. Thanks [slbug](http://github.com/slbug)
12
12
  * Removes `:scope` as a find parameter, allowing more flexible finds with
data/Guide.md CHANGED
@@ -80,13 +80,13 @@ with Rails 2.3.x. and 3.0.
80
80
 
81
81
  After installing the gem, add an entry in environment.rb:
82
82
 
83
- config.gem "friendly_id", :version => "~> 3.1"
83
+ config.gem "friendly_id", :version => "~> 3.2"
84
84
 
85
85
  ### Rails 3.0
86
86
 
87
87
  After installing the gem, add an entry in the Gemfile:
88
88
 
89
- gem "friendly_id", "~> 3.1"
89
+ gem "friendly_id", "~> 3.2"
90
90
 
91
91
  ### As a Plugin
92
92
 
data/README.md CHANGED
@@ -41,7 +41,7 @@ continue to support 2.3.x until Rails 3.1 is released.
41
41
  cd my_app
42
42
 
43
43
  # add to Gemfile
44
- gem "friendly_id", "~> 3.1"
44
+ gem "friendly_id", "~> 3.2"
45
45
 
46
46
  rails generate friendly_id
47
47
  rails generate scaffold user name:string cached_slug:string
@@ -3,7 +3,7 @@ module FriendlyId
3
3
  MAJOR = 3
4
4
  MINOR = 2
5
5
  TINY = 0
6
- BUILD = "rc1"
6
+ BUILD = nil
7
7
  STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,13 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: friendly_id
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: true
4
+ prerelease: false
5
5
  segments:
6
6
  - 3
7
7
  - 2
8
8
  - 0
9
- - rc1
10
- version: 3.2.0.rc1
9
+ version: 3.2.0
11
10
  platform: ruby
12
11
  authors:
13
12
  - Norman Clarke
@@ -17,7 +16,7 @@ autorequire:
17
16
  bindir: bin
18
17
  cert_chain: []
19
18
 
20
- date: 2011-01-12 00:00:00 -03:00
19
+ date: 2011-01-17 00:00:00 +01:00
21
20
  default_executable:
22
21
  dependencies:
23
22
  - !ruby/object:Gem::Dependency
@@ -160,20 +159,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
160
159
  requirements:
161
160
  - - ">="
162
161
  - !ruby/object:Gem::Version
163
- hash: -1225128914130125951
162
+ hash: -3183738274277774801
164
163
  segments:
165
164
  - 0
166
165
  version: "0"
167
166
  required_rubygems_version: !ruby/object:Gem::Requirement
168
167
  none: false
169
168
  requirements:
170
- - - ">"
169
+ - - ">="
171
170
  - !ruby/object:Gem::Version
172
171
  segments:
173
- - 1
174
- - 3
175
- - 1
176
- version: 1.3.1
172
+ - 0
173
+ version: "0"
177
174
  requirements: []
178
175
 
179
176
  rubyforge_project: friendly-id