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 +0 -1
- data/Rakefile +1 -1
- data/authorize_when.gemspec +3 -3
- data/lib/authorize_when.rb +2 -0
- metadata +4 -7
data/Manifest
CHANGED
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.
|
|
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"
|
data/authorize_when.gemspec
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{authorize_when}
|
|
5
|
-
s.version = "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-
|
|
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", "
|
|
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"]
|
data/lib/authorize_when.rb
CHANGED
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
|
-
-
|
|
7
|
+
- 2
|
|
9
8
|
- 0
|
|
10
|
-
version: 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-
|
|
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
|