authorize_when 0.1.0 → 0.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.
data/Manifest CHANGED
@@ -1,6 +1,5 @@
1
1
  README.textile
2
2
  Rakefile
3
- authorize_when.gemspec
4
3
  init.rb
5
4
  lib/authorize_when.rb
6
5
  lib/authorize_when/forbidden_exception.rb
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('authorize_when', '0.1.0') do |p|
5
+ Echoe.new('authorize_when', '0.2.0') do |p|
6
6
  p.description = "Super simple authorization system for Rails"
7
7
  p.url = "http://github.com/mcasimir/authorize_when"
8
8
  p.author = "Maurizio Casimirri"
@@ -2,15 +2,15 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{authorize_when}
5
- s.version = "0.1.0"
5
+ s.version = "0.2.0"
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-18}
9
+ s.date = %q{2010-09-05}
10
10
  s.description = %q{Super simple authorization system for Rails}
11
11
  s.email = %q{maurizio.cas@gmail.com}
12
12
  s.extra_rdoc_files = ["README.textile", "lib/authorize_when.rb", "lib/authorize_when/forbidden_exception.rb"]
13
- s.files = ["README.textile", "Rakefile", "authorize_when.gemspec", "init.rb", "lib/authorize_when.rb", "lib/authorize_when/forbidden_exception.rb", "Manifest"]
13
+ s.files = ["README.textile", "Rakefile", "init.rb", "lib/authorize_when.rb", "lib/authorize_when/forbidden_exception.rb", "Manifest", "authorize_when.gemspec"]
14
14
  s.homepage = %q{http://github.com/mcasimir/authorize_when}
15
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Authorize_when", "--main", "README.textile"]
16
16
  s.require_paths = ["lib"]
@@ -15,6 +15,8 @@
15
15
  # License along with this library; if not, write to the Free Software
16
16
  # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
17
 
18
+ require 'authorize_when/forbidden_exception'
19
+
18
20
  module AuthorizeWhen
19
21
 
20
22
 
metadata CHANGED
@@ -1,13 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authorize_when
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
5
4
  prerelease: false
6
5
  segments:
7
6
  - 0
8
- - 1
7
+ - 2
9
8
  - 0
10
- version: 0.1.0
9
+ version: 0.2.0
11
10
  platform: ruby
12
11
  authors:
13
12
  - Maurizio Casimirri
@@ -15,7 +14,7 @@ autorequire:
15
14
  bindir: bin
16
15
  cert_chain: []
17
16
 
18
- date: 2010-07-18 00:00:00 +02:00
17
+ date: 2010-09-05 00:00:00 +02:00
19
18
  default_executable:
20
19
  dependencies: []
21
20
 
@@ -32,11 +31,11 @@ extra_rdoc_files:
32
31
  files:
33
32
  - README.textile
34
33
  - Rakefile
35
- - authorize_when.gemspec
36
34
  - init.rb
37
35
  - lib/authorize_when.rb
38
36
  - lib/authorize_when/forbidden_exception.rb
39
37
  - Manifest
38
+ - authorize_when.gemspec
40
39
  has_rdoc: true
41
40
  homepage: http://github.com/mcasimir/authorize_when
42
41
  licenses: []
@@ -56,7 +55,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
56
55
  requirements:
57
56
  - - ">="
58
57
  - !ruby/object:Gem::Version
59
- hash: 3
60
58
  segments:
61
59
  - 0
62
60
  version: "0"
@@ -65,7 +63,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
65
63
  requirements:
66
64
  - - ">="
67
65
  - !ruby/object:Gem::Version
68
- hash: 11
69
66
  segments:
70
67
  - 1
71
68
  - 2