routes 0.1.1 → 0.1.2
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.rdoc +12 -2
- data/Rakefile +2 -2
- data/VERSION +1 -1
- metadata +6 -6
data/README.rdoc
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
|
-
= routes
|
|
1
|
+
= Routes: rake routes 10x faster with search feature
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
== How to use it
|
|
4
|
+
|
|
5
|
+
In your Rails project, just launch:
|
|
6
|
+
|
|
7
|
+
routes
|
|
8
|
+
|
|
9
|
+
== How to search in my routes
|
|
10
|
+
|
|
11
|
+
To find all the routes containing the words event and show:
|
|
12
|
+
|
|
13
|
+
routes event show
|
|
4
14
|
|
|
5
15
|
== Contributing to routes
|
|
6
16
|
|
data/Rakefile
CHANGED
|
@@ -15,8 +15,8 @@ Jeweler::Tasks.new do |gem|
|
|
|
15
15
|
gem.name = "routes"
|
|
16
16
|
gem.homepage = "http://github.com/bcaccinolo/routes"
|
|
17
17
|
gem.license = "MIT"
|
|
18
|
-
gem.summary = "
|
|
19
|
-
gem.description = "
|
|
18
|
+
gem.summary = "Routes: rake routes 10x faster with search feature"
|
|
19
|
+
gem.description = "Routes: rake routes 10x faster with search feature. A command line to fastly search through the rails routes."
|
|
20
20
|
gem.email = "benoit.caccinolo@gmail.com"
|
|
21
21
|
gem.authors = ["Caccinolo Benoit"]
|
|
22
22
|
# Include your dependencies below. Runtime dependencies are required when using your gem,
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: routes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 31
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.1.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Caccinolo Benoit
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-04-
|
|
18
|
+
date: 2011-04-19 00:00:00 +02:00
|
|
19
19
|
default_executable: routes
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -78,7 +78,7 @@ dependencies:
|
|
|
78
78
|
prerelease: false
|
|
79
79
|
type: :development
|
|
80
80
|
requirement: *id004
|
|
81
|
-
description:
|
|
81
|
+
description: "Routes: rake routes 10x faster with search feature. A command line to fastly search through the rails routes."
|
|
82
82
|
email: benoit.caccinolo@gmail.com
|
|
83
83
|
executables:
|
|
84
84
|
- routes
|
|
@@ -131,7 +131,7 @@ rubyforge_project:
|
|
|
131
131
|
rubygems_version: 1.5.0
|
|
132
132
|
signing_key:
|
|
133
133
|
specification_version: 3
|
|
134
|
-
summary:
|
|
134
|
+
summary: "Routes: rake routes 10x faster with search feature"
|
|
135
135
|
test_files:
|
|
136
136
|
- test/helper.rb
|
|
137
137
|
- test/test_routes.rb
|