capybara_active_admin 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b1bf2ae0f9197923f7ba0d945b79083ef7565e03b7c8ff6d7c13d5c484022ec1
4
+ data.tar.gz: 3ce7185784c70378209464e8460d7efdefa3176253cf224aeb0fefddd61f79c0
5
+ SHA512:
6
+ metadata.gz: 124073cea23b21a8ca5ed203c175ffae1064f53ef58141f7a7953fc4369466c39217487206775f5dc6f78abfa8d037c0db4791130331131c230a896805416ca9
7
+ data.tar.gz: d56630e1e0ab2f96e5c2773b46e3728cc66400c1a3845a7f9ea18f1550085e4d1244e42e97eae191a90a0b935c6824c0a6198dbf909e508341a08674b42f24dc
data/.gitignore ADDED
@@ -0,0 +1,15 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ /spec/dummy/tmp/
10
+ /spec/dummy/log/*.log
11
+
12
+ # rspec failure tracking
13
+ .rspec_status
14
+
15
+ Gemfile.lock
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require rails_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,81 @@
1
+ AllCops:
2
+ DisplayCopNames: true
3
+ TargetRubyVersion: 2.3
4
+ Exclude:
5
+ - vendor/**/*
6
+ - tmp/**/*
7
+
8
+ # Capybara/RSpec uses have_ had_ as name convention for matchers.
9
+ Naming/PredicateName:
10
+ Enabled: false
11
+
12
+ Lint/RaiseException:
13
+ Enabled: true
14
+
15
+ Lint/StructNewOverride:
16
+ Enabled: true
17
+
18
+ Layout/LineLength:
19
+ Max: 180
20
+
21
+ Style/SymbolArray:
22
+ EnforcedStyle: brackets
23
+
24
+ Style/Lambda:
25
+ EnforcedStyle: literal
26
+
27
+ Naming/MethodParameterName:
28
+ AllowedNames:
29
+ - id
30
+
31
+ Style/HashEachMethods:
32
+ Enabled: true
33
+
34
+ Style/HashTransformKeys:
35
+ Enabled: true
36
+
37
+ Style/HashTransformValues:
38
+ Enabled: true
39
+
40
+ Style/Documentation:
41
+ Enabled: false
42
+
43
+ Metrics/PerceivedComplexity:
44
+ Enabled: false
45
+
46
+ Metrics/MethodLength:
47
+ Enabled: false
48
+
49
+ Metrics/AbcSize:
50
+ Enabled: false
51
+
52
+ Metrics/ModuleLength:
53
+ Enabled: false
54
+
55
+ Metrics/BlockLength:
56
+ Enabled: false
57
+
58
+ Metrics/ClassLength:
59
+ Enabled: false
60
+
61
+ Metrics/CyclomaticComplexity:
62
+ Enabled: false
63
+
64
+ Layout/MultilineOperationIndentation:
65
+ Enabled: false
66
+
67
+ Layout/FirstHashElementIndentation:
68
+ Enabled: false
69
+
70
+ Layout/FirstArrayElementIndentation:
71
+ Enabled: false
72
+
73
+ Layout/FirstArgumentIndentation:
74
+ Enabled: false
75
+
76
+ Layout/ClosingParenthesisIndentation:
77
+ Enabled: false
78
+
79
+ Layout/ArgumentAlignment:
80
+ Enabled: false
81
+
data/.travis.yml ADDED
@@ -0,0 +1,12 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ jobs:
5
+ include:
6
+ - rvm: 2.5.7
7
+ env: RAILS_VERSION="~> 6.0"
8
+ - rvm: 2.5.7
9
+ env: RAILS_VERSION="~> 5.0"
10
+ - rvm: 2.3.8
11
+ env: RAILS_VERSION="~> 5.2"
12
+ before_install: gem install bundler -v 2.1.4
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at senid231@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ # Specify your gem's dependencies in capybara_active_admin.gemspec
6
+ gemspec
7
+
8
+ gem 'capybara'
9
+ gem 'selenium-webdriver'
10
+ # https://github.com/mattheworiordan/capybara-screenshot/issues/225#issuecomment-409407825
11
+ gem 'cuprite'
12
+ gem 'puma'
13
+ gem 'rake', '~> 12.0'
14
+ gem 'rspec-rails', '~> 4.0'
15
+ gem 'rubocop', '~> 0.81.0', require: false
16
+ gem 'system_test_html_screenshots', require: false
17
+
18
+ gem 'activeadmin', ENV.fetch('ACTIVE_ADMIN_VERSION', '~> 2.0'), require: false
19
+ gem 'rails', ENV.fetch('RAILS_VERSION', '6.0.0')
20
+ gem 'sassc-rails', '2.1.2'
21
+ gem 'sprockets', '3.7.2'
22
+ gem 'sqlite3', '1.4.1'
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Denis Talakevich
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,97 @@
1
+ # Capybara Active Admin
2
+
3
+ [![Build Status](https://travis-ci.com/activeadmin-plugins/capybara_active_admin.svg?branch=master)](https://travis-ci.com/activeadmin-plugins/capybara_active_admin)
4
+
5
+ Capybara DSL for fast and easy testing Active Admin applications.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ group :test do
13
+ gem 'capybara_active_admin'
14
+ end
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ $ bundle install
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install capybara_active_admin
24
+
25
+ ## Usage
26
+
27
+ `rails_helper.rb`
28
+ ```ruby
29
+ require 'capybara/active_admin/rspec'
30
+ ```
31
+
32
+ `spec/system/users_spec.rb`
33
+ ```ruby
34
+ RSpec.describe 'Users', js: true do
35
+ subject do
36
+ visit admin_users_path
37
+ end
38
+
39
+ let!(:john) { User.create!(full_name: 'John Doe') }
40
+ let!(:jane) { User.create!(full_name: 'Jane Air') }
41
+
42
+ it 'have john and jane in users table' do
43
+ subject
44
+
45
+ expect(page).to have_action_item('New User')
46
+ expect(page).to_not have_action_item('Edit User')
47
+
48
+ with_table_for('users') do
49
+ expect(page).to have_table_row(count: 2)
50
+ expect(page).to have_table_col('John Doe')
51
+ expect(page).to have_table_col('John Doe', row_id: john.id)
52
+ expect(page).to have_table_col('John Doe', row_id: john.id, col_name: 'Full Name')
53
+
54
+ expect(page).to_not have_table_col('John Doe', row_id: john.id, col_name: 'Id')
55
+ expect(page).to_not have_table_col('John Doe', row_id: jane.id)
56
+ expect(page).to_not have_table_col('John Doe', row_id: jane.id, col_name: 'Full Name')
57
+ end
58
+ end
59
+
60
+ it 'creates user' do
61
+ subject
62
+
63
+ click_action_item('New User')
64
+ expect(page).to have_current_path(new_admin_user_path)
65
+
66
+ fill_in 'Full name', with: 'Johny Cage'
67
+ click_button 'Create User'
68
+ expect(page).to have_flash_message('User was successfully created.', type: :notice)
69
+ user = User.last!
70
+ expect(page).to have_current_path admin_user_path(user.id)
71
+
72
+ expect(User.count).to eq(1)
73
+ expect(user).to have_attributes(full_name: 'Johny Cage')
74
+ end
75
+ end
76
+ ```
77
+
78
+ See `spec/support` for more user examples.
79
+ See `capybara/active_admin/test_helpers.rb` for available DSL methods.
80
+
81
+ ## Development
82
+
83
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
84
+
85
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
86
+
87
+ ## Contributing
88
+
89
+ Bug reports and pull requests are welcome on GitHub at https://github.com/activeadmin-plugins/capybara_active_admin. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/activeadmin-plugins/capybara_active_admin/blob/master/CODE_OF_CONDUCT.md).
90
+
91
+ ## License
92
+
93
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
94
+
95
+ ## Code of Conduct
96
+
97
+ Everyone interacting in the Capybara::ActiveAdmin project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/activeadmin-plugins/capybara_active_admin/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+ require 'rubocop/rake_task'
6
+
7
+ RSpec::Core::RakeTask.new(:spec)
8
+ RuboCop::RakeTask.new(:rubocop)
9
+
10
+ task default: [:rubocop, :spec]
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'bundler/setup'
5
+ require 'capybara_active_admin'
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require 'irb'
15
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/capybara/active_admin/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'capybara_active_admin'
7
+ spec.version = Capybara::ActiveAdmin::VERSION
8
+ spec.authors = ['Denis Talakevich']
9
+ spec.email = ['senid231@gmail.com']
10
+
11
+ spec.summary = 'Capybara DSL for fast and easy testing Active Admin applications.'
12
+ spec.description = 'Capybara DSL for fast and easy testing Active Admin applications.'
13
+ spec.homepage = 'https://github.com/active_admin_plugins/capybara_active_admin'
14
+ spec.license = 'MIT'
15
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
16
+
17
+ spec.metadata['homepage_uri'] = spec.homepage
18
+ spec.metadata['source_code_uri'] = spec.homepage
19
+ spec.metadata['changelog_uri'] = spec.homepage
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ end
26
+ spec.bindir = 'exe'
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ['lib']
29
+
30
+ spec.add_dependency 'activeadmin'
31
+ # spec.add_dependency 'devise'
32
+ spec.add_dependency 'rspec', '~> 3.0'
33
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'capybara/active_admin/version'
4
+ require 'capybara/active_admin/test_helpers'
5
+
6
+ module Capybara
7
+ module ActiveAdmin
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rspec'
4
+ require 'capybara/active_admin'
5
+
6
+ RSpec.configure do |config|
7
+ config.include Capybara::ActiveAdmin::TestHelpers, type: :system
8
+ config.include Capybara::ActiveAdmin::TestHelpers, type: :feature
9
+ end
@@ -0,0 +1,91 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Capybara
4
+ module ActiveAdmin
5
+ module TestHelpers
6
+ def have_action_item(text, options = {})
7
+ opts = options.merge(text: text)
8
+ have_selector('#titlebar_right .action_items .action_item', opts)
9
+ end
10
+
11
+ def click_action_item(title, options = {})
12
+ within '#titlebar_right .action_items' do
13
+ click_link(title, options)
14
+ end
15
+ end
16
+
17
+ def have_page_title(text, options = {})
18
+ opts = options.merge(text: text)
19
+ have_selector('#page_title', opts)
20
+ end
21
+
22
+ def have_flash_message(text, options = {})
23
+ type = options.delete(:type)
24
+ opts = options.merge(text: text)
25
+ selector = if type
26
+ ".flashes .flash.flash_#{type}"
27
+ else
28
+ '.flashes .flash'
29
+ end
30
+ have_selector(selector, opts)
31
+ end
32
+
33
+ def have_table_row(options = {})
34
+ model = options.delete(:model)
35
+ row_id = options.delete(:row_id)
36
+ selector = table_row_selector(model, row_id: row_id)
37
+ have_selector(selector, options)
38
+ end
39
+
40
+ def have_table_col(text, options = {})
41
+ model = options.delete(:model)
42
+ row_id = options.delete(:row_id)
43
+ col_name = options.delete(:col_name)
44
+ selector = table_col_selector(model, row_id: row_id, col_name: col_name)
45
+ opts = options.merge(text: text)
46
+ have_selector(selector, opts)
47
+ end
48
+
49
+ def table_selector(model)
50
+ model ||= current_table_model
51
+ return 'table.index_table' if model.nil?
52
+
53
+ "table.index_table#index_table_#{model.to_s.pluralize}"
54
+ end
55
+
56
+ def table_row_selector(model, row_id: nil)
57
+ model ||= current_table_model
58
+ raise ArgumentError, 'model required when row_id is passed' if row_id && model.nil?
59
+
60
+ selector = table_selector(model)
61
+
62
+ row_selector = row_id ? "tr##{model.to_s.singularize}_#{row_id}" : 'tr'
63
+ "#{selector} > tbody > #{row_selector}"
64
+ end
65
+
66
+ def table_col_selector(model, row_id: nil, col_name: nil)
67
+ model ||= current_table_model
68
+ col_name = col_name.to_s.gsub(' ', '_').downcase if col_name
69
+ selector = table_row_selector(model, row_id: row_id)
70
+ col_selector = col_name ? "td.col.col-#{col_name}" : 'td.col'
71
+ "#{selector} > #{col_selector}"
72
+ end
73
+
74
+ def with_table_for(model)
75
+ old = @_capybara_active_admin_table_model
76
+ @_capybara_active_admin_table_model = model
77
+ yield
78
+ ensure
79
+ @_capybara_active_admin_table_model = old
80
+ end
81
+
82
+ def current_table_model
83
+ @_capybara_active_admin_table_model
84
+ end
85
+
86
+ # extend RSpec::Matchers::DSL
87
+ # matcher :have_action_item do |expected|
88
+ # end
89
+ end
90
+ end
91
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Capybara
4
+ module ActiveAdmin
5
+ VERSION = '0.1.0'
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'capybara/active_admin'
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: capybara_active_admin
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Denis Talakevich
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-04-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activeadmin
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.0'
41
+ description: Capybara DSL for fast and easy testing Active Admin applications.
42
+ email:
43
+ - senid231@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - ".rspec"
50
+ - ".rubocop.yml"
51
+ - ".travis.yml"
52
+ - CODE_OF_CONDUCT.md
53
+ - Gemfile
54
+ - LICENSE.txt
55
+ - README.md
56
+ - Rakefile
57
+ - bin/console
58
+ - bin/setup
59
+ - capybara_active_admin.gemspec
60
+ - lib/capybara/active_admin.rb
61
+ - lib/capybara/active_admin/rspec.rb
62
+ - lib/capybara/active_admin/test_helpers.rb
63
+ - lib/capybara/active_admin/version.rb
64
+ - lib/capybara_active_admin.rb
65
+ homepage: https://github.com/active_admin_plugins/capybara_active_admin
66
+ licenses:
67
+ - MIT
68
+ metadata:
69
+ homepage_uri: https://github.com/active_admin_plugins/capybara_active_admin
70
+ source_code_uri: https://github.com/active_admin_plugins/capybara_active_admin
71
+ changelog_uri: https://github.com/active_admin_plugins/capybara_active_admin
72
+ post_install_message:
73
+ rdoc_options: []
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: 2.3.0
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ requirements: []
87
+ rubygems_version: 3.1.2
88
+ signing_key:
89
+ specification_version: 4
90
+ summary: Capybara DSL for fast and easy testing Active Admin applications.
91
+ test_files: []