acts_as_nice_url 2.0.0 → 2.0.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/README +2 -2
- data/Rakefile +1 -1
- data/init.rb +1 -1
- data/lib/{nice_url.rb → acts_as_nice_url.rb} +0 -0
- metadata +3 -3
data/README
CHANGED
|
@@ -15,11 +15,11 @@ In your Rails app root, use the following command-line :
|
|
|
15
15
|
|
|
16
16
|
or install it system-wide :
|
|
17
17
|
|
|
18
|
-
$ sudo gem install
|
|
18
|
+
$ sudo gem install acts_as_nice_url
|
|
19
19
|
|
|
20
20
|
and require it in Rails::Initializer (environment.rb) :
|
|
21
21
|
|
|
22
|
-
config.gem '
|
|
22
|
+
config.gem 'acts_as_nice_url'
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
Example
|
data/Rakefile
CHANGED
|
@@ -6,7 +6,7 @@ require 'rubyforge'
|
|
|
6
6
|
|
|
7
7
|
SPEC = Gem::Specification.new do |s|
|
|
8
8
|
s.name = 'acts_as_nice_url'
|
|
9
|
-
s.version = '2.0.
|
|
9
|
+
s.version = '2.0.1'
|
|
10
10
|
s.authors = ['Nicolas Cavigneaux']
|
|
11
11
|
s.email = 'nico@bounga.org'
|
|
12
12
|
s.homepage = 'http://www.bitbucket.org/Bounga/acts_as_nice_url'
|
data/init.rb
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$:.unshift "#{File.dirname(__FILE__)}/lib"
|
|
2
|
-
require '
|
|
2
|
+
require 'acts_as_nice_url'
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acts_as_nice_url
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nicolas Cavigneaux
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-02-17 00:00:00 +01:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -37,7 +37,7 @@ files:
|
|
|
37
37
|
- README
|
|
38
38
|
- LICENSE
|
|
39
39
|
- uninstall.rb
|
|
40
|
-
- lib/
|
|
40
|
+
- lib/acts_as_nice_url.rb
|
|
41
41
|
- tasks/nice_url_tasks.rake
|
|
42
42
|
- test/nice_url_test.rb
|
|
43
43
|
has_rdoc: true
|