зеркало из
https://github.com/rs-pro/activeadmin-quill_editor.git
synced 2026-09-04 10:45:51 +03:00
Setup Appraisal
Этот коммит содержится в:
18
.github/workflows/specs.yml
поставляемый
18
.github/workflows/specs.yml
поставляемый
@@ -3,20 +3,26 @@ name: Specs
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [master]
|
branches:
|
||||||
|
- master
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [master]
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
specs:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
ruby: ['2.6', '2.7']
|
ruby: ['2.6', '2.7']
|
||||||
|
gemfile: ['rails60_activeadmin22', 'rails60_activeadmin', 'rails61_activeadmin29', 'rails61_activeadmin']
|
||||||
|
|
||||||
|
env:
|
||||||
|
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Set up Ruby
|
- name: Set up Ruby
|
||||||
@@ -26,9 +32,9 @@ jobs:
|
|||||||
bundler-cache: true
|
bundler-cache: true
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: bundle exec rake
|
run: bundle exec rspec --profile
|
||||||
|
|
||||||
- name: Archive screenshots for failed tests
|
- name: On failure, archive screenshots as artifacts
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: failure()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ AllCops:
|
|||||||
Exclude:
|
Exclude:
|
||||||
- bin/*
|
- bin/*
|
||||||
- db/schema.rb
|
- db/schema.rb
|
||||||
|
- gemfiles/**/*
|
||||||
- spec/dummy/**/*
|
- spec/dummy/**/*
|
||||||
- vendor/**/*
|
- vendor/**/*
|
||||||
NewCops: enable
|
NewCops: enable
|
||||||
|
|||||||
26
Appraisals
Обычный файл
26
Appraisals
Обычный файл
@@ -0,0 +1,26 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
appraise 'rails52-activeadmin20' do
|
||||||
|
gem 'activeadmin', '~> 2.0.0'
|
||||||
|
gem 'rails', '~> 5.2.0'
|
||||||
|
end
|
||||||
|
|
||||||
|
appraise 'rails60-activeadmin22' do
|
||||||
|
gem 'activeadmin', '~> 2.2.0'
|
||||||
|
gem 'rails', '~> 6.0.0'
|
||||||
|
end
|
||||||
|
|
||||||
|
appraise 'rails60-activeadmin' do
|
||||||
|
gem 'activeadmin'
|
||||||
|
gem 'rails', '~> 6.0.0'
|
||||||
|
end
|
||||||
|
|
||||||
|
appraise 'rails61-activeadmin29' do
|
||||||
|
gem 'activeadmin', '~> 2.9.0'
|
||||||
|
gem 'rails', '~> 6.1.0'
|
||||||
|
end
|
||||||
|
|
||||||
|
appraise 'rails61-activeadmin' do
|
||||||
|
gem 'activeadmin'
|
||||||
|
gem 'rails', '~> 6.1.0'
|
||||||
|
end
|
||||||
6
Gemfile
6
Gemfile
@@ -5,12 +5,6 @@ source 'https://rubygems.org'
|
|||||||
gemspec
|
gemspec
|
||||||
|
|
||||||
group :development, :test do
|
group :development, :test do
|
||||||
gem 'activestorage', '~> 6.0'
|
|
||||||
gem 'puma', '~> 4.3'
|
|
||||||
gem 'sassc', '~> 2.4'
|
|
||||||
gem 'sprockets-rails', '~> 3.2'
|
|
||||||
gem 'sqlite3', '~> 1.4'
|
|
||||||
|
|
||||||
# Testing
|
# Testing
|
||||||
gem 'capybara'
|
gem 'capybara'
|
||||||
gem 'rspec_junit_formatter'
|
gem 'rspec_junit_formatter'
|
||||||
|
|||||||
@@ -24,4 +24,6 @@ Gem::Specification.new do |spec|
|
|||||||
spec.require_paths = ['lib']
|
spec.require_paths = ['lib']
|
||||||
|
|
||||||
spec.add_runtime_dependency 'activeadmin', '~> 2.0'
|
spec.add_runtime_dependency 'activeadmin', '~> 2.0'
|
||||||
|
|
||||||
|
spec.add_development_dependency 'appraisal', '~> 2.4'
|
||||||
end
|
end
|
||||||
|
|||||||
29
bin/appraisal
Исполняемый файл
29
bin/appraisal
Исполняемый файл
@@ -0,0 +1,29 @@
|
|||||||
|
#!/usr/bin/env ruby
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
#
|
||||||
|
# This file was generated by Bundler.
|
||||||
|
#
|
||||||
|
# The application 'appraisal' is installed as part of a gem, and
|
||||||
|
# this file is here to facilitate running it.
|
||||||
|
#
|
||||||
|
|
||||||
|
require "pathname"
|
||||||
|
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
||||||
|
Pathname.new(__FILE__).realpath)
|
||||||
|
|
||||||
|
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
||||||
|
|
||||||
|
if File.file?(bundle_binstub)
|
||||||
|
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
||||||
|
load(bundle_binstub)
|
||||||
|
else
|
||||||
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
||||||
|
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
require "rubygems"
|
||||||
|
require "bundler/setup"
|
||||||
|
|
||||||
|
load Gem.bin_path("appraisal", "appraisal")
|
||||||
19
extra/README.md
Обычный файл
19
extra/README.md
Обычный файл
@@ -0,0 +1,19 @@
|
|||||||
|
# Development
|
||||||
|
|
||||||
|
## Releases
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# Update version.rb with the new version
|
||||||
|
# Update the gemfiles:
|
||||||
|
bin/appraisal
|
||||||
|
```
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# Running specs using a specific configuration:
|
||||||
|
bin/appraisal rails60-activeadmin22 rspec
|
||||||
|
# Using latest activeadmin version:
|
||||||
|
bin/appraisal rails60-activeadmin rspec
|
||||||
|
# See gemfiles for more configurations
|
||||||
|
```
|
||||||
27
gemfiles/rails52_activeadmin20.gemfile
Обычный файл
27
gemfiles/rails52_activeadmin20.gemfile
Обычный файл
@@ -0,0 +1,27 @@
|
|||||||
|
# This file was generated by Appraisal
|
||||||
|
|
||||||
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
gem "activeadmin", "~> 2.0.0"
|
||||||
|
gem "rails", "~> 5.2.0"
|
||||||
|
|
||||||
|
group :development, :test do
|
||||||
|
gem "puma"
|
||||||
|
gem "sassc"
|
||||||
|
gem "sqlite3"
|
||||||
|
gem "capybara"
|
||||||
|
gem "rspec_junit_formatter"
|
||||||
|
gem "rspec-rails"
|
||||||
|
gem "selenium-webdriver"
|
||||||
|
gem "brakeman"
|
||||||
|
gem "fasterer"
|
||||||
|
gem "reek"
|
||||||
|
gem "rubocop"
|
||||||
|
gem "rubocop-packaging"
|
||||||
|
gem "rubocop-performance"
|
||||||
|
gem "rubocop-rails"
|
||||||
|
gem "rubocop-rspec"
|
||||||
|
gem "pry-rails"
|
||||||
|
end
|
||||||
|
|
||||||
|
gemspec path: "../"
|
||||||
313
gemfiles/rails52_activeadmin20.gemfile.lock
Обычный файл
313
gemfiles/rails52_activeadmin20.gemfile.lock
Обычный файл
@@ -0,0 +1,313 @@
|
|||||||
|
PATH
|
||||||
|
remote: ..
|
||||||
|
specs:
|
||||||
|
activeadmin_quill_editor (0.3.4)
|
||||||
|
activeadmin (~> 2.0)
|
||||||
|
|
||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
actioncable (5.2.7)
|
||||||
|
actionpack (= 5.2.7)
|
||||||
|
nio4r (~> 2.0)
|
||||||
|
websocket-driver (>= 0.6.1)
|
||||||
|
actionmailer (5.2.7)
|
||||||
|
actionpack (= 5.2.7)
|
||||||
|
actionview (= 5.2.7)
|
||||||
|
activejob (= 5.2.7)
|
||||||
|
mail (~> 2.5, >= 2.5.4)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
actionpack (5.2.7)
|
||||||
|
actionview (= 5.2.7)
|
||||||
|
activesupport (= 5.2.7)
|
||||||
|
rack (~> 2.0, >= 2.0.8)
|
||||||
|
rack-test (>= 0.6.3)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
||||||
|
actionview (5.2.7)
|
||||||
|
activesupport (= 5.2.7)
|
||||||
|
builder (~> 3.1)
|
||||||
|
erubi (~> 1.4)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
||||||
|
activeadmin (2.0.0)
|
||||||
|
arbre (~> 1.2, >= 1.2.1)
|
||||||
|
formtastic (~> 3.1)
|
||||||
|
formtastic_i18n (~> 0.4)
|
||||||
|
inherited_resources (~> 1.7)
|
||||||
|
jquery-rails (~> 4.2)
|
||||||
|
kaminari (~> 1.0, >= 1.0.1)
|
||||||
|
railties (>= 5.0, < 6.0)
|
||||||
|
ransack (~> 2.1, >= 2.1.1)
|
||||||
|
sass (~> 3.4)
|
||||||
|
sprockets (>= 3.0, < 4.1)
|
||||||
|
sprockets-es6 (~> 0.9, >= 0.9.2)
|
||||||
|
activejob (5.2.7)
|
||||||
|
activesupport (= 5.2.7)
|
||||||
|
globalid (>= 0.3.6)
|
||||||
|
activemodel (5.2.7)
|
||||||
|
activesupport (= 5.2.7)
|
||||||
|
activerecord (5.2.7)
|
||||||
|
activemodel (= 5.2.7)
|
||||||
|
activesupport (= 5.2.7)
|
||||||
|
arel (>= 9.0)
|
||||||
|
activestorage (5.2.7)
|
||||||
|
actionpack (= 5.2.7)
|
||||||
|
activerecord (= 5.2.7)
|
||||||
|
marcel (~> 1.0.0)
|
||||||
|
activesupport (5.2.7)
|
||||||
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
|
i18n (>= 0.7, < 2)
|
||||||
|
minitest (~> 5.1)
|
||||||
|
tzinfo (~> 1.1)
|
||||||
|
addressable (2.8.0)
|
||||||
|
public_suffix (>= 2.0.2, < 5.0)
|
||||||
|
appraisal (2.4.1)
|
||||||
|
bundler
|
||||||
|
rake
|
||||||
|
thor (>= 0.14.0)
|
||||||
|
arbre (1.5.0)
|
||||||
|
activesupport (>= 3.0.0, < 7.1)
|
||||||
|
ruby2_keywords (>= 0.0.2, < 1.0)
|
||||||
|
arel (9.0.0)
|
||||||
|
ast (2.4.2)
|
||||||
|
babel-source (5.8.35)
|
||||||
|
babel-transpiler (0.7.0)
|
||||||
|
babel-source (>= 4.0, < 6)
|
||||||
|
execjs (~> 2.0)
|
||||||
|
brakeman (5.2.1)
|
||||||
|
builder (3.2.4)
|
||||||
|
capybara (3.36.0)
|
||||||
|
addressable
|
||||||
|
matrix
|
||||||
|
mini_mime (>= 0.1.3)
|
||||||
|
nokogiri (~> 1.8)
|
||||||
|
rack (>= 1.6.0)
|
||||||
|
rack-test (>= 0.6.3)
|
||||||
|
regexp_parser (>= 1.5, < 3.0)
|
||||||
|
xpath (~> 3.2)
|
||||||
|
childprocess (4.1.0)
|
||||||
|
coderay (1.1.3)
|
||||||
|
colorize (0.8.1)
|
||||||
|
concurrent-ruby (1.1.10)
|
||||||
|
crass (1.0.6)
|
||||||
|
diff-lcs (1.5.0)
|
||||||
|
erubi (1.10.0)
|
||||||
|
execjs (2.8.1)
|
||||||
|
fasterer (0.9.0)
|
||||||
|
colorize (~> 0.7)
|
||||||
|
ruby_parser (>= 3.14.1)
|
||||||
|
ffi (1.15.5)
|
||||||
|
formtastic (3.1.5)
|
||||||
|
actionpack (>= 3.2.13)
|
||||||
|
formtastic_i18n (0.7.0)
|
||||||
|
globalid (1.0.0)
|
||||||
|
activesupport (>= 5.0)
|
||||||
|
has_scope (0.8.0)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
i18n (1.10.0)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
inherited_resources (1.13.1)
|
||||||
|
actionpack (>= 5.2, < 7.1)
|
||||||
|
has_scope (~> 0.6)
|
||||||
|
railties (>= 5.2, < 7.1)
|
||||||
|
responders (>= 2, < 4)
|
||||||
|
jquery-rails (4.4.0)
|
||||||
|
rails-dom-testing (>= 1, < 3)
|
||||||
|
railties (>= 4.2.0)
|
||||||
|
thor (>= 0.14, < 2.0)
|
||||||
|
kaminari (1.2.2)
|
||||||
|
activesupport (>= 4.1.0)
|
||||||
|
kaminari-actionview (= 1.2.2)
|
||||||
|
kaminari-activerecord (= 1.2.2)
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-actionview (1.2.2)
|
||||||
|
actionview
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-activerecord (1.2.2)
|
||||||
|
activerecord
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-core (1.2.2)
|
||||||
|
kwalify (0.7.2)
|
||||||
|
loofah (2.15.0)
|
||||||
|
crass (~> 1.0.2)
|
||||||
|
nokogiri (>= 1.5.9)
|
||||||
|
mail (2.7.1)
|
||||||
|
mini_mime (>= 0.1.1)
|
||||||
|
marcel (1.0.2)
|
||||||
|
matrix (0.4.2)
|
||||||
|
method_source (1.0.0)
|
||||||
|
mini_mime (1.1.2)
|
||||||
|
minitest (5.15.0)
|
||||||
|
nio4r (2.5.8)
|
||||||
|
nokogiri (1.13.3-x86_64-darwin)
|
||||||
|
racc (~> 1.4)
|
||||||
|
nokogiri (1.13.3-x86_64-linux)
|
||||||
|
racc (~> 1.4)
|
||||||
|
parallel (1.22.1)
|
||||||
|
parser (3.1.1.0)
|
||||||
|
ast (~> 2.4.1)
|
||||||
|
pry (0.14.1)
|
||||||
|
coderay (~> 1.1)
|
||||||
|
method_source (~> 1.0)
|
||||||
|
pry-rails (0.3.9)
|
||||||
|
pry (>= 0.10.4)
|
||||||
|
public_suffix (4.0.6)
|
||||||
|
puma (5.6.2)
|
||||||
|
nio4r (~> 2.0)
|
||||||
|
racc (1.6.0)
|
||||||
|
rack (2.2.3)
|
||||||
|
rack-test (1.1.0)
|
||||||
|
rack (>= 1.0, < 3)
|
||||||
|
rails (5.2.7)
|
||||||
|
actioncable (= 5.2.7)
|
||||||
|
actionmailer (= 5.2.7)
|
||||||
|
actionpack (= 5.2.7)
|
||||||
|
actionview (= 5.2.7)
|
||||||
|
activejob (= 5.2.7)
|
||||||
|
activemodel (= 5.2.7)
|
||||||
|
activerecord (= 5.2.7)
|
||||||
|
activestorage (= 5.2.7)
|
||||||
|
activesupport (= 5.2.7)
|
||||||
|
bundler (>= 1.3.0)
|
||||||
|
railties (= 5.2.7)
|
||||||
|
sprockets-rails (>= 2.0.0)
|
||||||
|
rails-dom-testing (2.0.3)
|
||||||
|
activesupport (>= 4.2.0)
|
||||||
|
nokogiri (>= 1.6)
|
||||||
|
rails-html-sanitizer (1.4.2)
|
||||||
|
loofah (~> 2.3)
|
||||||
|
railties (5.2.7)
|
||||||
|
actionpack (= 5.2.7)
|
||||||
|
activesupport (= 5.2.7)
|
||||||
|
method_source
|
||||||
|
rake (>= 0.8.7)
|
||||||
|
thor (>= 0.19.0, < 2.0)
|
||||||
|
rainbow (3.1.1)
|
||||||
|
rake (13.0.6)
|
||||||
|
ransack (2.5.0)
|
||||||
|
activerecord (>= 5.2.4)
|
||||||
|
activesupport (>= 5.2.4)
|
||||||
|
i18n
|
||||||
|
rb-fsevent (0.11.1)
|
||||||
|
rb-inotify (0.10.1)
|
||||||
|
ffi (~> 1.0)
|
||||||
|
reek (6.1.0)
|
||||||
|
kwalify (~> 0.7.0)
|
||||||
|
parser (~> 3.1.0)
|
||||||
|
rainbow (>= 2.0, < 4.0)
|
||||||
|
regexp_parser (2.2.1)
|
||||||
|
responders (3.0.1)
|
||||||
|
actionpack (>= 5.0)
|
||||||
|
railties (>= 5.0)
|
||||||
|
rexml (3.2.5)
|
||||||
|
rspec-core (3.11.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-expectations (3.11.0)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-mocks (3.11.0)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-rails (5.1.1)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
railties (>= 5.2)
|
||||||
|
rspec-core (~> 3.10)
|
||||||
|
rspec-expectations (~> 3.10)
|
||||||
|
rspec-mocks (~> 3.10)
|
||||||
|
rspec-support (~> 3.10)
|
||||||
|
rspec-support (3.11.0)
|
||||||
|
rspec_junit_formatter (0.5.1)
|
||||||
|
rspec-core (>= 2, < 4, != 2.12.0)
|
||||||
|
rubocop (1.26.1)
|
||||||
|
parallel (~> 1.10)
|
||||||
|
parser (>= 3.1.0.0)
|
||||||
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
|
regexp_parser (>= 1.8, < 3.0)
|
||||||
|
rexml
|
||||||
|
rubocop-ast (>= 1.16.0, < 2.0)
|
||||||
|
ruby-progressbar (~> 1.7)
|
||||||
|
unicode-display_width (>= 1.4.0, < 3.0)
|
||||||
|
rubocop-ast (1.16.0)
|
||||||
|
parser (>= 3.1.1.0)
|
||||||
|
rubocop-packaging (0.5.1)
|
||||||
|
rubocop (>= 0.89, < 2.0)
|
||||||
|
rubocop-performance (1.13.3)
|
||||||
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
rubocop-ast (>= 0.4.0)
|
||||||
|
rubocop-rails (2.14.2)
|
||||||
|
activesupport (>= 4.2.0)
|
||||||
|
rack (>= 1.1)
|
||||||
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
rubocop-rspec (2.9.0)
|
||||||
|
rubocop (~> 1.19)
|
||||||
|
ruby-progressbar (1.11.0)
|
||||||
|
ruby2_keywords (0.0.5)
|
||||||
|
ruby_parser (3.18.1)
|
||||||
|
sexp_processor (~> 4.16)
|
||||||
|
rubyzip (2.3.2)
|
||||||
|
sass (3.7.4)
|
||||||
|
sass-listen (~> 4.0.0)
|
||||||
|
sass-listen (4.0.0)
|
||||||
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||||
|
rb-inotify (~> 0.9, >= 0.9.7)
|
||||||
|
sassc (2.4.0)
|
||||||
|
ffi (~> 1.9)
|
||||||
|
selenium-webdriver (4.1.0)
|
||||||
|
childprocess (>= 0.5, < 5.0)
|
||||||
|
rexml (~> 3.2, >= 3.2.5)
|
||||||
|
rubyzip (>= 1.2.2)
|
||||||
|
sexp_processor (4.16.0)
|
||||||
|
sprockets (4.0.3)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
rack (> 1, < 3)
|
||||||
|
sprockets-es6 (0.9.2)
|
||||||
|
babel-source (>= 5.8.11)
|
||||||
|
babel-transpiler
|
||||||
|
sprockets (>= 3.0.0)
|
||||||
|
sprockets-rails (3.4.2)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
sprockets (>= 3.0.0)
|
||||||
|
sqlite3 (1.4.2)
|
||||||
|
thor (1.2.1)
|
||||||
|
thread_safe (0.3.6)
|
||||||
|
tzinfo (1.2.9)
|
||||||
|
thread_safe (~> 0.1)
|
||||||
|
unicode-display_width (2.1.0)
|
||||||
|
websocket-driver (0.7.5)
|
||||||
|
websocket-extensions (>= 0.1.0)
|
||||||
|
websocket-extensions (0.1.5)
|
||||||
|
xpath (3.2.0)
|
||||||
|
nokogiri (~> 1.8)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
x86_64-darwin-21
|
||||||
|
x86_64-linux
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
activeadmin (~> 2.0.0)
|
||||||
|
activeadmin_quill_editor!
|
||||||
|
appraisal (~> 2.4)
|
||||||
|
brakeman
|
||||||
|
capybara
|
||||||
|
fasterer
|
||||||
|
pry-rails
|
||||||
|
puma
|
||||||
|
rails (~> 5.2.0)
|
||||||
|
reek
|
||||||
|
rspec-rails
|
||||||
|
rspec_junit_formatter
|
||||||
|
rubocop
|
||||||
|
rubocop-packaging
|
||||||
|
rubocop-performance
|
||||||
|
rubocop-rails
|
||||||
|
rubocop-rspec
|
||||||
|
sassc
|
||||||
|
selenium-webdriver
|
||||||
|
sqlite3
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
2.3.8
|
||||||
27
gemfiles/rails60_activeadmin.gemfile
Обычный файл
27
gemfiles/rails60_activeadmin.gemfile
Обычный файл
@@ -0,0 +1,27 @@
|
|||||||
|
# This file was generated by Appraisal
|
||||||
|
|
||||||
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
gem "activeadmin"
|
||||||
|
gem "rails", "~> 6.0.0"
|
||||||
|
|
||||||
|
group :development, :test do
|
||||||
|
gem "puma"
|
||||||
|
gem "sassc"
|
||||||
|
gem "sqlite3"
|
||||||
|
gem "capybara"
|
||||||
|
gem "rspec_junit_formatter"
|
||||||
|
gem "rspec-rails"
|
||||||
|
gem "selenium-webdriver"
|
||||||
|
gem "brakeman"
|
||||||
|
gem "fasterer"
|
||||||
|
gem "reek"
|
||||||
|
gem "rubocop"
|
||||||
|
gem "rubocop-packaging"
|
||||||
|
gem "rubocop-performance"
|
||||||
|
gem "rubocop-rails"
|
||||||
|
gem "rubocop-rspec"
|
||||||
|
gem "pry-rails"
|
||||||
|
end
|
||||||
|
|
||||||
|
gemspec path: "../"
|
||||||
309
gemfiles/rails60_activeadmin.gemfile.lock
Обычный файл
309
gemfiles/rails60_activeadmin.gemfile.lock
Обычный файл
@@ -0,0 +1,309 @@
|
|||||||
|
PATH
|
||||||
|
remote: ..
|
||||||
|
specs:
|
||||||
|
activeadmin_quill_editor (0.3.4)
|
||||||
|
activeadmin (~> 2.0)
|
||||||
|
|
||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
actioncable (6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
nio4r (~> 2.0)
|
||||||
|
websocket-driver (>= 0.6.1)
|
||||||
|
actionmailbox (6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
activejob (= 6.0.4.7)
|
||||||
|
activerecord (= 6.0.4.7)
|
||||||
|
activestorage (= 6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
mail (>= 2.7.1)
|
||||||
|
actionmailer (6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
actionview (= 6.0.4.7)
|
||||||
|
activejob (= 6.0.4.7)
|
||||||
|
mail (~> 2.5, >= 2.5.4)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
actionpack (6.0.4.7)
|
||||||
|
actionview (= 6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
rack (~> 2.0, >= 2.0.8)
|
||||||
|
rack-test (>= 0.6.3)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||||
|
actiontext (6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
activerecord (= 6.0.4.7)
|
||||||
|
activestorage (= 6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
nokogiri (>= 1.8.5)
|
||||||
|
actionview (6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
builder (~> 3.1)
|
||||||
|
erubi (~> 1.4)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||||
|
activeadmin (2.11.1)
|
||||||
|
arbre (~> 1.2, >= 1.2.1)
|
||||||
|
formtastic (>= 3.1, < 5.0)
|
||||||
|
formtastic_i18n (~> 0.4)
|
||||||
|
inherited_resources (~> 1.7)
|
||||||
|
jquery-rails (~> 4.2)
|
||||||
|
kaminari (~> 1.0, >= 1.2.1)
|
||||||
|
railties (>= 6.0, < 7.1)
|
||||||
|
ransack (~> 2.1, >= 2.1.1)
|
||||||
|
activejob (6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
globalid (>= 0.3.6)
|
||||||
|
activemodel (6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
activerecord (6.0.4.7)
|
||||||
|
activemodel (= 6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
activestorage (6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
activejob (= 6.0.4.7)
|
||||||
|
activerecord (= 6.0.4.7)
|
||||||
|
marcel (~> 1.0.0)
|
||||||
|
activesupport (6.0.4.7)
|
||||||
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
|
i18n (>= 0.7, < 2)
|
||||||
|
minitest (~> 5.1)
|
||||||
|
tzinfo (~> 1.1)
|
||||||
|
zeitwerk (~> 2.2, >= 2.2.2)
|
||||||
|
addressable (2.8.0)
|
||||||
|
public_suffix (>= 2.0.2, < 5.0)
|
||||||
|
appraisal (2.4.1)
|
||||||
|
bundler
|
||||||
|
rake
|
||||||
|
thor (>= 0.14.0)
|
||||||
|
arbre (1.5.0)
|
||||||
|
activesupport (>= 3.0.0, < 7.1)
|
||||||
|
ruby2_keywords (>= 0.0.2, < 1.0)
|
||||||
|
ast (2.4.2)
|
||||||
|
brakeman (5.2.1)
|
||||||
|
builder (3.2.4)
|
||||||
|
capybara (3.36.0)
|
||||||
|
addressable
|
||||||
|
matrix
|
||||||
|
mini_mime (>= 0.1.3)
|
||||||
|
nokogiri (~> 1.8)
|
||||||
|
rack (>= 1.6.0)
|
||||||
|
rack-test (>= 0.6.3)
|
||||||
|
regexp_parser (>= 1.5, < 3.0)
|
||||||
|
xpath (~> 3.2)
|
||||||
|
childprocess (4.1.0)
|
||||||
|
coderay (1.1.3)
|
||||||
|
colorize (0.8.1)
|
||||||
|
concurrent-ruby (1.1.10)
|
||||||
|
crass (1.0.6)
|
||||||
|
diff-lcs (1.5.0)
|
||||||
|
erubi (1.10.0)
|
||||||
|
fasterer (0.9.0)
|
||||||
|
colorize (~> 0.7)
|
||||||
|
ruby_parser (>= 3.14.1)
|
||||||
|
ffi (1.15.5)
|
||||||
|
formtastic (4.0.0)
|
||||||
|
actionpack (>= 5.2.0)
|
||||||
|
formtastic_i18n (0.7.0)
|
||||||
|
globalid (1.0.0)
|
||||||
|
activesupport (>= 5.0)
|
||||||
|
has_scope (0.8.0)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
i18n (1.10.0)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
inherited_resources (1.13.1)
|
||||||
|
actionpack (>= 5.2, < 7.1)
|
||||||
|
has_scope (~> 0.6)
|
||||||
|
railties (>= 5.2, < 7.1)
|
||||||
|
responders (>= 2, < 4)
|
||||||
|
jquery-rails (4.4.0)
|
||||||
|
rails-dom-testing (>= 1, < 3)
|
||||||
|
railties (>= 4.2.0)
|
||||||
|
thor (>= 0.14, < 2.0)
|
||||||
|
kaminari (1.2.2)
|
||||||
|
activesupport (>= 4.1.0)
|
||||||
|
kaminari-actionview (= 1.2.2)
|
||||||
|
kaminari-activerecord (= 1.2.2)
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-actionview (1.2.2)
|
||||||
|
actionview
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-activerecord (1.2.2)
|
||||||
|
activerecord
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-core (1.2.2)
|
||||||
|
kwalify (0.7.2)
|
||||||
|
loofah (2.15.0)
|
||||||
|
crass (~> 1.0.2)
|
||||||
|
nokogiri (>= 1.5.9)
|
||||||
|
mail (2.7.1)
|
||||||
|
mini_mime (>= 0.1.1)
|
||||||
|
marcel (1.0.2)
|
||||||
|
matrix (0.4.2)
|
||||||
|
method_source (1.0.0)
|
||||||
|
mini_mime (1.1.2)
|
||||||
|
minitest (5.15.0)
|
||||||
|
nio4r (2.5.8)
|
||||||
|
nokogiri (1.13.3-x86_64-darwin)
|
||||||
|
racc (~> 1.4)
|
||||||
|
nokogiri (1.13.3-x86_64-linux)
|
||||||
|
racc (~> 1.4)
|
||||||
|
parallel (1.22.1)
|
||||||
|
parser (3.1.1.0)
|
||||||
|
ast (~> 2.4.1)
|
||||||
|
pry (0.14.1)
|
||||||
|
coderay (~> 1.1)
|
||||||
|
method_source (~> 1.0)
|
||||||
|
pry-rails (0.3.9)
|
||||||
|
pry (>= 0.10.4)
|
||||||
|
public_suffix (4.0.6)
|
||||||
|
puma (5.6.2)
|
||||||
|
nio4r (~> 2.0)
|
||||||
|
racc (1.6.0)
|
||||||
|
rack (2.2.3)
|
||||||
|
rack-test (1.1.0)
|
||||||
|
rack (>= 1.0, < 3)
|
||||||
|
rails (6.0.4.7)
|
||||||
|
actioncable (= 6.0.4.7)
|
||||||
|
actionmailbox (= 6.0.4.7)
|
||||||
|
actionmailer (= 6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
actiontext (= 6.0.4.7)
|
||||||
|
actionview (= 6.0.4.7)
|
||||||
|
activejob (= 6.0.4.7)
|
||||||
|
activemodel (= 6.0.4.7)
|
||||||
|
activerecord (= 6.0.4.7)
|
||||||
|
activestorage (= 6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
bundler (>= 1.3.0)
|
||||||
|
railties (= 6.0.4.7)
|
||||||
|
sprockets-rails (>= 2.0.0)
|
||||||
|
rails-dom-testing (2.0.3)
|
||||||
|
activesupport (>= 4.2.0)
|
||||||
|
nokogiri (>= 1.6)
|
||||||
|
rails-html-sanitizer (1.4.2)
|
||||||
|
loofah (~> 2.3)
|
||||||
|
railties (6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
method_source
|
||||||
|
rake (>= 0.8.7)
|
||||||
|
thor (>= 0.20.3, < 2.0)
|
||||||
|
rainbow (3.1.1)
|
||||||
|
rake (13.0.6)
|
||||||
|
ransack (2.6.0)
|
||||||
|
activerecord (>= 6.0.4)
|
||||||
|
activesupport (>= 6.0.4)
|
||||||
|
i18n
|
||||||
|
reek (6.1.0)
|
||||||
|
kwalify (~> 0.7.0)
|
||||||
|
parser (~> 3.1.0)
|
||||||
|
rainbow (>= 2.0, < 4.0)
|
||||||
|
regexp_parser (2.2.1)
|
||||||
|
responders (3.0.1)
|
||||||
|
actionpack (>= 5.0)
|
||||||
|
railties (>= 5.0)
|
||||||
|
rexml (3.2.5)
|
||||||
|
rspec-core (3.11.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-expectations (3.11.0)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-mocks (3.11.0)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-rails (5.1.1)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
railties (>= 5.2)
|
||||||
|
rspec-core (~> 3.10)
|
||||||
|
rspec-expectations (~> 3.10)
|
||||||
|
rspec-mocks (~> 3.10)
|
||||||
|
rspec-support (~> 3.10)
|
||||||
|
rspec-support (3.11.0)
|
||||||
|
rspec_junit_formatter (0.5.1)
|
||||||
|
rspec-core (>= 2, < 4, != 2.12.0)
|
||||||
|
rubocop (1.26.1)
|
||||||
|
parallel (~> 1.10)
|
||||||
|
parser (>= 3.1.0.0)
|
||||||
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
|
regexp_parser (>= 1.8, < 3.0)
|
||||||
|
rexml
|
||||||
|
rubocop-ast (>= 1.16.0, < 2.0)
|
||||||
|
ruby-progressbar (~> 1.7)
|
||||||
|
unicode-display_width (>= 1.4.0, < 3.0)
|
||||||
|
rubocop-ast (1.16.0)
|
||||||
|
parser (>= 3.1.1.0)
|
||||||
|
rubocop-packaging (0.5.1)
|
||||||
|
rubocop (>= 0.89, < 2.0)
|
||||||
|
rubocop-performance (1.13.3)
|
||||||
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
rubocop-ast (>= 0.4.0)
|
||||||
|
rubocop-rails (2.14.2)
|
||||||
|
activesupport (>= 4.2.0)
|
||||||
|
rack (>= 1.1)
|
||||||
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
rubocop-rspec (2.9.0)
|
||||||
|
rubocop (~> 1.19)
|
||||||
|
ruby-progressbar (1.11.0)
|
||||||
|
ruby2_keywords (0.0.5)
|
||||||
|
ruby_parser (3.18.1)
|
||||||
|
sexp_processor (~> 4.16)
|
||||||
|
rubyzip (2.3.2)
|
||||||
|
sassc (2.4.0)
|
||||||
|
ffi (~> 1.9)
|
||||||
|
selenium-webdriver (4.1.0)
|
||||||
|
childprocess (>= 0.5, < 5.0)
|
||||||
|
rexml (~> 3.2, >= 3.2.5)
|
||||||
|
rubyzip (>= 1.2.2)
|
||||||
|
sexp_processor (4.16.0)
|
||||||
|
sprockets (4.0.3)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
rack (> 1, < 3)
|
||||||
|
sprockets-rails (3.4.2)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
sprockets (>= 3.0.0)
|
||||||
|
sqlite3 (1.4.2)
|
||||||
|
thor (1.2.1)
|
||||||
|
thread_safe (0.3.6)
|
||||||
|
tzinfo (1.2.9)
|
||||||
|
thread_safe (~> 0.1)
|
||||||
|
unicode-display_width (2.1.0)
|
||||||
|
websocket-driver (0.7.5)
|
||||||
|
websocket-extensions (>= 0.1.0)
|
||||||
|
websocket-extensions (0.1.5)
|
||||||
|
xpath (3.2.0)
|
||||||
|
nokogiri (~> 1.8)
|
||||||
|
zeitwerk (2.5.4)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
x86_64-darwin-21
|
||||||
|
x86_64-linux
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
activeadmin
|
||||||
|
activeadmin_quill_editor!
|
||||||
|
appraisal (~> 2.4)
|
||||||
|
brakeman
|
||||||
|
capybara
|
||||||
|
fasterer
|
||||||
|
pry-rails
|
||||||
|
puma
|
||||||
|
rails (~> 6.0.0)
|
||||||
|
reek
|
||||||
|
rspec-rails
|
||||||
|
rspec_junit_formatter
|
||||||
|
rubocop
|
||||||
|
rubocop-packaging
|
||||||
|
rubocop-performance
|
||||||
|
rubocop-rails
|
||||||
|
rubocop-rspec
|
||||||
|
sassc
|
||||||
|
selenium-webdriver
|
||||||
|
sqlite3
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
2.3.8
|
||||||
27
gemfiles/rails60_activeadmin22.gemfile
Обычный файл
27
gemfiles/rails60_activeadmin22.gemfile
Обычный файл
@@ -0,0 +1,27 @@
|
|||||||
|
# This file was generated by Appraisal
|
||||||
|
|
||||||
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
gem "activeadmin", "~> 2.2.0"
|
||||||
|
gem "rails", "~> 6.0.0"
|
||||||
|
|
||||||
|
group :development, :test do
|
||||||
|
gem "puma"
|
||||||
|
gem "sassc"
|
||||||
|
gem "sqlite3"
|
||||||
|
gem "capybara"
|
||||||
|
gem "rspec_junit_formatter"
|
||||||
|
gem "rspec-rails"
|
||||||
|
gem "selenium-webdriver"
|
||||||
|
gem "brakeman"
|
||||||
|
gem "fasterer"
|
||||||
|
gem "reek"
|
||||||
|
gem "rubocop"
|
||||||
|
gem "rubocop-packaging"
|
||||||
|
gem "rubocop-performance"
|
||||||
|
gem "rubocop-rails"
|
||||||
|
gem "rubocop-rspec"
|
||||||
|
gem "pry-rails"
|
||||||
|
end
|
||||||
|
|
||||||
|
gemspec path: "../"
|
||||||
328
gemfiles/rails60_activeadmin22.gemfile.lock
Обычный файл
328
gemfiles/rails60_activeadmin22.gemfile.lock
Обычный файл
@@ -0,0 +1,328 @@
|
|||||||
|
PATH
|
||||||
|
remote: ..
|
||||||
|
specs:
|
||||||
|
activeadmin_quill_editor (0.3.4)
|
||||||
|
activeadmin (~> 2.0)
|
||||||
|
|
||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
actioncable (6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
nio4r (~> 2.0)
|
||||||
|
websocket-driver (>= 0.6.1)
|
||||||
|
actionmailbox (6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
activejob (= 6.0.4.7)
|
||||||
|
activerecord (= 6.0.4.7)
|
||||||
|
activestorage (= 6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
mail (>= 2.7.1)
|
||||||
|
actionmailer (6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
actionview (= 6.0.4.7)
|
||||||
|
activejob (= 6.0.4.7)
|
||||||
|
mail (~> 2.5, >= 2.5.4)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
actionpack (6.0.4.7)
|
||||||
|
actionview (= 6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
rack (~> 2.0, >= 2.0.8)
|
||||||
|
rack-test (>= 0.6.3)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||||
|
actiontext (6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
activerecord (= 6.0.4.7)
|
||||||
|
activestorage (= 6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
nokogiri (>= 1.8.5)
|
||||||
|
actionview (6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
builder (~> 3.1)
|
||||||
|
erubi (~> 1.4)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||||
|
activeadmin (2.2.0)
|
||||||
|
arbre (~> 1.2, >= 1.2.1)
|
||||||
|
formtastic (~> 3.1)
|
||||||
|
formtastic_i18n (~> 0.4)
|
||||||
|
inherited_resources (~> 1.7)
|
||||||
|
jquery-rails (~> 4.2)
|
||||||
|
kaminari (~> 1.0, >= 1.0.1)
|
||||||
|
railties (>= 5.0, < 6.1)
|
||||||
|
ransack (~> 2.1, >= 2.1.1)
|
||||||
|
sassc-rails (~> 2.1)
|
||||||
|
sprockets (>= 3.0, < 4.1)
|
||||||
|
sprockets-es6 (~> 0.9, >= 0.9.2)
|
||||||
|
activejob (6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
globalid (>= 0.3.6)
|
||||||
|
activemodel (6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
activerecord (6.0.4.7)
|
||||||
|
activemodel (= 6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
activestorage (6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
activejob (= 6.0.4.7)
|
||||||
|
activerecord (= 6.0.4.7)
|
||||||
|
marcel (~> 1.0.0)
|
||||||
|
activesupport (6.0.4.7)
|
||||||
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
|
i18n (>= 0.7, < 2)
|
||||||
|
minitest (~> 5.1)
|
||||||
|
tzinfo (~> 1.1)
|
||||||
|
zeitwerk (~> 2.2, >= 2.2.2)
|
||||||
|
addressable (2.8.0)
|
||||||
|
public_suffix (>= 2.0.2, < 5.0)
|
||||||
|
appraisal (2.4.1)
|
||||||
|
bundler
|
||||||
|
rake
|
||||||
|
thor (>= 0.14.0)
|
||||||
|
arbre (1.5.0)
|
||||||
|
activesupport (>= 3.0.0, < 7.1)
|
||||||
|
ruby2_keywords (>= 0.0.2, < 1.0)
|
||||||
|
ast (2.4.2)
|
||||||
|
babel-source (5.8.35)
|
||||||
|
babel-transpiler (0.7.0)
|
||||||
|
babel-source (>= 4.0, < 6)
|
||||||
|
execjs (~> 2.0)
|
||||||
|
brakeman (5.2.1)
|
||||||
|
builder (3.2.4)
|
||||||
|
capybara (3.36.0)
|
||||||
|
addressable
|
||||||
|
matrix
|
||||||
|
mini_mime (>= 0.1.3)
|
||||||
|
nokogiri (~> 1.8)
|
||||||
|
rack (>= 1.6.0)
|
||||||
|
rack-test (>= 0.6.3)
|
||||||
|
regexp_parser (>= 1.5, < 3.0)
|
||||||
|
xpath (~> 3.2)
|
||||||
|
childprocess (4.1.0)
|
||||||
|
coderay (1.1.3)
|
||||||
|
colorize (0.8.1)
|
||||||
|
concurrent-ruby (1.1.10)
|
||||||
|
crass (1.0.6)
|
||||||
|
diff-lcs (1.5.0)
|
||||||
|
erubi (1.10.0)
|
||||||
|
execjs (2.8.1)
|
||||||
|
fasterer (0.9.0)
|
||||||
|
colorize (~> 0.7)
|
||||||
|
ruby_parser (>= 3.14.1)
|
||||||
|
ffi (1.15.5)
|
||||||
|
formtastic (3.1.5)
|
||||||
|
actionpack (>= 3.2.13)
|
||||||
|
formtastic_i18n (0.7.0)
|
||||||
|
globalid (1.0.0)
|
||||||
|
activesupport (>= 5.0)
|
||||||
|
has_scope (0.8.0)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
i18n (1.10.0)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
inherited_resources (1.13.1)
|
||||||
|
actionpack (>= 5.2, < 7.1)
|
||||||
|
has_scope (~> 0.6)
|
||||||
|
railties (>= 5.2, < 7.1)
|
||||||
|
responders (>= 2, < 4)
|
||||||
|
jquery-rails (4.4.0)
|
||||||
|
rails-dom-testing (>= 1, < 3)
|
||||||
|
railties (>= 4.2.0)
|
||||||
|
thor (>= 0.14, < 2.0)
|
||||||
|
kaminari (1.2.2)
|
||||||
|
activesupport (>= 4.1.0)
|
||||||
|
kaminari-actionview (= 1.2.2)
|
||||||
|
kaminari-activerecord (= 1.2.2)
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-actionview (1.2.2)
|
||||||
|
actionview
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-activerecord (1.2.2)
|
||||||
|
activerecord
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-core (1.2.2)
|
||||||
|
kwalify (0.7.2)
|
||||||
|
loofah (2.15.0)
|
||||||
|
crass (~> 1.0.2)
|
||||||
|
nokogiri (>= 1.5.9)
|
||||||
|
mail (2.7.1)
|
||||||
|
mini_mime (>= 0.1.1)
|
||||||
|
marcel (1.0.2)
|
||||||
|
matrix (0.4.2)
|
||||||
|
method_source (1.0.0)
|
||||||
|
mini_mime (1.1.2)
|
||||||
|
minitest (5.15.0)
|
||||||
|
nio4r (2.5.8)
|
||||||
|
nokogiri (1.13.3-x86_64-darwin)
|
||||||
|
racc (~> 1.4)
|
||||||
|
nokogiri (1.13.3-x86_64-linux)
|
||||||
|
racc (~> 1.4)
|
||||||
|
parallel (1.22.1)
|
||||||
|
parser (3.1.1.0)
|
||||||
|
ast (~> 2.4.1)
|
||||||
|
pry (0.14.1)
|
||||||
|
coderay (~> 1.1)
|
||||||
|
method_source (~> 1.0)
|
||||||
|
pry-rails (0.3.9)
|
||||||
|
pry (>= 0.10.4)
|
||||||
|
public_suffix (4.0.6)
|
||||||
|
puma (5.6.2)
|
||||||
|
nio4r (~> 2.0)
|
||||||
|
racc (1.6.0)
|
||||||
|
rack (2.2.3)
|
||||||
|
rack-test (1.1.0)
|
||||||
|
rack (>= 1.0, < 3)
|
||||||
|
rails (6.0.4.7)
|
||||||
|
actioncable (= 6.0.4.7)
|
||||||
|
actionmailbox (= 6.0.4.7)
|
||||||
|
actionmailer (= 6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
actiontext (= 6.0.4.7)
|
||||||
|
actionview (= 6.0.4.7)
|
||||||
|
activejob (= 6.0.4.7)
|
||||||
|
activemodel (= 6.0.4.7)
|
||||||
|
activerecord (= 6.0.4.7)
|
||||||
|
activestorage (= 6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
bundler (>= 1.3.0)
|
||||||
|
railties (= 6.0.4.7)
|
||||||
|
sprockets-rails (>= 2.0.0)
|
||||||
|
rails-dom-testing (2.0.3)
|
||||||
|
activesupport (>= 4.2.0)
|
||||||
|
nokogiri (>= 1.6)
|
||||||
|
rails-html-sanitizer (1.4.2)
|
||||||
|
loofah (~> 2.3)
|
||||||
|
railties (6.0.4.7)
|
||||||
|
actionpack (= 6.0.4.7)
|
||||||
|
activesupport (= 6.0.4.7)
|
||||||
|
method_source
|
||||||
|
rake (>= 0.8.7)
|
||||||
|
thor (>= 0.20.3, < 2.0)
|
||||||
|
rainbow (3.1.1)
|
||||||
|
rake (13.0.6)
|
||||||
|
ransack (2.6.0)
|
||||||
|
activerecord (>= 6.0.4)
|
||||||
|
activesupport (>= 6.0.4)
|
||||||
|
i18n
|
||||||
|
reek (6.1.0)
|
||||||
|
kwalify (~> 0.7.0)
|
||||||
|
parser (~> 3.1.0)
|
||||||
|
rainbow (>= 2.0, < 4.0)
|
||||||
|
regexp_parser (2.2.1)
|
||||||
|
responders (3.0.1)
|
||||||
|
actionpack (>= 5.0)
|
||||||
|
railties (>= 5.0)
|
||||||
|
rexml (3.2.5)
|
||||||
|
rspec-core (3.11.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-expectations (3.11.0)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-mocks (3.11.0)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-rails (5.1.1)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
railties (>= 5.2)
|
||||||
|
rspec-core (~> 3.10)
|
||||||
|
rspec-expectations (~> 3.10)
|
||||||
|
rspec-mocks (~> 3.10)
|
||||||
|
rspec-support (~> 3.10)
|
||||||
|
rspec-support (3.11.0)
|
||||||
|
rspec_junit_formatter (0.5.1)
|
||||||
|
rspec-core (>= 2, < 4, != 2.12.0)
|
||||||
|
rubocop (1.26.1)
|
||||||
|
parallel (~> 1.10)
|
||||||
|
parser (>= 3.1.0.0)
|
||||||
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
|
regexp_parser (>= 1.8, < 3.0)
|
||||||
|
rexml
|
||||||
|
rubocop-ast (>= 1.16.0, < 2.0)
|
||||||
|
ruby-progressbar (~> 1.7)
|
||||||
|
unicode-display_width (>= 1.4.0, < 3.0)
|
||||||
|
rubocop-ast (1.16.0)
|
||||||
|
parser (>= 3.1.1.0)
|
||||||
|
rubocop-packaging (0.5.1)
|
||||||
|
rubocop (>= 0.89, < 2.0)
|
||||||
|
rubocop-performance (1.13.3)
|
||||||
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
rubocop-ast (>= 0.4.0)
|
||||||
|
rubocop-rails (2.14.2)
|
||||||
|
activesupport (>= 4.2.0)
|
||||||
|
rack (>= 1.1)
|
||||||
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
rubocop-rspec (2.9.0)
|
||||||
|
rubocop (~> 1.19)
|
||||||
|
ruby-progressbar (1.11.0)
|
||||||
|
ruby2_keywords (0.0.5)
|
||||||
|
ruby_parser (3.18.1)
|
||||||
|
sexp_processor (~> 4.16)
|
||||||
|
rubyzip (2.3.2)
|
||||||
|
sassc (2.4.0)
|
||||||
|
ffi (~> 1.9)
|
||||||
|
sassc-rails (2.1.2)
|
||||||
|
railties (>= 4.0.0)
|
||||||
|
sassc (>= 2.0)
|
||||||
|
sprockets (> 3.0)
|
||||||
|
sprockets-rails
|
||||||
|
tilt
|
||||||
|
selenium-webdriver (4.1.0)
|
||||||
|
childprocess (>= 0.5, < 5.0)
|
||||||
|
rexml (~> 3.2, >= 3.2.5)
|
||||||
|
rubyzip (>= 1.2.2)
|
||||||
|
sexp_processor (4.16.0)
|
||||||
|
sprockets (4.0.3)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
rack (> 1, < 3)
|
||||||
|
sprockets-es6 (0.9.2)
|
||||||
|
babel-source (>= 5.8.11)
|
||||||
|
babel-transpiler
|
||||||
|
sprockets (>= 3.0.0)
|
||||||
|
sprockets-rails (3.4.2)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
sprockets (>= 3.0.0)
|
||||||
|
sqlite3 (1.4.2)
|
||||||
|
thor (1.2.1)
|
||||||
|
thread_safe (0.3.6)
|
||||||
|
tilt (2.0.10)
|
||||||
|
tzinfo (1.2.9)
|
||||||
|
thread_safe (~> 0.1)
|
||||||
|
unicode-display_width (2.1.0)
|
||||||
|
websocket-driver (0.7.5)
|
||||||
|
websocket-extensions (>= 0.1.0)
|
||||||
|
websocket-extensions (0.1.5)
|
||||||
|
xpath (3.2.0)
|
||||||
|
nokogiri (~> 1.8)
|
||||||
|
zeitwerk (2.5.4)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
x86_64-darwin-21
|
||||||
|
x86_64-linux
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
activeadmin (~> 2.2.0)
|
||||||
|
activeadmin_quill_editor!
|
||||||
|
appraisal (~> 2.4)
|
||||||
|
brakeman
|
||||||
|
capybara
|
||||||
|
fasterer
|
||||||
|
pry-rails
|
||||||
|
puma
|
||||||
|
rails (~> 6.0.0)
|
||||||
|
reek
|
||||||
|
rspec-rails
|
||||||
|
rspec_junit_formatter
|
||||||
|
rubocop
|
||||||
|
rubocop-packaging
|
||||||
|
rubocop-performance
|
||||||
|
rubocop-rails
|
||||||
|
rubocop-rspec
|
||||||
|
sassc
|
||||||
|
selenium-webdriver
|
||||||
|
sqlite3
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
2.3.8
|
||||||
27
gemfiles/rails61_activeadmin.gemfile
Обычный файл
27
gemfiles/rails61_activeadmin.gemfile
Обычный файл
@@ -0,0 +1,27 @@
|
|||||||
|
# This file was generated by Appraisal
|
||||||
|
|
||||||
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
gem "activeadmin"
|
||||||
|
gem "rails", "~> 6.1.0"
|
||||||
|
|
||||||
|
group :development, :test do
|
||||||
|
gem "puma"
|
||||||
|
gem "sassc"
|
||||||
|
gem "sqlite3"
|
||||||
|
gem "capybara"
|
||||||
|
gem "rspec_junit_formatter"
|
||||||
|
gem "rspec-rails"
|
||||||
|
gem "selenium-webdriver"
|
||||||
|
gem "brakeman"
|
||||||
|
gem "fasterer"
|
||||||
|
gem "reek"
|
||||||
|
gem "rubocop"
|
||||||
|
gem "rubocop-packaging"
|
||||||
|
gem "rubocop-performance"
|
||||||
|
gem "rubocop-rails"
|
||||||
|
gem "rubocop-rspec"
|
||||||
|
gem "pry-rails"
|
||||||
|
end
|
||||||
|
|
||||||
|
gemspec path: "../"
|
||||||
312
gemfiles/rails61_activeadmin.gemfile.lock
Обычный файл
312
gemfiles/rails61_activeadmin.gemfile.lock
Обычный файл
@@ -0,0 +1,312 @@
|
|||||||
|
PATH
|
||||||
|
remote: ..
|
||||||
|
specs:
|
||||||
|
activeadmin_quill_editor (0.3.4)
|
||||||
|
activeadmin (~> 2.0)
|
||||||
|
|
||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
actioncable (6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
nio4r (~> 2.0)
|
||||||
|
websocket-driver (>= 0.6.1)
|
||||||
|
actionmailbox (6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
activejob (= 6.1.5)
|
||||||
|
activerecord (= 6.1.5)
|
||||||
|
activestorage (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
mail (>= 2.7.1)
|
||||||
|
actionmailer (6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
actionview (= 6.1.5)
|
||||||
|
activejob (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
mail (~> 2.5, >= 2.5.4)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
actionpack (6.1.5)
|
||||||
|
actionview (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
rack (~> 2.0, >= 2.0.9)
|
||||||
|
rack-test (>= 0.6.3)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||||
|
actiontext (6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
activerecord (= 6.1.5)
|
||||||
|
activestorage (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
nokogiri (>= 1.8.5)
|
||||||
|
actionview (6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
builder (~> 3.1)
|
||||||
|
erubi (~> 1.4)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||||
|
activeadmin (2.11.1)
|
||||||
|
arbre (~> 1.2, >= 1.2.1)
|
||||||
|
formtastic (>= 3.1, < 5.0)
|
||||||
|
formtastic_i18n (~> 0.4)
|
||||||
|
inherited_resources (~> 1.7)
|
||||||
|
jquery-rails (~> 4.2)
|
||||||
|
kaminari (~> 1.0, >= 1.2.1)
|
||||||
|
railties (>= 6.0, < 7.1)
|
||||||
|
ransack (~> 2.1, >= 2.1.1)
|
||||||
|
activejob (6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
globalid (>= 0.3.6)
|
||||||
|
activemodel (6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
activerecord (6.1.5)
|
||||||
|
activemodel (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
activestorage (6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
activejob (= 6.1.5)
|
||||||
|
activerecord (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
marcel (~> 1.0)
|
||||||
|
mini_mime (>= 1.1.0)
|
||||||
|
activesupport (6.1.5)
|
||||||
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
|
i18n (>= 1.6, < 2)
|
||||||
|
minitest (>= 5.1)
|
||||||
|
tzinfo (~> 2.0)
|
||||||
|
zeitwerk (~> 2.3)
|
||||||
|
addressable (2.8.0)
|
||||||
|
public_suffix (>= 2.0.2, < 5.0)
|
||||||
|
appraisal (2.4.1)
|
||||||
|
bundler
|
||||||
|
rake
|
||||||
|
thor (>= 0.14.0)
|
||||||
|
arbre (1.5.0)
|
||||||
|
activesupport (>= 3.0.0, < 7.1)
|
||||||
|
ruby2_keywords (>= 0.0.2, < 1.0)
|
||||||
|
ast (2.4.2)
|
||||||
|
brakeman (5.2.1)
|
||||||
|
builder (3.2.4)
|
||||||
|
capybara (3.36.0)
|
||||||
|
addressable
|
||||||
|
matrix
|
||||||
|
mini_mime (>= 0.1.3)
|
||||||
|
nokogiri (~> 1.8)
|
||||||
|
rack (>= 1.6.0)
|
||||||
|
rack-test (>= 0.6.3)
|
||||||
|
regexp_parser (>= 1.5, < 3.0)
|
||||||
|
xpath (~> 3.2)
|
||||||
|
childprocess (4.1.0)
|
||||||
|
coderay (1.1.3)
|
||||||
|
colorize (0.8.1)
|
||||||
|
concurrent-ruby (1.1.10)
|
||||||
|
crass (1.0.6)
|
||||||
|
diff-lcs (1.5.0)
|
||||||
|
erubi (1.10.0)
|
||||||
|
fasterer (0.9.0)
|
||||||
|
colorize (~> 0.7)
|
||||||
|
ruby_parser (>= 3.14.1)
|
||||||
|
ffi (1.15.5)
|
||||||
|
formtastic (4.0.0)
|
||||||
|
actionpack (>= 5.2.0)
|
||||||
|
formtastic_i18n (0.7.0)
|
||||||
|
globalid (1.0.0)
|
||||||
|
activesupport (>= 5.0)
|
||||||
|
has_scope (0.8.0)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
i18n (1.10.0)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
inherited_resources (1.13.1)
|
||||||
|
actionpack (>= 5.2, < 7.1)
|
||||||
|
has_scope (~> 0.6)
|
||||||
|
railties (>= 5.2, < 7.1)
|
||||||
|
responders (>= 2, < 4)
|
||||||
|
jquery-rails (4.4.0)
|
||||||
|
rails-dom-testing (>= 1, < 3)
|
||||||
|
railties (>= 4.2.0)
|
||||||
|
thor (>= 0.14, < 2.0)
|
||||||
|
kaminari (1.2.2)
|
||||||
|
activesupport (>= 4.1.0)
|
||||||
|
kaminari-actionview (= 1.2.2)
|
||||||
|
kaminari-activerecord (= 1.2.2)
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-actionview (1.2.2)
|
||||||
|
actionview
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-activerecord (1.2.2)
|
||||||
|
activerecord
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-core (1.2.2)
|
||||||
|
kwalify (0.7.2)
|
||||||
|
loofah (2.15.0)
|
||||||
|
crass (~> 1.0.2)
|
||||||
|
nokogiri (>= 1.5.9)
|
||||||
|
mail (2.7.1)
|
||||||
|
mini_mime (>= 0.1.1)
|
||||||
|
marcel (1.0.2)
|
||||||
|
matrix (0.4.2)
|
||||||
|
method_source (1.0.0)
|
||||||
|
mini_mime (1.1.2)
|
||||||
|
minitest (5.15.0)
|
||||||
|
nio4r (2.5.8)
|
||||||
|
nokogiri (1.13.3-x86_64-darwin)
|
||||||
|
racc (~> 1.4)
|
||||||
|
nokogiri (1.13.3-x86_64-linux)
|
||||||
|
racc (~> 1.4)
|
||||||
|
parallel (1.22.1)
|
||||||
|
parser (3.1.1.0)
|
||||||
|
ast (~> 2.4.1)
|
||||||
|
pry (0.14.1)
|
||||||
|
coderay (~> 1.1)
|
||||||
|
method_source (~> 1.0)
|
||||||
|
pry-rails (0.3.9)
|
||||||
|
pry (>= 0.10.4)
|
||||||
|
public_suffix (4.0.6)
|
||||||
|
puma (5.6.2)
|
||||||
|
nio4r (~> 2.0)
|
||||||
|
racc (1.6.0)
|
||||||
|
rack (2.2.3)
|
||||||
|
rack-test (1.1.0)
|
||||||
|
rack (>= 1.0, < 3)
|
||||||
|
rails (6.1.5)
|
||||||
|
actioncable (= 6.1.5)
|
||||||
|
actionmailbox (= 6.1.5)
|
||||||
|
actionmailer (= 6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
actiontext (= 6.1.5)
|
||||||
|
actionview (= 6.1.5)
|
||||||
|
activejob (= 6.1.5)
|
||||||
|
activemodel (= 6.1.5)
|
||||||
|
activerecord (= 6.1.5)
|
||||||
|
activestorage (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
bundler (>= 1.15.0)
|
||||||
|
railties (= 6.1.5)
|
||||||
|
sprockets-rails (>= 2.0.0)
|
||||||
|
rails-dom-testing (2.0.3)
|
||||||
|
activesupport (>= 4.2.0)
|
||||||
|
nokogiri (>= 1.6)
|
||||||
|
rails-html-sanitizer (1.4.2)
|
||||||
|
loofah (~> 2.3)
|
||||||
|
railties (6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
method_source
|
||||||
|
rake (>= 12.2)
|
||||||
|
thor (~> 1.0)
|
||||||
|
rainbow (3.1.1)
|
||||||
|
rake (13.0.6)
|
||||||
|
ransack (2.6.0)
|
||||||
|
activerecord (>= 6.0.4)
|
||||||
|
activesupport (>= 6.0.4)
|
||||||
|
i18n
|
||||||
|
reek (6.1.0)
|
||||||
|
kwalify (~> 0.7.0)
|
||||||
|
parser (~> 3.1.0)
|
||||||
|
rainbow (>= 2.0, < 4.0)
|
||||||
|
regexp_parser (2.2.1)
|
||||||
|
responders (3.0.1)
|
||||||
|
actionpack (>= 5.0)
|
||||||
|
railties (>= 5.0)
|
||||||
|
rexml (3.2.5)
|
||||||
|
rspec-core (3.11.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-expectations (3.11.0)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-mocks (3.11.0)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-rails (5.1.1)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
railties (>= 5.2)
|
||||||
|
rspec-core (~> 3.10)
|
||||||
|
rspec-expectations (~> 3.10)
|
||||||
|
rspec-mocks (~> 3.10)
|
||||||
|
rspec-support (~> 3.10)
|
||||||
|
rspec-support (3.11.0)
|
||||||
|
rspec_junit_formatter (0.5.1)
|
||||||
|
rspec-core (>= 2, < 4, != 2.12.0)
|
||||||
|
rubocop (1.26.1)
|
||||||
|
parallel (~> 1.10)
|
||||||
|
parser (>= 3.1.0.0)
|
||||||
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
|
regexp_parser (>= 1.8, < 3.0)
|
||||||
|
rexml
|
||||||
|
rubocop-ast (>= 1.16.0, < 2.0)
|
||||||
|
ruby-progressbar (~> 1.7)
|
||||||
|
unicode-display_width (>= 1.4.0, < 3.0)
|
||||||
|
rubocop-ast (1.16.0)
|
||||||
|
parser (>= 3.1.1.0)
|
||||||
|
rubocop-packaging (0.5.1)
|
||||||
|
rubocop (>= 0.89, < 2.0)
|
||||||
|
rubocop-performance (1.13.3)
|
||||||
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
rubocop-ast (>= 0.4.0)
|
||||||
|
rubocop-rails (2.14.2)
|
||||||
|
activesupport (>= 4.2.0)
|
||||||
|
rack (>= 1.1)
|
||||||
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
rubocop-rspec (2.9.0)
|
||||||
|
rubocop (~> 1.19)
|
||||||
|
ruby-progressbar (1.11.0)
|
||||||
|
ruby2_keywords (0.0.5)
|
||||||
|
ruby_parser (3.18.1)
|
||||||
|
sexp_processor (~> 4.16)
|
||||||
|
rubyzip (2.3.2)
|
||||||
|
sassc (2.4.0)
|
||||||
|
ffi (~> 1.9)
|
||||||
|
selenium-webdriver (4.1.0)
|
||||||
|
childprocess (>= 0.5, < 5.0)
|
||||||
|
rexml (~> 3.2, >= 3.2.5)
|
||||||
|
rubyzip (>= 1.2.2)
|
||||||
|
sexp_processor (4.16.0)
|
||||||
|
sprockets (4.0.3)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
rack (> 1, < 3)
|
||||||
|
sprockets-rails (3.4.2)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
sprockets (>= 3.0.0)
|
||||||
|
sqlite3 (1.4.2)
|
||||||
|
thor (1.2.1)
|
||||||
|
tzinfo (2.0.4)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
unicode-display_width (2.1.0)
|
||||||
|
websocket-driver (0.7.5)
|
||||||
|
websocket-extensions (>= 0.1.0)
|
||||||
|
websocket-extensions (0.1.5)
|
||||||
|
xpath (3.2.0)
|
||||||
|
nokogiri (~> 1.8)
|
||||||
|
zeitwerk (2.5.4)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
x86_64-darwin-21
|
||||||
|
x86_64-linux
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
activeadmin
|
||||||
|
activeadmin_quill_editor!
|
||||||
|
appraisal (~> 2.4)
|
||||||
|
brakeman
|
||||||
|
capybara
|
||||||
|
fasterer
|
||||||
|
pry-rails
|
||||||
|
puma
|
||||||
|
rails (~> 6.1.0)
|
||||||
|
reek
|
||||||
|
rspec-rails
|
||||||
|
rspec_junit_formatter
|
||||||
|
rubocop
|
||||||
|
rubocop-packaging
|
||||||
|
rubocop-performance
|
||||||
|
rubocop-rails
|
||||||
|
rubocop-rspec
|
||||||
|
sassc
|
||||||
|
selenium-webdriver
|
||||||
|
sqlite3
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
2.3.8
|
||||||
27
gemfiles/rails61_activeadmin29.gemfile
Обычный файл
27
gemfiles/rails61_activeadmin29.gemfile
Обычный файл
@@ -0,0 +1,27 @@
|
|||||||
|
# This file was generated by Appraisal
|
||||||
|
|
||||||
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
gem "activeadmin", "~> 2.9.0"
|
||||||
|
gem "rails", "~> 6.1.0"
|
||||||
|
|
||||||
|
group :development, :test do
|
||||||
|
gem "puma"
|
||||||
|
gem "sassc"
|
||||||
|
gem "sqlite3"
|
||||||
|
gem "capybara"
|
||||||
|
gem "rspec_junit_formatter"
|
||||||
|
gem "rspec-rails"
|
||||||
|
gem "selenium-webdriver"
|
||||||
|
gem "brakeman"
|
||||||
|
gem "fasterer"
|
||||||
|
gem "reek"
|
||||||
|
gem "rubocop"
|
||||||
|
gem "rubocop-packaging"
|
||||||
|
gem "rubocop-performance"
|
||||||
|
gem "rubocop-rails"
|
||||||
|
gem "rubocop-rspec"
|
||||||
|
gem "pry-rails"
|
||||||
|
end
|
||||||
|
|
||||||
|
gemspec path: "../"
|
||||||
312
gemfiles/rails61_activeadmin29.gemfile.lock
Обычный файл
312
gemfiles/rails61_activeadmin29.gemfile.lock
Обычный файл
@@ -0,0 +1,312 @@
|
|||||||
|
PATH
|
||||||
|
remote: ..
|
||||||
|
specs:
|
||||||
|
activeadmin_quill_editor (0.3.4)
|
||||||
|
activeadmin (~> 2.0)
|
||||||
|
|
||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
actioncable (6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
nio4r (~> 2.0)
|
||||||
|
websocket-driver (>= 0.6.1)
|
||||||
|
actionmailbox (6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
activejob (= 6.1.5)
|
||||||
|
activerecord (= 6.1.5)
|
||||||
|
activestorage (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
mail (>= 2.7.1)
|
||||||
|
actionmailer (6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
actionview (= 6.1.5)
|
||||||
|
activejob (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
mail (~> 2.5, >= 2.5.4)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
actionpack (6.1.5)
|
||||||
|
actionview (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
rack (~> 2.0, >= 2.0.9)
|
||||||
|
rack-test (>= 0.6.3)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||||
|
actiontext (6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
activerecord (= 6.1.5)
|
||||||
|
activestorage (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
nokogiri (>= 1.8.5)
|
||||||
|
actionview (6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
builder (~> 3.1)
|
||||||
|
erubi (~> 1.4)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||||
|
activeadmin (2.9.0)
|
||||||
|
arbre (~> 1.2, >= 1.2.1)
|
||||||
|
formtastic (>= 3.1, < 5.0)
|
||||||
|
formtastic_i18n (~> 0.4)
|
||||||
|
inherited_resources (~> 1.7)
|
||||||
|
jquery-rails (~> 4.2)
|
||||||
|
kaminari (~> 1.0, >= 1.2.1)
|
||||||
|
railties (>= 5.2, < 6.2)
|
||||||
|
ransack (~> 2.1, >= 2.1.1)
|
||||||
|
activejob (6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
globalid (>= 0.3.6)
|
||||||
|
activemodel (6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
activerecord (6.1.5)
|
||||||
|
activemodel (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
activestorage (6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
activejob (= 6.1.5)
|
||||||
|
activerecord (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
marcel (~> 1.0)
|
||||||
|
mini_mime (>= 1.1.0)
|
||||||
|
activesupport (6.1.5)
|
||||||
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
|
i18n (>= 1.6, < 2)
|
||||||
|
minitest (>= 5.1)
|
||||||
|
tzinfo (~> 2.0)
|
||||||
|
zeitwerk (~> 2.3)
|
||||||
|
addressable (2.8.0)
|
||||||
|
public_suffix (>= 2.0.2, < 5.0)
|
||||||
|
appraisal (2.4.1)
|
||||||
|
bundler
|
||||||
|
rake
|
||||||
|
thor (>= 0.14.0)
|
||||||
|
arbre (1.5.0)
|
||||||
|
activesupport (>= 3.0.0, < 7.1)
|
||||||
|
ruby2_keywords (>= 0.0.2, < 1.0)
|
||||||
|
ast (2.4.2)
|
||||||
|
brakeman (5.2.1)
|
||||||
|
builder (3.2.4)
|
||||||
|
capybara (3.36.0)
|
||||||
|
addressable
|
||||||
|
matrix
|
||||||
|
mini_mime (>= 0.1.3)
|
||||||
|
nokogiri (~> 1.8)
|
||||||
|
rack (>= 1.6.0)
|
||||||
|
rack-test (>= 0.6.3)
|
||||||
|
regexp_parser (>= 1.5, < 3.0)
|
||||||
|
xpath (~> 3.2)
|
||||||
|
childprocess (4.1.0)
|
||||||
|
coderay (1.1.3)
|
||||||
|
colorize (0.8.1)
|
||||||
|
concurrent-ruby (1.1.10)
|
||||||
|
crass (1.0.6)
|
||||||
|
diff-lcs (1.5.0)
|
||||||
|
erubi (1.10.0)
|
||||||
|
fasterer (0.9.0)
|
||||||
|
colorize (~> 0.7)
|
||||||
|
ruby_parser (>= 3.14.1)
|
||||||
|
ffi (1.15.5)
|
||||||
|
formtastic (4.0.0)
|
||||||
|
actionpack (>= 5.2.0)
|
||||||
|
formtastic_i18n (0.7.0)
|
||||||
|
globalid (1.0.0)
|
||||||
|
activesupport (>= 5.0)
|
||||||
|
has_scope (0.8.0)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
i18n (1.10.0)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
inherited_resources (1.13.1)
|
||||||
|
actionpack (>= 5.2, < 7.1)
|
||||||
|
has_scope (~> 0.6)
|
||||||
|
railties (>= 5.2, < 7.1)
|
||||||
|
responders (>= 2, < 4)
|
||||||
|
jquery-rails (4.4.0)
|
||||||
|
rails-dom-testing (>= 1, < 3)
|
||||||
|
railties (>= 4.2.0)
|
||||||
|
thor (>= 0.14, < 2.0)
|
||||||
|
kaminari (1.2.2)
|
||||||
|
activesupport (>= 4.1.0)
|
||||||
|
kaminari-actionview (= 1.2.2)
|
||||||
|
kaminari-activerecord (= 1.2.2)
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-actionview (1.2.2)
|
||||||
|
actionview
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-activerecord (1.2.2)
|
||||||
|
activerecord
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-core (1.2.2)
|
||||||
|
kwalify (0.7.2)
|
||||||
|
loofah (2.15.0)
|
||||||
|
crass (~> 1.0.2)
|
||||||
|
nokogiri (>= 1.5.9)
|
||||||
|
mail (2.7.1)
|
||||||
|
mini_mime (>= 0.1.1)
|
||||||
|
marcel (1.0.2)
|
||||||
|
matrix (0.4.2)
|
||||||
|
method_source (1.0.0)
|
||||||
|
mini_mime (1.1.2)
|
||||||
|
minitest (5.15.0)
|
||||||
|
nio4r (2.5.8)
|
||||||
|
nokogiri (1.13.3-x86_64-darwin)
|
||||||
|
racc (~> 1.4)
|
||||||
|
nokogiri (1.13.3-x86_64-linux)
|
||||||
|
racc (~> 1.4)
|
||||||
|
parallel (1.22.1)
|
||||||
|
parser (3.1.1.0)
|
||||||
|
ast (~> 2.4.1)
|
||||||
|
pry (0.14.1)
|
||||||
|
coderay (~> 1.1)
|
||||||
|
method_source (~> 1.0)
|
||||||
|
pry-rails (0.3.9)
|
||||||
|
pry (>= 0.10.4)
|
||||||
|
public_suffix (4.0.6)
|
||||||
|
puma (5.6.2)
|
||||||
|
nio4r (~> 2.0)
|
||||||
|
racc (1.6.0)
|
||||||
|
rack (2.2.3)
|
||||||
|
rack-test (1.1.0)
|
||||||
|
rack (>= 1.0, < 3)
|
||||||
|
rails (6.1.5)
|
||||||
|
actioncable (= 6.1.5)
|
||||||
|
actionmailbox (= 6.1.5)
|
||||||
|
actionmailer (= 6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
actiontext (= 6.1.5)
|
||||||
|
actionview (= 6.1.5)
|
||||||
|
activejob (= 6.1.5)
|
||||||
|
activemodel (= 6.1.5)
|
||||||
|
activerecord (= 6.1.5)
|
||||||
|
activestorage (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
bundler (>= 1.15.0)
|
||||||
|
railties (= 6.1.5)
|
||||||
|
sprockets-rails (>= 2.0.0)
|
||||||
|
rails-dom-testing (2.0.3)
|
||||||
|
activesupport (>= 4.2.0)
|
||||||
|
nokogiri (>= 1.6)
|
||||||
|
rails-html-sanitizer (1.4.2)
|
||||||
|
loofah (~> 2.3)
|
||||||
|
railties (6.1.5)
|
||||||
|
actionpack (= 6.1.5)
|
||||||
|
activesupport (= 6.1.5)
|
||||||
|
method_source
|
||||||
|
rake (>= 12.2)
|
||||||
|
thor (~> 1.0)
|
||||||
|
rainbow (3.1.1)
|
||||||
|
rake (13.0.6)
|
||||||
|
ransack (2.6.0)
|
||||||
|
activerecord (>= 6.0.4)
|
||||||
|
activesupport (>= 6.0.4)
|
||||||
|
i18n
|
||||||
|
reek (6.1.0)
|
||||||
|
kwalify (~> 0.7.0)
|
||||||
|
parser (~> 3.1.0)
|
||||||
|
rainbow (>= 2.0, < 4.0)
|
||||||
|
regexp_parser (2.2.1)
|
||||||
|
responders (3.0.1)
|
||||||
|
actionpack (>= 5.0)
|
||||||
|
railties (>= 5.0)
|
||||||
|
rexml (3.2.5)
|
||||||
|
rspec-core (3.11.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-expectations (3.11.0)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-mocks (3.11.0)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.11.0)
|
||||||
|
rspec-rails (5.1.1)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
railties (>= 5.2)
|
||||||
|
rspec-core (~> 3.10)
|
||||||
|
rspec-expectations (~> 3.10)
|
||||||
|
rspec-mocks (~> 3.10)
|
||||||
|
rspec-support (~> 3.10)
|
||||||
|
rspec-support (3.11.0)
|
||||||
|
rspec_junit_formatter (0.5.1)
|
||||||
|
rspec-core (>= 2, < 4, != 2.12.0)
|
||||||
|
rubocop (1.26.1)
|
||||||
|
parallel (~> 1.10)
|
||||||
|
parser (>= 3.1.0.0)
|
||||||
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
|
regexp_parser (>= 1.8, < 3.0)
|
||||||
|
rexml
|
||||||
|
rubocop-ast (>= 1.16.0, < 2.0)
|
||||||
|
ruby-progressbar (~> 1.7)
|
||||||
|
unicode-display_width (>= 1.4.0, < 3.0)
|
||||||
|
rubocop-ast (1.16.0)
|
||||||
|
parser (>= 3.1.1.0)
|
||||||
|
rubocop-packaging (0.5.1)
|
||||||
|
rubocop (>= 0.89, < 2.0)
|
||||||
|
rubocop-performance (1.13.3)
|
||||||
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
rubocop-ast (>= 0.4.0)
|
||||||
|
rubocop-rails (2.14.2)
|
||||||
|
activesupport (>= 4.2.0)
|
||||||
|
rack (>= 1.1)
|
||||||
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
rubocop-rspec (2.9.0)
|
||||||
|
rubocop (~> 1.19)
|
||||||
|
ruby-progressbar (1.11.0)
|
||||||
|
ruby2_keywords (0.0.5)
|
||||||
|
ruby_parser (3.18.1)
|
||||||
|
sexp_processor (~> 4.16)
|
||||||
|
rubyzip (2.3.2)
|
||||||
|
sassc (2.4.0)
|
||||||
|
ffi (~> 1.9)
|
||||||
|
selenium-webdriver (4.1.0)
|
||||||
|
childprocess (>= 0.5, < 5.0)
|
||||||
|
rexml (~> 3.2, >= 3.2.5)
|
||||||
|
rubyzip (>= 1.2.2)
|
||||||
|
sexp_processor (4.16.0)
|
||||||
|
sprockets (4.0.3)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
rack (> 1, < 3)
|
||||||
|
sprockets-rails (3.4.2)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
sprockets (>= 3.0.0)
|
||||||
|
sqlite3 (1.4.2)
|
||||||
|
thor (1.2.1)
|
||||||
|
tzinfo (2.0.4)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
unicode-display_width (2.1.0)
|
||||||
|
websocket-driver (0.7.5)
|
||||||
|
websocket-extensions (>= 0.1.0)
|
||||||
|
websocket-extensions (0.1.5)
|
||||||
|
xpath (3.2.0)
|
||||||
|
nokogiri (~> 1.8)
|
||||||
|
zeitwerk (2.5.4)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
x86_64-darwin-21
|
||||||
|
x86_64-linux
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
activeadmin (~> 2.9.0)
|
||||||
|
activeadmin_quill_editor!
|
||||||
|
appraisal (~> 2.4)
|
||||||
|
brakeman
|
||||||
|
capybara
|
||||||
|
fasterer
|
||||||
|
pry-rails
|
||||||
|
puma
|
||||||
|
rails (~> 6.1.0)
|
||||||
|
reek
|
||||||
|
rspec-rails
|
||||||
|
rspec_junit_formatter
|
||||||
|
rubocop
|
||||||
|
rubocop-packaging
|
||||||
|
rubocop-performance
|
||||||
|
rubocop-rails
|
||||||
|
rubocop-rspec
|
||||||
|
sassc
|
||||||
|
selenium-webdriver
|
||||||
|
sqlite3
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
2.3.8
|
||||||
@@ -8,7 +8,7 @@ Bundler.require(*Rails.groups)
|
|||||||
module Dummy
|
module Dummy
|
||||||
class Application < Rails::Application
|
class Application < Rails::Application
|
||||||
# Initialize configuration defaults for originally generated Rails version.
|
# Initialize configuration defaults for originally generated Rails version.
|
||||||
config.load_defaults 6.0
|
config.load_defaults 6.0 if Rails::VERSION::MAJOR == 6
|
||||||
|
|
||||||
# Settings in config/environments/* take precedence over those specified here.
|
# Settings in config/environments/* take precedence over those specified here.
|
||||||
# Application configuration can go into files in config/initializers
|
# Application configuration can go into files in config/initializers
|
||||||
@@ -16,4 +16,3 @@ module Dummy
|
|||||||
# the framework and any gems in your application.
|
# the framework and any gems in your application.
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -33,4 +33,15 @@ RSpec.configure do |config|
|
|||||||
config.use_transactional_fixtures = true
|
config.use_transactional_fixtures = true
|
||||||
config.use_instantiated_fixtures = false
|
config.use_instantiated_fixtures = false
|
||||||
config.render_views = false
|
config.render_views = false
|
||||||
|
|
||||||
|
config.before(:suite) do
|
||||||
|
intro = ('-' * 80)
|
||||||
|
intro << "\n"
|
||||||
|
intro << "- Ruby: #{RUBY_VERSION}\n"
|
||||||
|
intro << "- Rails: #{Rails.version}\n"
|
||||||
|
intro << "- ActiveAdmin: #{ActiveAdmin::VERSION}\n"
|
||||||
|
intro << ('-' * 80)
|
||||||
|
|
||||||
|
RSpec.configuration.reporter.message(intro)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -5,10 +5,12 @@ RSpec.configure do |config|
|
|||||||
config.filter_run focus: true
|
config.filter_run focus: true
|
||||||
config.filter_run_excluding changes_filesystem: true
|
config.filter_run_excluding changes_filesystem: true
|
||||||
config.run_all_when_everything_filtered = true
|
config.run_all_when_everything_filtered = true
|
||||||
config.color = true
|
|
||||||
config.order = :random
|
|
||||||
config.example_status_persistence_file_path = '.rspec_failures'
|
|
||||||
|
|
||||||
|
config.color = true
|
||||||
|
config.tty = true
|
||||||
|
|
||||||
|
config.example_status_persistence_file_path = '.rspec_failures'
|
||||||
|
config.order = :random
|
||||||
config.shared_context_metadata_behavior = :apply_to_host_groups
|
config.shared_context_metadata_behavior = :apply_to_host_groups
|
||||||
|
|
||||||
config.expect_with :rspec do |expectations|
|
config.expect_with :rspec do |expectations|
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user