acl9 3.1.0 → 3.2.1

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
  SHA256:
3
- metadata.gz: 7ee10c2f6e3894b825f17a575524a0343dcdf16217a3049b665e04da980bce1c
4
- data.tar.gz: cd72c5c1e1983b28e8799c9792e5fa843f89415e104588feaf2dbeb72fd1f651
3
+ metadata.gz: f2cd552d7b00fccd354a3a743c47a2d7535e3dc3eadb07aab6a8bc6f253641fd
4
+ data.tar.gz: d89fd39e8359d1adff923f2aaa28b5dde2105c5d393fe5f18d456870af6bf1d5
5
5
  SHA512:
6
- metadata.gz: dca2492214e239e447b4de8f1874be52c617ca361fdcbc79ac5f4c58782ff92449e29db54f9618356680c96e55023412a6206e1f9b3ec9d7f20074d7cb89d76d
7
- data.tar.gz: 0a8963681d65a13fd39e3d4e46d75be288fda1a3ce1a8bb05c1e6264da2e1601c0abb698dbbfd9abe10e965bd6c0491acab62131852f508ad3c2b1d852f3cdc8
6
+ metadata.gz: 68cf84c3c290ffd56d3766a121b5d5aa7b44b23681f07734153504de5ec8a514a326f5199179d70522dd0c2fb47b4732e0eb0161944997739510ebf9ef0155b1
7
+ data.tar.gz: b3e95854606d6dfc311bb98827b1811e9a24728a2eaaac5cf064c904eafcf10c510f81529b809a9bb43bf368f9da8dcab264c728ed954b29b495e091db4ba63e
@@ -0,0 +1,44 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: Acl9
9
+
10
+ on:
11
+ push:
12
+ branches: [ "master" ]
13
+ pull_request:
14
+ branches: [ "master" ]
15
+
16
+ permissions:
17
+ contents: read
18
+
19
+ jobs:
20
+ test:
21
+ runs-on: ubuntu-latest
22
+ strategy:
23
+ fail-fast: false
24
+ matrix:
25
+ rails-version: [ '7.0', '7.1', '7.2', '8.0', head ]
26
+ ruby-version: ['3.1', '3.2', '3.3', '3.4']
27
+ exclude:
28
+ - rails-version: '8.0'
29
+ ruby-version: '3.1'
30
+ - rails-version: head
31
+ ruby-version: '3.1'
32
+
33
+ env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
34
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails-version }}.gemfile
35
+
36
+ steps:
37
+ - uses: actions/checkout@v4
38
+ - name: Set up Ruby
39
+ uses: ruby/setup-ruby@v1
40
+ with:
41
+ ruby-version: ${{ matrix.ruby-version }}
42
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
43
+ - name: Run tests
44
+ run: bundle exec rake
data/.gitignore CHANGED
@@ -19,3 +19,7 @@
19
19
 
20
20
  /doc
21
21
  /.yardoc
