padrino-routing 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{padrino-routing}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
12
- s.date = %q{2009-11-16}
12
+ s.date = %q{2009-11-17}
13
13
  s.description = %q{Enhances padrino with a named route mapping system allowing for advanced routes}
14
14
  s.email = %q{nesquena@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -21,6 +21,8 @@ Gem::Specification.new do |s|
21
21
  ".gitignore",
22
22
  "LICENSE",
23
23
  "README.rdoc",
24
+ "README.rdoc",
25
+ "Rakefile",
24
26
  "Rakefile",
25
27
  "VERSION",
26
28
  "lib/padrino-routing.rb",
@@ -38,12 +40,6 @@ Gem::Specification.new do |s|
38
40
  s.require_paths = ["lib"]
39
41
  s.rubygems_version = %q{1.3.5}
40
42
  s.summary = %q{Named route mapping system}
41
- s.test_files = [
42
- "test/active_support_helpers.rb",
43
- "test/fixtures/routing_app/app.rb",
44
- "test/helper.rb",
45
- "test/test_padrino_routing.rb"
46
- ]
47
43
 
48
44
  if s.respond_to? :specification_version then
49
45
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
data/test/helper.rb CHANGED
@@ -8,8 +8,8 @@ require 'webrat'
8
8
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
9
9
  $LOAD_PATH.unshift(File.dirname(__FILE__))
10
10
  require 'active_support_helpers'
11
- require File.dirname(__FILE__) + '/../../padrino-helpers/lib/padrino-helpers.rb'
12
- require File.dirname(__FILE__) + '/../lib/padrino-routing.rb'
11
+ require 'padrino-helpers'
12
+ require 'padrino-routing'
13
13
 
14
14
  class Test::Unit::TestCase
15
15
  include Padrino::Helpers::OutputHelpers
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: padrino-routing
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Padrino Team
@@ -12,7 +12,7 @@ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
14
 
15
- date: 2009-11-16 00:00:00 -08:00
15
+ date: 2009-11-17 00:00:00 -08:00
16
16
  default_executable:
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
@@ -128,8 +128,5 @@ rubygems_version: 1.3.5
128
128
  signing_key:
129
129
  specification_version: 3
130
130
  summary: Named route mapping system
131
- test_files:
132
- - test/active_support_helpers.rb
133
- - test/fixtures/routing_app/app.rb
134
- - test/helper.rb
135
- - test/test_padrino_routing.rb
131
+ test_files: []
132
+