acl9 3.2.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: 7c96a3e331bb553a202d5002bc13de3d6660fe417ff48c20174715dfdb09e96f
4
- data.tar.gz: 105c1c70b580c5a7cd49105e04d6f6f4acba5c8182fedc9ea9995dcb83050e71
3
+ metadata.gz: f2cd552d7b00fccd354a3a743c47a2d7535e3dc3eadb07aab6a8bc6f253641fd
4
+ data.tar.gz: d89fd39e8359d1adff923f2aaa28b5dde2105c5d393fe5f18d456870af6bf1d5
5
5
  SHA512:
6
- metadata.gz: 5c79f61b3da512da237806b469f5f24051b9b845424be81d08b52188ab4597acb71aa4ecb5047d211701d8324d438c83996052a5bc243f333cf967bf1517bebc
7
- data.tar.gz: 8a218af5d9e00f16c9d7e5162ad973c7386d1c4c4b8801c541bd767caccdfecfb9b85fa342dfcfa46c727e49ef17d1432c55761629994135c5ce7542b9fe8826
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
@@ -22,3 +22,4 @@
22
22
 
23
23
  /acl9-*.gem
24
24
  /gemfiles/*.lock
25
+ /Gemfile.lock
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.2
1
+ 3.1.7
data/Appraisals CHANGED
@@ -1,19 +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'
9
+ appraise "rails-7.2" do
10
+ gem 'rails', '~> 7.2.0'
11
11
  end
12
12
 
13
- appraise "rails-6.0" do
14
- gem 'rails', '~> 6.0.0'
13
+ appraise "rails-8.0" do
14
+ gem 'rails', '~> 8.0.0'
15
15
  end
16
16
 
17
- appraise "rails-6.1" do
18
- gem 'rails', '~> 6.1.0'
17
+ appraise "rails-head" do
18
+ gem "rails", github: "rails"
19
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
19
  gem 'acl9', '~> 3.2'
20
20
  ```
21
21
 
22
- You will need Ruby > 2.0
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,8 +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', '< 7.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
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")
@@ -4,7 +4,10 @@ source "http://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
6
  gem "byebug"
7
- gem "rails", "~> 5.1.0"
8
- gem "sqlite3", "~> 1.3.6", :group => :development
7
+ gem "drb"
8
+ gem "mutex_m"
9
+ gem "bigdecimal"
10
+ gem "sqlite3", "~> 1.6"
11
+ gem "rails", "~> 7.0.0"
9
12
 
10
13
  gemspec path: "../"
@@ -4,6 +4,7 @@ source "http://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
6
  gem "byebug"
7
- gem "rails", "~> 6.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"
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", "~> 6.0.0"
7
+ gem "sqlite3"
8
+ gem "rails", "~> 8.0.0"
8
9
 
9
10
  gemspec path: "../"
@@ -4,7 +4,7 @@ source "http://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
6
  gem "byebug"
7
- gem "rails", "~> 5.0.0"
8
- gem "sqlite3", "~> 1.3.6", :group => :development
7
+ gem "sqlite3"
8
+ gem "rails", github: "rails/rails"
9
9
 
10
10
  gemspec path: "../"
data/lib/acl9/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Acl9
2
- VERSION = "3.2.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
@@ -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
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,15 +12,7 @@ Rails.backtrace_cleaner.remove_silencers! if ENV["BACKTRACE"]
9
12
 
10
13
  ActiveRecord::Migration.verbose = false
11
14
 
12
- if Rails.gem_version >= Gem::Version.new('6.0')
13
- ActiveRecord::MigrationContext.new(File.expand_path('../dummy/db/migrate', __FILE__), ActiveRecord::SchemaMigration).migrate
14
- elsif Rails.gem_version >= Gem::Version.new('5.2.0')
15
- ActiveRecord::MigrationContext.new(File.expand_path('../dummy/db/migrate', __FILE__)).migrate
16
- else
17
- ActiveRecord::Migrator.migrate(File.expand_path('../dummy/db/migrate', __FILE__))
18
- end
19
-
20
- $VERBOSE = nil
15
+ ActiveRecord::MigrationContext.new(File.expand_path('../dummy/db/migrate', __FILE__)).migrate
21
16
 
22
17
  class ActionController::TestCase
23
18
  setup do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acl9
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - oleg dashevskii
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-02-15 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
@@ -18,9 +18,6 @@ dependencies:
18
18
  - - ">="
19
19
  - !ruby/object:Gem::Version
20
20
  version: '5.0'
21
- - - "<"
22
- - !ruby/object:Gem::Version
23
- version: '7.0'
24
21
  type: :runtime
25
22
  prerelease: false
26
23
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,9 +25,6 @@ dependencies:
28
25
  - - ">="
29
26
  - !ruby/object:Gem::Version
30
27
  version: '5.0'
31
- - - "<"
32
- - !ruby/object:Gem::Version
33
- version: '7.0'
34
28
  - !ruby/object:Gem::Dependency
35
29
  name: yard
36
30
  requirement: !ruby/object:Gem::Requirement
@@ -45,20 +39,6 @@ dependencies:
45
39
  - - ">="
46
40
  - !ruby/object:Gem::Version
47
41
  version: '0'
48
- - !ruby/object:Gem::Dependency
49
- name: sqlite3
50
- requirement: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: '0'
55
- type: :development
56
- prerelease: false
57
- version_requirements: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
42
  description: Role-based authorization system for Rails with a concise DSL for securing
63
43
  your Rails application. Acl9 makes it easy to get security right for your app, the
64
44
  access control code sits right in your controller, the syntax is very easy to understand,
@@ -70,14 +50,13 @@ executables: []
70
50
  extensions: []
71
51
  extra_rdoc_files: []
72
52
  files:
53
+ - ".github/workflows/acl9.yml"
73
54
  - ".gitignore"
74
55
  - ".ruby-version"
75
- - ".travis.yml"
76
56
  - Appraisals
77
57
  - CHANGELOG.md
78
58
  - CONTRIBUTING.md
79
59
  - Gemfile
80
- - Gemfile.lock
81
60
  - LICENSE
82
61
  - MIT-LICENSE
83
62
  - README.md
@@ -98,12 +77,11 @@ files:
98
77
  - bin/yard
99
78
  - bin/yardoc
100
79
  - bin/yri
101
- - gemfiles/.bundle/config
102
- - gemfiles/rails_5.0.gemfile
103
- - gemfiles/rails_5.1.gemfile
104
- - gemfiles/rails_5.2.gemfile
105
- - gemfiles/rails_6.0.gemfile
106
- - gemfiles/rails_6.1.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
107
85
  - lib/acl9.rb
108
86
  - lib/acl9/controller_extensions.rb
109
87
  - lib/acl9/controller_extensions/dsl_base.rb
@@ -185,7 +163,6 @@ files:
185
163
  - test/dummy/config/environment.rb
186
164
  - test/dummy/config/environments/development.rb
187
165
  - test/dummy/config/environments/test.rb
188
- - test/dummy/config/initializers/assets.rb
189
166
  - test/dummy/config/initializers/backtrace_silencers.rb
190
167
  - test/dummy/config/initializers/cookies_serializer.rb
191
168
  - test/dummy/config/initializers/filter_parameter_logging.rb
@@ -225,7 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
225
202
  - !ruby/object:Gem::Version
226
203
  version: '0'
227
204
  requirements: []
228
- rubygems_version: 3.1.4
205
+ rubygems_version: 3.3.27
229
206
  signing_key:
230
207
  specification_version: 4
231
208
  summary: Role-based authorization system for Rails with a concise DSL for securing
@@ -298,7 +275,6 @@ test_files:
298
275
  - test/dummy/config/environment.rb
299
276
  - test/dummy/config/environments/development.rb
300
277
  - test/dummy/config/environments/test.rb
301
- - test/dummy/config/initializers/assets.rb
302
278
  - test/dummy/config/initializers/backtrace_silencers.rb
303
279
  - test/dummy/config/initializers/cookies_serializer.rb
304
280
  - test/dummy/config/initializers/filter_parameter_logging.rb
data/.travis.yml DELETED
@@ -1,37 +0,0 @@
1
- cache: bundler
2
- language: ruby
3
- rvm:
4
- - 2.5.8
5
- - 2.6.6
6
- - 2.7.2
7
- - 3.0.0
8
- - ruby-head
9
-
10
- gemfile:
11
- - gemfiles/rails_5.0.gemfile
12
- - gemfiles/rails_5.1.gemfile
13
- - gemfiles/rails_5.2.gemfile
14
- - gemfiles/rails_6.0.gemfile
15
- - gemfiles/rails_6.1.gemfile
16
-
17
- jobs:
18
- fast_finish: true
19
- allow_failures:
20
- - rvm: ruby-head
21
- exclude:
22
- - rvm: 2.5.8
23
- gemfile: gemfiles/rails_6.0.gemfile
24
- - rvm: 2.5.8
25
- gemfile: gemfiles/rails_6.1.gemfile
26
- - rvm: 2.7.2
27
- gemfile: gemfiles/rails_5.0.gemfile
28
- - rvm: 2.7.2
29
- gemfile: gemfiles/rails_5.1.gemfile
30
- - rvm: 2.7.2
31
- gemfile: gemfiles/rails_5.2.gemfile
32
- - rvm: 3.0.0
33
- gemfile: gemfiles/rails_5.0.gemfile
34
- - rvm: 3.0.0
35
- gemfile: gemfiles/rails_5.1.gemfile
36
- - rvm: 3.0.0
37
- gemfile: gemfiles/rails_5.2.gemfile
data/Gemfile.lock DELETED
@@ -1,152 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- acl9 (3.1.0)
5
- rails (> 5.0, < 7.0)
6
-
7
- GEM
8
- remote: http://rubygems.org/
9
- specs:
10
- actioncable (6.0.0)
11
- actionpack (= 6.0.0)
12
- nio4r (~> 2.0)
13
- websocket-driver (>= 0.6.1)
14
- actionmailbox (6.0.0)
15
- actionpack (= 6.0.0)
16
- activejob (= 6.0.0)
17
- activerecord (= 6.0.0)
18
- activestorage (= 6.0.0)
19
- activesupport (= 6.0.0)
20
- mail (>= 2.7.1)
21
- actionmailer (6.0.0)
22
- actionpack (= 6.0.0)
23
- actionview (= 6.0.0)
24
- activejob (= 6.0.0)
25
- mail (~> 2.5, >= 2.5.4)
26
- rails-dom-testing (~> 2.0)
27
- actionpack (6.0.0)
28
- actionview (= 6.0.0)
29
- activesupport (= 6.0.0)
30
- rack (~> 2.0)
31
- rack-test (>= 0.6.3)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
34
- actiontext (6.0.0)
35
- actionpack (= 6.0.0)
36
- activerecord (= 6.0.0)
37
- activestorage (= 6.0.0)
38
- activesupport (= 6.0.0)
39
- nokogiri (>= 1.8.5)
40
- actionview (6.0.0)
41
- activesupport (= 6.0.0)
42
- builder (~> 3.1)
43
- erubi (~> 1.4)
44
- rails-dom-testing (~> 2.0)
45
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
46
- activejob (6.0.0)
47
- activesupport (= 6.0.0)
48
- globalid (>= 0.3.6)
49
- activemodel (6.0.0)
50
- activesupport (= 6.0.0)
51
- activerecord (6.0.0)
52
- activemodel (= 6.0.0)
53
- activesupport (= 6.0.0)
54
- activestorage (6.0.0)
55
- actionpack (= 6.0.0)
56
- activejob (= 6.0.0)
57
- activerecord (= 6.0.0)
58
- marcel (~> 0.3.1)
59
- activesupport (6.0.0)
60
- concurrent-ruby (~> 1.0, >= 1.0.2)
61
- i18n (>= 0.7, < 2)
62
- minitest (~> 5.1)
63
- tzinfo (~> 1.1)
64
- zeitwerk (~> 2.1, >= 2.1.8)
65
- appraisal (2.2.0)
66
- bundler
67
- rake
68
- thor (>= 0.14.0)
69
- builder (3.2.3)
70
- byebug (11.0.1)
71
- concurrent-ruby (1.1.5)
72
- crass (1.0.4)
73
- erubi (1.8.0)
74
- globalid (0.4.2)
75
- activesupport (>= 4.2.0)
76
- i18n (1.6.0)
77
- concurrent-ruby (~> 1.0)
78
- loofah (2.2.3)
79
- crass (~> 1.0.2)
80
- nokogiri (>= 1.5.9)
81
- mail (2.7.1)
82
- mini_mime (>= 0.1.1)
83
- marcel (0.3.3)
84
- mimemagic (~> 0.3.2)
85
- method_source (0.9.2)
86
- mimemagic (0.3.3)
87
- mini_mime (1.0.2)
88
- mini_portile2 (2.4.0)
89
- minitest (5.11.3)
90
- nio4r (2.5.1)
91
- nokogiri (1.10.4)
92
- mini_portile2 (~> 2.4.0)
93
- rack (2.0.7)
94
- rack-test (1.1.0)
95
- rack (>= 1.0, < 3)
96
- rails (6.0.0)
97
- actioncable (= 6.0.0)
98
- actionmailbox (= 6.0.0)
99
- actionmailer (= 6.0.0)
100
- actionpack (= 6.0.0)
101
- actiontext (= 6.0.0)
102
- actionview (= 6.0.0)
103
- activejob (= 6.0.0)
104
- activemodel (= 6.0.0)
105
- activerecord (= 6.0.0)
106
- activestorage (= 6.0.0)
107
- activesupport (= 6.0.0)
108
- bundler (>= 1.3.0)
109
- railties (= 6.0.0)
110
- sprockets-rails (>= 2.0.0)
111
- rails-dom-testing (2.0.3)
112
- activesupport (>= 4.2.0)
113
- nokogiri (>= 1.6)
114
- rails-html-sanitizer (1.2.0)
115
- loofah (~> 2.2, >= 2.2.2)
116
- railties (6.0.0)
117
- actionpack (= 6.0.0)
118
- activesupport (= 6.0.0)
119
- method_source
120
- rake (>= 0.8.7)
121
- thor (>= 0.20.3, < 2.0)
122
- rake (12.3.3)
123
- sprockets (3.7.2)
124
- concurrent-ruby (~> 1.0)
125
- rack (> 1, < 3)
126
- sprockets-rails (3.2.1)
127
- actionpack (>= 4.0)
128
- activesupport (>= 4.0)
129
- sprockets (>= 3.0.0)
130
- sqlite3 (1.4.1)
131
- thor (0.20.3)
132
- thread_safe (0.3.6)
133
- tzinfo (1.2.5)
134
- thread_safe (~> 0.1)
135
- websocket-driver (0.7.1)
136
- websocket-extensions (>= 0.1.0)
137
- websocket-extensions (0.1.4)
138
- yard (0.9.20)
139
- zeitwerk (2.1.10)
140
-
141
- PLATFORMS
142
- ruby
143
-
144
- DEPENDENCIES
145
- acl9!
146
- appraisal
147
- byebug
148
- sqlite3
149
- yard
150
-
151
- BUNDLED WITH
152
- 2.2.10
@@ -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 )