requested 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest CHANGED
@@ -3,5 +3,4 @@ Rakefile
3
3
  init.rb
4
4
  lib/requested.rb
5
5
  lib/requested/action.rb
6
- requested.gemspec
7
6
  Manifest
data/README.textile CHANGED
@@ -33,7 +33,7 @@ h3. As a gem:
33
33
  Add this line to your @environment.rb@:
34
34
 
35
35
  <pre>
36
- config.gem "requested", :source => 'http://gems.github.com'
36
+ config.gem "requested"
37
37
  </pre>
38
38
 
39
39
  and then do
@@ -45,7 +45,7 @@ and then do
45
45
  or just
46
46
 
47
47
  <pre>
48
- gem install requested --source='http://gems.github.com'
48
+ gem install requested
49
49
  </pre>
50
50
 
51
51
 
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('requested', '0.1.1') do |p|
5
+ Echoe.new('requested', '0.1.2') do |p|
6
6
  p.description = "ActionController::Request improvements with several methods to get info on requested actions"
7
7
  p.url = "http://github.com/mcasimir/requested"
8
8
  p.author = "Maurizio Casimirri"
@@ -50,7 +50,7 @@ module Requested
50
50
  end
51
51
 
52
52
  def single_object?
53
- self.rest? && !self.index
53
+ self.rest? && !self.index?
54
54
  end
55
55
 
56
56
  def collection?
data/requested.gemspec CHANGED
@@ -2,15 +2,15 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{requested}
5
- s.version = "0.1.1"
5
+ s.version = "0.1.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Maurizio Casimirri"]
9
- s.date = %q{2010-07-17}
9
+ s.date = %q{2010-07-18}
10
10
  s.description = %q{ActionController::Request improvements with several methods to get info on requested actions}
11
11
  s.email = %q{maurizio.cas@gmail.com}
12
12
  s.extra_rdoc_files = ["README.textile", "lib/requested.rb", "lib/requested/action.rb"]
13
- s.files = ["README.textile", "Rakefile", "init.rb", "lib/requested.rb", "lib/requested/action.rb", "requested.gemspec", "Manifest"]
13
+ s.files = ["README.textile", "Rakefile", "init.rb", "lib/requested.rb", "lib/requested/action.rb", "Manifest", "requested.gemspec"]
14
14
  s.homepage = %q{http://github.com/mcasimir/requested}
15
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Requested", "--main", "README.textile"]
16
16
  s.require_paths = ["lib"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: requested
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Maurizio Casimirri
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-07-17 00:00:00 +02:00
18
+ date: 2010-07-18 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
@@ -35,8 +35,8 @@ files:
35
35
  - init.rb
36
36
  - lib/requested.rb
37
37
  - lib/requested/action.rb
38
- - requested.gemspec
39
38
  - Manifest
39
+ - requested.gemspec
40
40
  has_rdoc: true
41
41
  homepage: http://github.com/mcasimir/requested
42
42
  licenses: []