authority 2.8.0 → 2.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.markdown +4 -0
- data/authority.gemspec +1 -0
- data/lib/authority/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78956bd3adcf1276d5e54a6ed16dcf58efadfc42
|
4
|
+
data.tar.gz: e5dabb9b9806e790713e9f73e903ba1453fc2490
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd3b8f16795dbceaa0b6282a038e6df139c3ca7a5abde3ff37f7decd23910405a96c9bbfce84081840dd8e6e18577f10b758541fc5a82c9c3c6a79ad8f1559a2
|
7
|
+
data.tar.gz: 64ffd79650035946a337270a17ba1abb4cae2e3b7f266d0bd716d1e2e0d8c8df67b871c1cbb6f69868a82d325fcc5e69bbed5c38539b4410d8ef6ca57c9027b2
|
data/CHANGELOG.markdown
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
Authority does its best to use [semantic versioning](http://semver.org).
|
4
4
|
|
5
|
+
## v2.8.1
|
6
|
+
|
7
|
+
Add license to gemspec, thanks to notice from Benjamin Fleischer - see [his blog post](http://www.benjaminfleischer.com/2013/07/12/make-the-world-a-better-place-put-a-license-in-your-gemspec/)
|
8
|
+
|
5
9
|
## v2.8.0
|
6
10
|
|
7
11
|
New controller method `ensure_authorization_performed`, thanks to [Igor Davydov](https://github.com/div).
|
data/authority.gemspec
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
require File.expand_path('../lib/authority/version', __FILE__)
|
3
3
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
|
+
gem.license = 'MIT'
|
5
6
|
gem.authors = ["Nathan Long", "Adam Hunter"]
|
6
7
|
gem.email = ["nathanmlong@gmail.com", "adamhunter@me.com"]
|
7
8
|
gem.summary = %q{Authority helps you authorize actions in your Rails app using plain Ruby methods on Authorizer classes.}
|
data/lib/authority/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: authority
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.8.
|
4
|
+
version: 2.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nathan Long
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-09-
|
12
|
+
date: 2013-09-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -88,7 +88,8 @@ files:
|
|
88
88
|
- spec/support/example_classes.rb
|
89
89
|
- spec/support/mock_rails.rb
|
90
90
|
homepage: https://github.com/nathanl/authority
|
91
|
-
licenses:
|
91
|
+
licenses:
|
92
|
+
- MIT
|
92
93
|
metadata: {}
|
93
94
|
post_install_message:
|
94
95
|
rdoc_options: []
|