the_role 3.0.1 → 3.0.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -10
  3. data/gem_version.rb +1 -1
  4. data/the_role.gemspec +1 -1
  5. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ad7191552d1d72a0d455dc2dd77b0e210646a265
4
- data.tar.gz: d59c30c99dc8026002d3040acd3c4cf70043da58
3
+ metadata.gz: f8834801d88d7a83e9b037a3917986b8edd0b71d
4
+ data.tar.gz: 7a34c1ffa6a02de991e9eceb4135a037ce0c4532
5
5
  SHA512:
6
- metadata.gz: f9c5a77605b7740297a563f766131b8654a3eb2351d61113a08edb74c3af1b2b4f25cd790ec7e00fa557c2bde7b2caca9a1d0060c516f57d75125b2fcaba09da
7
- data.tar.gz: 8c1d9c4d05863c7e24868d29cfcccf2ea1d6aa1634805562311c285814f4a714f7627d97c8cfbf0f93f7e3a7947bce4665c969aaf075a6eaa4c2689c688ff891
6
+ metadata.gz: c95425238d7c9efc0cb97a19b57b746867cc82d8b978dbdaf70af6b187b7a735de8d7ff970674724826de1daedbbe9f21ba8cb771c144853a3d6ab852ee5be27
7
+ data.tar.gz: cfb59cd919ed007e48de20f2e66103771785ddd1b04b4fdbbfd0f3aae63e6cd9765d7662d8271206c2bc4df6fa75a39a0cb28d23f5bb28dc16376de718b4994b
data/README.md CHANGED
@@ -16,15 +16,11 @@
16
16
  </p>
17
17
 
18
18
  <div align="center" class='center' style="text-align:center">
19
-
20
- <a href="http://badge.fury.io/rb/the_role"><img src="https://badge.fury.io/rb/the_role.svg" alt="Gem Version" height="18"></a>
21
- &nbsp;
22
- <a href="https://travis-ci.org/TheRole/DummyApp"><img src="https://travis-ci.org/TheRole/DummyApp.svg?branch=master" alt="Build Status" height="18"></a>
23
- &nbsp;
24
- <a href="https://codeclimate.com/github/TheRole/TheRoleApi"><img src="https://codeclimate.com/github/TheRole/TheRoleApi/badges/gpa.svg" /></a>
25
- &nbsp;
26
- <a href="https://www.ruby-toolbox.com/categories/rails_authorization">ruby-toolbox</a>
27
-
19
+ TheRole: <a href="http://badge.fury.io/rb/the_role"><img src="https://badge.fury.io/rb/the_role.svg" alt="Gem Version" height="18"></a>
20
+ API: <a href="http://badge.fury.io/rb/the_role_api"><img src="https://badge.fury.io/rb/the_role_api.svg" alt="Gem Version" height="18"></a>
21
+ GUI: <a href="http://badge.fury.io/rb/the_role_management_panel"><img src="https://badge.fury.io/rb/the_role_management_panel.svg" alt="Gem Version" height="18"></a>
22
+ CI: <a href="https://travis-ci.org/TheRole/DummyApp"><img src="https://travis-ci.org/TheRole/DummyApp.svg?branch=master" alt="Build Status" height="18"></a>
23
+ &nbsp;<a href="https://www.ruby-toolbox.com/categories/rails_authorization">ruby-toolbox</a>
28
24
  </div>
29
25
 
30
26
  <hr>
@@ -144,6 +140,7 @@ You have to know about them before using of TheRole:
144
140
  <p align="left" class="left" style="text-align:left"><a href='https://github.com/TheRole/docs/blob/master/Limitations.md'>Limitations</a></p>
145
141
  <p align="left" class="left" style="text-align:left"><a href='https://github.com/TheRole/docs/blob/master/Contributing.md'>Contributing</a></p>
146
142
  <p align="left" class="left" style="text-align:left"><a href='https://github.com/TheRole/docs/blob/master/MigrationsFromV2.md'>Migration form TheRole 2 to TheRole 3</a></p>
143
+ <p align="left" class="left" style="text-align:left"><a href='https://github.com/TheRole/docs/blob/master/forPostgresSQLusers.md'>PSQL: how to use native :json column?</a></p>
147
144
  </td>
148
145
  </tr>
149
146
  </tbody>
@@ -193,4 +190,4 @@ Copyright (c) 2012-2015 [Ilya N.Zykin](https://github.com/the-teacher)
193
190
 
194
191
  #### Contributors
195
192
 
196
- @igmarin, @doabit, @linjunpop, @egb3
193
+ @igmarin, @doabit, @linjunpop, @egb3, @klacointe
data/gem_version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module TheRole
2
- VERSION = "3.0.1"
2
+ VERSION = "3.0.2"
3
3
  end
data/the_role.gemspec CHANGED
@@ -18,6 +18,6 @@ Gem::Specification.new do |s|
18
18
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
19
  s.require_paths = ["lib"]
20
20
 
21
- s.add_runtime_dependency 'the_role_api', '~> 3.0.1'
21
+ s.add_runtime_dependency 'the_role_api', '~> 3.0.3'
22
22
  s.add_runtime_dependency 'the_role_management_panel', '~> 3.0.2'
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: the_role
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya N. Zykin [the-teacher]
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-04 00:00:00.000000000 Z
11
+ date: 2015-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: the_role_api
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 3.0.1
19
+ version: 3.0.3
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 3.0.1
26
+ version: 3.0.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: the_role_management_panel
29
29
  requirement: !ruby/object:Gem::Requirement