authorize_action 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8ebe8ac2af61b9a1b3cd9691a7b74d3dddb3757b
4
- data.tar.gz: de841f932b9049435f1d9b21dc0a13c5a50be159
3
+ metadata.gz: 671fe84e72f82cb73a6660deb5d613bf68b1d415
4
+ data.tar.gz: 907f6837a6ea0130f48489f32dbfee7760ade664
5
5
  SHA512:
6
- metadata.gz: d4afd92d5a6ede7a7ae0bcfd554a6a522a1edef4cf8f76da2144592b50828d9f5980cc51e7c9533144bb05f083033ff34384b62f5159ebda8ea06b47e62b1c90
7
- data.tar.gz: 69c94cc9c91a9ee7dda1576d107a32d848004ad68721e10a7a7ce56d323da0c65ddca1b28717b8af758ed71934a7d40dcb73610b51ef9a6bfbcb78834c6f1603
6
+ metadata.gz: 23a1e24bfafafe17e863c286699f92996564a25fe47186a57bddcd501f2f37cef29dfb347bd9377df08aa032d7ff6646f9ffdaba30cd2fd6a8ab8ffb19584d41
7
+ data.tar.gz: 694c078f3da0702cb3668f8a07b6663dad8111c7fc63dbf0dbc8d334ba161fd4d89bff056ed9e630132346b9f988a99cb76d5b73a343fb1303b2f982727b4200
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,7 +1,7 @@
1
1
  rvm:
2
2
  - 2.0.0
3
- - 2.1.6
4
- - 2.2.2
3
+ - 2.1.7
4
+ - 2.2.3
5
5
  - ruby-head
6
6
  notifications:
7
7
  recipients:
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 1.1.2 - 2015/11/20
2
+
3
+ * Minor wording improvements in README.
4
+
1
5
  ### 1.1.1 - 2015/07/08
2
6
 
3
7
  * Fix gem checksum.
data/README.md CHANGED
@@ -6,10 +6,10 @@
6
6
  [![Dependency Status](https://gemnasium.com/jarmo/authorize_action.png)](https://gemnasium.com/jarmo/authorize_action)
7
7
  [![Code Climate](https://codeclimate.com/github/jarmo/authorize_action/badges/gpa.svg)](https://codeclimate.com/github/jarmo/authorize_action)
8
8
 
9
- Really **secure** and **simple** authorization library for your [Rails](http://rubyonrails.org/), [Sinatra](http://www.sinatrarb.com/) or whatever web framework, which doesn't suck.
9
+ Really **secure** and **simple** authorization library for your [Rails](http://rubyonrails.org/), [Sinatra](http://www.sinatrarb.com/) or whatever web framework, which just works.
10
10
 
11
11
  According to [Ruby Toolbox](https://www.ruby-toolbox.com/categories/rails_authorization) there are
12
- at least 28 authorization libraries/frameworks available just for Rails. And yet, they all suck.
12
+ at least 28 authorization libraries/frameworks available just for Rails. And yet, they all seem to be overly complex or insecure by default.
13
13
  At least that's why I've never used any of them in my projects.
14
14
  All of this is the reason I've finally decided to create my own library to solve
15
15
  the problem of authorization once and for all for all Ruby (web) frameworks.
@@ -70,13 +70,17 @@ _authorize_action_ is cryptographically signed. To be sure the gem you install h
70
70
 
71
71
  * Verify gem checksum:
72
72
 
73
- $ gem fetch authorize_action && \
74
- ruby -rdigest/sha2 -e "puts Digest::SHA512.new.hexdigest(File.read(Dir.glob('authorize_action-*.gem')[0]))" && \
75
- curl -Ls https://raw.githubusercontent.com/jarmo/authorize_action/master/checksum/`ls authorize_action-*.gem`.sha512
73
+ ```
74
+ $ gem fetch authorize_action && \
75
+ ruby -rdigest/sha2 -e "puts Digest::SHA512.new.hexdigest(File.read(Dir.glob('authorize_action-*.gem')[0]))" && \
76
+ curl -Ls https://raw.githubusercontent.com/jarmo/authorize_action/master/checksum/\`ls authorize_action-*.gem\`.sha512
77
+ ```
76
78
 
77
79
  * Add my public key (if you haven’t already) as a trusted certificate:
78
80
 
79
- `$ gem cert --add <(curl -Ls https://raw.github.com/jarmo/authorize_action/master/certs/jarmo.pem)`
81
+ ```
82
+ $ gem cert --add <(curl -Ls https://raw.github.com/jarmo/authorize_action/master/certs/jarmo.pem)
83
+ ```
80
84
 
81
85
  * Add this line to your application's Gemfile:
82
86
 
@@ -4,10 +4,10 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "authorize_action"
7
- spec.version = "1.1.1"
7
+ spec.version = "1.1.2"
8
8
  spec.authors = ["Jarmo Pertman"]
9
9
  spec.email = ["jarmo.p@gmail.com"]
10
- spec.description = %q{Really secure and simple authorization library for your Rails, Sinatra or whatever web framework, which doesn't suck.}
10
+ spec.description = %q{Really secure and simple authorization library for your Rails, Sinatra or whatever web framework, which just works.}
11
11
  spec.summary = %q{Really secure and simple authorization library.}
12
12
  spec.homepage = "https://github.com/jarmo/authorize_action"
13
13
  spec.license = "MIT"
@@ -0,0 +1 @@
1
+ 9d223d678956d23482689e9dff8b17e0674b0927d4e0f60f75d879cdade6c66f32b713de24dcbde059646276f241a86d80e560736500319d659585a9ec34ce03
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authorize_action
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jarmo Pertman
@@ -30,7 +30,7 @@ cert_chain:
30
30
  kNODmkT2c/u7RD1KhdbnJpupOH0YR/1HY2Mb0mX6OUbhtYST2dbHu0KcbVtT/VPB
31
31
  qlb/zDlcR8hD6AbtoW7Ceg==
32
32
  -----END CERTIFICATE-----
33
- date: 2015-07-08 00:00:00.000000000 Z
33
+ date: 2015-11-20 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: bundler
@@ -75,7 +75,7 @@ dependencies:
75
75
  - !ruby/object:Gem::Version
76
76
  version: '3.1'
77
77
  description: Really secure and simple authorization library for your Rails, Sinatra
78
- or whatever web framework, which doesn't suck.
78
+ or whatever web framework, which just works.
79
79
  email:
80
80
  - jarmo.p@gmail.com
81
81
  executables: []
@@ -92,6 +92,7 @@ files:
92
92
  - authorize_action.gemspec
93
93
  - certs/jarmo.pem
94
94
  - checksum/authorize_action-1.1.0.gem.sha512
95
+ - checksum/authorize_action-1.1.1.gem.sha512
95
96
  - lib/authorize_action.rb
96
97
  - lib/authorize_action/rails.rb
97
98
  - lib/authorize_action/sinatra.rb
@@ -119,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
120
  version: '0'
120
121
  requirements: []
121
122
  rubyforge_project:
122
- rubygems_version: 2.4.5
123
+ rubygems_version: 2.5.0
123
124
  signing_key:
124
125
  specification_version: 4
125
126
  summary: Really secure and simple authorization library.
metadata.gz.sig CHANGED
Binary file