authorizable 0.9.1 → 0.9.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c276bce2e29bbd6d628d99c2b2879b58cb7a3564
4
- data.tar.gz: 77df7393397f5b6826c43e56f6eb71c2f006439d
3
+ metadata.gz: e3186056bed7a07f414f941368b0e6ccb5bae23c
4
+ data.tar.gz: 503534e70125e88c5418876711108938ff0ee257
5
5
  SHA512:
6
- metadata.gz: ca98ab5fed7c15c5541945aef38334d4d91810465f0d9cc3d456b76f2dff8a0982487f3550b2a72d215642eb711354dcb0f15e50ce1057e8e56463fcbeb61d44
7
- data.tar.gz: 00e9f30c1f4280e4a13547a588f2538341f4a6db00c32bce5ba1b50b3a1ddc2d4a75a639bf8a9045b8b1c5986ec5cdb90bf968dfb475a45d9bbc49b2df829fb5
6
+ metadata.gz: e4253662f6abe9261b9f2c4c7642c3254bdbe0fafe18c0c5031c0bc2f3fbb6039782c374de8234c1bc1e3b36414e5eea9ce7d5141069b9aed30da136ab5d95d8
7
+ data.tar.gz: bdba4c8170ac53abf7f722cf0336106c09aa649f199616a5d9d5989db925cfbce220053874deab3816c2357eb39914c15f6aa6c18d2443063c51d030569dc0f2
data/.gitignore CHANGED
@@ -1,4 +1,5 @@
1
1
  *.rbc
2
+ *.gem
2
3
  capybara-*.html
3
4
  .rspec
4
5
  /log
data/README.md CHANGED
@@ -4,9 +4,11 @@ authorizable
4
4
  A gem for rails giving vast flexibility in authorization management.
5
5
 
6
6
  [![docs](https://img.shields.io/badge/docs-yardoc-blue.svg?style=flat-square)](http://www.rubydoc.info/github/NullVoxPopuli/authorizable)
7
+ [![Gem Version](http://img.shields.io/gem/v/authorizable.svg?style=flat-square)](http://badge.fury.io/rb/authorizable)
7
8
  [![Build Status](http://img.shields.io/travis/NullVoxPopuli/authorizable.svg?style=flat-square)](https://travis-ci.org/NullVoxPopuli/authorizable)
8
9
  [![Code Climate](http://img.shields.io/codeclimate/github/NullVoxPopuli/authorizable.svg?style=flat-square)](https://codeclimate.com/github/NullVoxPopuli/authorizable)
9
10
  [![Test Coverage](http://img.shields.io/codeclimate/coverage/github/NullVoxPopuli/authorizable.svg?style=flat-square)](https://codeclimate.com/github/NullVoxPopuli/authorizable)
11
+ [![Dependency Status](http://img.shields.io/gemnasium/NullVoxPopuli/authorizable.svg?style=flat-square)](https://gemnasium.com/NullVoxPopuli/authorizable)
10
12
 
11
13
 
12
14
  ## Features
@@ -25,7 +27,11 @@ A gem for rails giving vast flexibility in authorization management.
25
27
 
26
28
  Gemfile
27
29
 
28
- gem "authorizable", github: "NullVoxPopuli/authorizable"
30
+ gem "authorizable"
31
+
32
+ Terminal
33
+
34
+ gem install authorizable
29
35
 
30
36
  ## Configuration
31
37
  ### Defining permissions
@@ -21,6 +21,7 @@ Gem::Specification.new do |s|
21
21
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
22
22
  s.require_paths = ["lib"]
23
23
 
24
+ s.required_ruby_version = '>= 2.0'
24
25
 
25
26
  s.add_runtime_dependency "activesupport", ">= 3.0.0"
26
27
  s.add_runtime_dependency "i18n"
@@ -1,5 +1,5 @@
1
1
  module Authorizable
2
2
 
3
- VERSION = "0.9.1"
3
+ VERSION = "0.9.2"
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authorizable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - L. Preston Sego III
@@ -274,7 +274,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
274
274
  requirements:
275
275
  - - ">="
276
276
  - !ruby/object:Gem::Version
277
- version: '0'
277
+ version: '2.0'
278
278
  required_rubygems_version: !ruby/object:Gem::Requirement
279
279
  requirements:
280
280
  - - ">="
@@ -285,7 +285,7 @@ rubyforge_project:
285
285
  rubygems_version: 2.4.3
286
286
  signing_key:
287
287
  specification_version: 4
288
- summary: Authorizable-0.9.1
288
+ summary: Authorizable-0.9.2
289
289
  test_files:
290
290
  - spec/integration/controller_spec.rb
291
291
  - spec/integration/model_spec.rb