22
+
23
+ /acl9-*.gem
24
+ /gemfiles/*.lock
25
+ /Gemfile.lock
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.5.0
1
+ 3.1.7
data/Appraisals CHANGED
@@ -1,11 +1,19 @@
1
- appraise "rails-5.0" do
2
- gem 'rails', '~> 5.0.0'
1
+ appraise "rails-7.0" do
2
+ gem 'rails', '~> 7.0.0'
3
3
  end
4
4
 
5
- appraise "rails-5.1" do
6
- gem 'rails', '~> 5.1.0'
5
+ appraise "rails-7.1" do
6
+ gem 'rails', '~> 7.1.0'
7
7
  end
8
8
 
9
- appraise "rails-5.2" do
10
- gem 'rails', '~> 5.2.0.rc1'
9
+ appraise "rails-7.2" do
10
+ gem 'rails', '~> 7.2.0'
11
+ end
12
+
13
+ appraise "rails-8.0" do
14
+ gem 'rails', '~> 8.0.0'
15
+ end
16
+
17
+ appraise "rails-head" do
18
+ gem "rails", github: "rails"
11
19
  end
data/Gemfile CHANGED
@@ -5,3 +5,4 @@ gemspec
5
5
 
6
6
  gem 'appraisal'
7
7
  gem 'byebug'
8
+ gem 'sqlite3'
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # acl9
2
2
 
3
- [![Travis-CI](https://travis-ci.org/be9/acl9.svg?branch=master)](https://travis-ci.org/be9/acl9)
3
+ ![Workflow Status](https://github.com/be9/acl9/actions/workflows/acl9.yml/badge.svg)
4
4
 
5
5
  Acl9 is a role-based authorization system that provides a concise DSL for
6
6
  securing your Rails application.
@@ -13,13 +13,13 @@ permissions correct.
13
13
  ## Installation
14
14
 
15
15
  Acl9 is [Semantically Versioned](http://semver.org/), so just add this to your
16
- `Gemfile`:
16
+ `Gemfile` (note that you need 3.2 for Rails 6+ support):
17
17
 
18
18
  ```ruby
19
- gem 'acl9', '~> 3.0'
19
+ gem 'acl9', '~> 3.2'
20
20
  ```
21
21
 
22
- You will need Ruby 2.x
22
+ We're only testing with Ruby >= 3.1 so YMMV for less than that
23
23
 
24
24
  ### Rails 4 - stick with 2.x
25
25
 
data/acl9.gemspec CHANGED
@@ -20,9 +20,7 @@ Gem::Specification.new do |s|
20
20
 
21
21
  s.rdoc_options = ["--charset=UTF-8"]
22
22
 
23
- s.add_dependency "rails", '~> 5.0'
23
+ s.add_dependency "rails", '>= 5.0'
24
24
 
25
25
  s.add_development_dependency "yard"
26
- s.add_development_dependency 'sqlite3'
27
26
  end
28
-
data/bin/rails CHANGED
@@ -1,4 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
2
4
  #
3
5
  # This file was generated by Bundler.
4
6
  #
@@ -6,11 +8,20 @@
6
8
  # this file is here to facilitate running it.
7
9
  #
8
10
 
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
12
+
13
+ bundle_binstub = File.expand_path("bundle", __dir__)
14
+
15
+ if File.file?(bundle_binstub)
16
+ if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
17
+ load(bundle_binstub)
18
+ else
19
+ abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
20
+ Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
21
+ end
22
+ end
12
23
 
13
- require 'rubygems'
14
- require 'bundler/setup'
24
+ require "rubygems"
25
+ require "bundler/setup"
15
26
 
16
- load Gem.bin_path('railties', 'rails')
27
+ load Gem.bin_path("railties", "rails")
@@ -0,0 +1,13 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "byebug"
7
+ gem "drb"
8
+ gem "mutex_m"
9
+ gem "bigdecimal"
10
+ gem "sqlite3", "~> 1.6"
11
+ gem "rails", "~> 7.0.0"
12
+
13
+ gemspec path: "../"
@@ -4,6 +4,7 @@ source "http://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
6
  gem "byebug"
7
- gem "rails", "~> 5.1.0"
7
+ gem "sqlite3"
8
+ gem "rails", "~> 7.1.0"
8
9
 
9
10
  gemspec path: "../"
@@ -4,6 +4,7 @@ source "http://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
6
  gem "byebug"
7
- gem "rails", "~> 5.2.0.rc1"
7
+ gem "sqlite3"
8
+ gem "rails", "~> 7.2.0"
8
9
 
9
10
  gemspec path: "../"
@@ -4,6 +4,7 @@ source "http://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
6
  gem "byebug"
7
- gem "rails", "~> 5.0.0"
7
+ gem "sqlite3"
8
+ gem "rails", "~> 8.0.0"
8
9
 
9
10
  gemspec path: "../"
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "byebug"
7
+ gem "sqlite3"
8
+ gem "rails", github: "rails/rails"
9
+
10
+ gemspec path: "../"
data/lib/acl9/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Acl9
2
- VERSION = "3.1.0"
2
+ VERSION = "3.2.1"
3
3
  end
@@ -1,3 +1,4 @@
1
+ require 'ostruct'
1
2
  require_relative 'base'
2
3
 
3
4
  module ControllerExtensions
File without changes
@@ -19,5 +19,9 @@ module Dummy
19
19
  # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
20
20
  # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
21
21
  # config.i18n.default_locale = :de
22
+
23
+ if Rails.version.start_with? '7.0'
24
+ config.active_record.legacy_connection_handling = false
25
+ end
22
26
  end
23
27
  end
@@ -11,6 +11,6 @@
11
11
  # end
12
12
 
13
13
  # These inflection rules are supported but not enabled by default:
14
- # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
- # inflect.acronym 'RESTful'
16
- # end
14
+ ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ inflect.acronym 'ACL'
16
+ end
@@ -32,7 +32,7 @@ class CreateTables < ActiveRecord::Migration[ActiveRecord::Migration.current_ver
32
32
  add_index :roles_users, :user_id
33
33
  add_index :roles_users, :role_id
34
34
  end
35
-
35
+
36
36
  create_table :users do |t|
37
37
  t.string :name
38
38
  t.timestamps null: false
@@ -135,7 +135,7 @@ class CreateTables < ActiveRecord::Migration[ActiveRecord::Migration.current_ver
135
135
  add_index :other_roles_users, :user_id
136
136
  add_index :other_roles_users, :role_id
137
137
  end
138
-
138
+
139
139
  create_table :other_users do |t|
140
140
  t.string :name
141
141
  t.timestamps null: false
data/test/test_helper.rb CHANGED
@@ -2,6 +2,9 @@ ENV["RAILS_ENV"] = "test"
2
2
 
3
3
  require 'minitest/autorun'
4
4
 
5
+ $VERBOSE = nil
6
+
7
+ require "logger"
5
8
  require File.expand_path("../dummy/config/environment.rb", __FILE__)
6
9
  require "rails/test_help"
7
10
 
@@ -9,9 +12,7 @@ Rails.backtrace_cleaner.remove_silencers! if ENV["BACKTRACE"]
9
12
 
10
13
  ActiveRecord::Migration.verbose = false
11
14
 
12
- ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)
13
-
14
- $VERBOSE = nil
15
+ ActiveRecord::MigrationContext.new(File.expand_path('../dummy/db/migrate', __FILE__)).migrate
15
16
 
16
17
  class ActionController::TestCase
17
18
  setup do
metadata CHANGED
@@ -1,28 +1,28 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acl9
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - oleg dashevskii
8
8
  - Jason King
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-03-14 00:00:00.000000000 Z
12
+ date: 2025-03-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - "~>"
18
+ - - ">="
19
19
  - !ruby/object:Gem::Version
20
20
  version: '5.0'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - "~>"
25
+ - - ">="
26
26
  - !ruby/object:Gem::Version
27
27
  version: '5.0'
28
28
  - !ruby/object:Gem::Dependency
@@ -39,20 +39,6 @@ dependencies:
39
39
  - - ">="
40
40
  - !ruby/object:Gem::Version
41
41
  version: '0'
42
- - !ruby/object:Gem::Dependency
43
- name: sqlite3
44
- requirement: !ruby/object:Gem::Requirement
45
- requirements:
46
- - - ">="
47
- - !ruby/object:Gem::Version
48
- version: '0'
49
- type: :development
50
- prerelease: false
51
- version_requirements: !ruby/object:Gem::Requirement
52
- requirements:
53
- - - ">="
54
- - !ruby/object:Gem::Version
55
- version: '0'
56
42
  description: Role-based authorization system for Rails with a concise DSL for securing
57
43
  your Rails application. Acl9 makes it easy to get security right for your app, the
58
44
  access control code sits right in your controller, the syntax is very easy to understand,
@@ -64,14 +50,13 @@ executables: []
64
50
  extensions: []
65
51
  extra_rdoc_files: []
66
52
  files:
53
+ - ".github/workflows/acl9.yml"
67
54
  - ".gitignore"
68
55
  - ".ruby-version"
69
- - ".travis.yml"
70
56
  - Appraisals
71
57
  - CHANGELOG.md
72
58
  - CONTRIBUTING.md
73
59
  - Gemfile
74
- - Gemfile.lock
75
60
  - LICENSE
76
61
  - MIT-LICENSE
77
62
  - README.md
@@ -92,10 +77,11 @@ files:
92
77
  - bin/yard
93
78
  - bin/yardoc
94
79
  - bin/yri
95
- - gemfiles/.bundle/config
96
- - gemfiles/rails_5.0.gemfile
97
- - gemfiles/rails_5.1.gemfile
98
- - gemfiles/rails_5.2.gemfile
80
+ - gemfiles/rails_7.0.gemfile
81
+ - gemfiles/rails_7.1.gemfile
82
+ - gemfiles/rails_7.2.gemfile
83
+ - gemfiles/rails_8.0.gemfile
84
+ - gemfiles/rails_head.gemfile
99
85
  - lib/acl9.rb
100
86
  - lib/acl9/controller_extensions.rb
101
87
  - lib/acl9/controller_extensions/dsl_base.rb
@@ -137,6 +123,7 @@ files:
137
123
  - test/controllers/acl_query_mixin.rb
138
124
  - test/controllers/acl_subject_method_test.rb
139
125
  - test/controllers/arguments_checking_test.rb
126
+ - test/dummy/app/assets/config/manifest.js
140
127
  - test/dummy/app/controllers/acl_action_override.rb
141
128
  - test/dummy/app/controllers/acl_arguments.rb
142
129
  - test/dummy/app/controllers/acl_block.rb
@@ -176,7 +163,6 @@ files:
176
163
  - test/dummy/config/environment.rb
177
164
  - test/dummy/config/environments/development.rb
178
165
  - test/dummy/config/environments/test.rb
179
- - test/dummy/config/initializers/assets.rb
180
166
  - test/dummy/config/initializers/backtrace_silencers.rb
181
167
  - test/dummy/config/initializers/cookies_serializer.rb
182
168
  - test/dummy/config/initializers/filter_parameter_logging.rb
@@ -200,7 +186,7 @@ homepage: http://github.com/be9/acl9
200
186
  licenses:
201
187
  - MIT
202
188
  metadata: {}
203
- post_install_message:
189
+ post_install_message:
204
190
  rdoc_options:
205
191
  - "--charset=UTF-8"
206
192
  require_paths:
@@ -216,9 +202,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
216
202
  - !ruby/object:Gem::Version
217
203
  version: '0'
218
204
  requirements: []
219
- rubyforge_project:
220
- rubygems_version: 2.7.3
221
- signing_key:
205
+ rubygems_version: 3.3.27
206
+ signing_key:
222
207
  specification_version: 4
223
208
  summary: Role-based authorization system for Rails with a concise DSL for securing
224
209
  your Rails application.
@@ -250,6 +235,7 @@ test_files:
250
235
  - test/controllers/acl_query_mixin.rb
251
236
  - test/controllers/acl_subject_method_test.rb
252
237
  - test/controllers/arguments_checking_test.rb
238
+ - test/dummy/app/assets/config/manifest.js
253
239
  - test/dummy/app/controllers/acl_action_override.rb
254
240
  - test/dummy/app/controllers/acl_arguments.rb
255
241
  - test/dummy/app/controllers/acl_block.rb
@@ -289,7 +275,6 @@ test_files:
289
275
  - test/dummy/config/environment.rb
290
276
  - test/dummy/config/environments/development.rb
291
277
  - test/dummy/config/environments/test.rb
292
- - test/dummy/config/initializers/assets.rb
293
278
  - test/dummy/config/initializers/backtrace_silencers.rb
294
279
  - test/dummy/config/initializers/cookies_serializer.rb
295
280
  - test/dummy/config/initializers/filter_parameter_logging.rb
data/.travis.yml DELETED
@@ -1,17 +0,0 @@
1
- cache: bundler
2
- language: ruby
3
- rvm:
4
- - 2.4.3
5
- - 2.5.0
6
- - ruby-head
7
-
8
- gemfile:
9
- - gemfiles/rails_5.0.gemfile
10
- - gemfiles/rails_5.1.gemfile
11
- - gemfiles/rails_5.2.gemfile
12
-
13
- matrix:
14
- fast_finish: true
15
- allow_failures:
16
- - rvm: ruby-head
17
- - gemfile: gemfiles/rails_5.2.gemfile
data/Gemfile.lock DELETED
@@ -1,128 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- acl9 (3.1.0)
5
- rails (~> 5.0)
6
-
7
- GEM
8
- remote: http://rubygems.org/
9
- specs:
10
- actioncable (5.1.5)
11
- actionpack (= 5.1.5)
12
- nio4r (~> 2.0)
13
- websocket-driver (~> 0.6.1)
14
- actionmailer (5.1.5)
15
- actionpack (= 5.1.5)
16
- actionview (= 5.1.5)
17
- activejob (= 5.1.5)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 2.0)
20
- actionpack (5.1.5)
21
- actionview (= 5.1.5)
22
- activesupport (= 5.1.5)
23
- rack (~> 2.0)
24
- rack-test (>= 0.6.3)
25
- rails-dom-testing (~> 2.0)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (5.1.5)
28
- activesupport (= 5.1.5)
29
- builder (~> 3.1)
30
- erubi (~> 1.4)
31
- rails-dom-testing (~> 2.0)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.1.5)
34
- activesupport (= 5.1.5)
35
- globalid (>= 0.3.6)
36
- activemodel (5.1.5)
37
- activesupport (= 5.1.5)
38
- activerecord (5.1.5)
39
- activemodel (= 5.1.5)
40
- activesupport (= 5.1.5)
41
- arel (~> 8.0)
42
- activesupport (5.1.5)
43
- concurrent-ruby (~> 1.0, >= 1.0.2)
44
- i18n (~> 0.7)
45
- minitest (~> 5.1)
46
- tzinfo (~> 1.1)
47
- appraisal (2.2.0)
48
- bundler
49
- rake
50
- thor (>= 0.14.0)
51
- arel (8.0.0)
52
- builder (3.2.3)
53
- byebug (10.0.0)
54
- concurrent-ruby (1.0.5)
55
- crass (1.0.3)
56
- erubi (1.7.1)
57
- globalid (0.4.1)
58
- activesupport (>= 4.2.0)
59
- i18n (0.9.5)
60
- concurrent-ruby (~> 1.0)
61
- loofah (2.2.0)
62
- crass (~> 1.0.2)
63
- nokogiri (>= 1.5.9)
64
- mail (2.7.0)
65
- mini_mime (>= 0.1.1)
66
- method_source (0.9.0)
67
- mini_mime (1.0.0)
68
- mini_portile2 (2.3.0)
69
- minitest (5.11.3)
70
- nio4r (2.2.0)
71
- nokogiri (1.8.2)
72
- mini_portile2 (~> 2.3.0)
73
- rack (2.0.4)
74
- rack-test (0.8.3)
75
- rack (>= 1.0, < 3)
76
- rails (5.1.5)
77
- actioncable (= 5.1.5)
78
- actionmailer (= 5.1.5)
79
- actionpack (= 5.1.5)
80
- actionview (= 5.1.5)
81
- activejob (= 5.1.5)
82
- activemodel (= 5.1.5)
83
- activerecord (= 5.1.5)
84
- activesupport (= 5.1.5)
85
- bundler (>= 1.3.0)
86
- railties (= 5.1.5)
87
- sprockets-rails (>= 2.0.0)
88
- rails-dom-testing (2.0.3)
89
- activesupport (>= 4.2.0)
90
- nokogiri (>= 1.6)
91
- rails-html-sanitizer (1.0.3)
92
- loofah (~> 2.0)
93
- railties (5.1.5)
94
- actionpack (= 5.1.5)
95
- activesupport (= 5.1.5)
96
- method_source
97
- rake (>= 0.8.7)
98
- thor (>= 0.18.1, < 2.0)
99
- rake (12.3.0)
100
- sprockets (3.7.1)
101
- concurrent-ruby (~> 1.0)
102
- rack (> 1, < 3)
103
- sprockets-rails (3.2.1)
104
- actionpack (>= 4.0)
105
- activesupport (>= 4.0)
106
- sprockets (>= 3.0.0)
107
- sqlite3 (1.3.13)
108
- thor (0.20.0)
109
- thread_safe (0.3.6)
110
- tzinfo (1.2.5)
111
- thread_safe (~> 0.1)
112
- websocket-driver (0.6.5)
113
- websocket-extensions (>= 0.1.0)
114
- websocket-extensions (0.1.3)
115
- yard (0.9.12)
116
-
117
- PLATFORMS
118
- ruby
119
-
120
- DEPENDENCIES
121
- acl9!
122
- appraisal
123
- byebug
124
- sqlite3
125
- yard
126
-
127
- BUNDLED WITH
128
- 1.16.1
@@ -1,2 +0,0 @@
1
- ---
2
- BUNDLE_RETRY: "1"
@@ -1,8 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Version of your assets, change this if you want to expire all your assets.
4
- Dummy::Application.config.assets.version = '1.0'
5
-
6
- # Precompile additional assets.
7
- # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
8
- # Rails.application.config.assets.precompile += %w( search.js )