para-acl 0.3.1 → 0.3.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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/para/acl/version.rb +1 -1
  3. metadata +4 -6
  4. data/bin/rails +0 -12
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e687558540f0ff922f605dee93fe58657f301a6a
4
- data.tar.gz: 2e7072a119f1476a5e4557965b76fad099c97abf
3
+ metadata.gz: 2e79003cbfdcee59d89501089fad44dc766d19d5
4
+ data.tar.gz: e3d39c181bc7114438b499d75b5b68ff6e180792
5
5
  SHA512:
6
- metadata.gz: 7577e7bb74935b46b1d711a4faf6e04d3da37a675644e7ae7338730497b0f62a9992e328e5c4bec4792b4214fef221a40ada1cb237fef3dc24bafc6e650adcf5
7
- data.tar.gz: e2578089eaf407fda21f2264a4cea0ffaedc7db2145503d649a450d04221a67c21cff9abb6e7d8c44bd015bdf167a1bcf679c95ff7eb5940d75a3673273958c1
6
+ metadata.gz: b93ee612f9899c486063fe5ac6fd0d82362f94583a05435c852895f723b7436d58a0ecbdf7f31058d07da2644ab904fa0368afec50703f8c6d21430bdb1a146b
7
+ data.tar.gz: 5b659dd03b5d984bda7de4fcf687aa6a7ed7b82befa57b131064a105fd102667ee3d679c8b2e8d2cb63363fb9df514c7e1775e3d53548f507de468b241c3a674
@@ -1,5 +1,5 @@
1
1
  module Para
2
2
  module Acl
3
- VERSION = "0.3.1"
3
+ VERSION = "0.3.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: para-acl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Valentin Ballestrino
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-28 00:00:00.000000000 Z
11
+ date: 2017-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: para
@@ -81,8 +81,7 @@ dependencies:
81
81
  description: Para plugin to allow admins access management
82
82
  email:
83
83
  - vala@glyph.fr
84
- executables:
85
- - rails
84
+ executables: []
86
85
  extensions: []
87
86
  extra_rdoc_files: []
88
87
  files:
@@ -100,7 +99,6 @@ files:
100
99
  - app/models/para/acl/user_role.rb
101
100
  - app/views/admin/para/acl/roles/_form.html.haml
102
101
  - app/views/para/acl/admin/acl_roles_component/show.html.haml
103
- - bin/rails
104
102
  - config/locales/fr.yml
105
103
  - db/migrate/20151215160816_create_para_acl_roles.rb
106
104
  - db/migrate/20151215160817_create_para_acl_user_roles.rb
@@ -143,7 +141,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
143
141
  version: '0'
144
142
  requirements: []
145
143
  rubyforge_project:
146
- rubygems_version: 2.5.1
144
+ rubygems_version: 2.6.8
147
145
  signing_key:
148
146
  specification_version: 4
149
147
  summary: Para plugin to allow admins access management
data/bin/rails DELETED
@@ -1,12 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application.
3
-
4
- ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
- ENGINE_PATH = File.expand_path('../../lib/para/acl/engine', __FILE__)
6
-
7
- # Set up gems listed in the Gemfile.
8
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
9
- require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
10
-
11
- require 'rails/all'
12
- require 'rails/engine/commands'