mache 2.1.1 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +18 -7
- data/{LICENSE → LICENSE.md} +0 -0
- data/README.md +19 -31
- data/lib/mache/dsl.rb +7 -7
- data/lib/mache/helpers/rails/flash.rb +10 -10
- data/lib/mache/helpers/rails/routes.rb +1 -1
- data/lib/mache/helpers/rails.rb +2 -2
- data/lib/mache/node.rb +26 -9
- data/lib/mache/page.rb +7 -7
- data/lib/mache/version.rb +1 -1
- data/lib/mache.rb +3 -3
- metadata +18 -43
- data/.gitignore +0 -4
- data/.rspec +0 -2
- data/.rubocop.yml +0 -22
- data/.ruby-version +0 -1
- data/.travis.yml +0 -2
- data/.yardopts +0 -1
- data/Gemfile +0 -4
- data/Rakefile +0 -8
- data/bin/console +0 -14
- data/mache.gemspec +0 -27
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d3a2af226ce51ad3f1edc15475a67a5b9a2fdd4a81b65d46a2f847e664a58227
|
4
|
+
data.tar.gz: 5b66d43a77bb704f598909d34a4f512bb08d81a5f1fcb2ce914ea48ff3b46589
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e1ab401e8d8763b1ad2e4b582da83268479b3777bb7734ad90cfc7fbe7659cada443391b2e7966ffc99d4c5a3313e904e8988664577943a4512e4c211dd0570
|
7
|
+
data.tar.gz: 93d87a2b414db501060f26d4a0bfdeaa4e45c3ed10721a5f4c1313cb27dc16b055638af6ab24cb6887cebcc470c6374608a77ce0e3897a5fc0eaeb20be98d67a
|
data/CHANGELOG.md
CHANGED
@@ -1,22 +1,33 @@
|
|
1
|
-
|
1
|
+
## 3.2.0 (2022-03-29)
|
2
|
+
|
3
|
+
* Fix Capybara errors on Ruby 3.1
|
4
|
+
|
5
|
+
## 3.1.0 (2019-04-30)
|
6
|
+
|
7
|
+
* Add `empty` method to `Node` class
|
8
|
+
|
9
|
+
## 3.0.0
|
10
|
+
|
11
|
+
* Upgrade capybara
|
12
|
+
* Update documentation
|
2
13
|
|
3
14
|
## 2.1.1
|
4
15
|
|
5
|
-
|
16
|
+
* Fix a bug in the flash helper matchers
|
6
17
|
|
7
18
|
## 2.1.0
|
8
19
|
|
9
|
-
|
20
|
+
* Add flash and routing helpers
|
10
21
|
|
11
22
|
## 2.0.0
|
12
23
|
|
13
|
-
|
14
|
-
|
24
|
+
* Ensure the klass argument is a subclass of `Node` in the DSL methods
|
25
|
+
* Remove `Component` class
|
15
26
|
|
16
27
|
## 1.0.1
|
17
28
|
|
18
|
-
|
29
|
+
* Update documentation
|
19
30
|
|
20
31
|
## 1.0.0
|
21
32
|
|
22
|
-
|
33
|
+
* Initial release
|
data/{LICENSE → LICENSE.md}
RENAMED
File without changes
|
data/README.md
CHANGED
@@ -5,21 +5,18 @@
|
|
5
5
|
Mâché (pronounced "mash-ay") is a tool that helps you to write cleaner and more
|
6
6
|
expressive acceptance tests for your Ruby web applications using page objects.
|
7
7
|
|
8
|
-
## Table of
|
9
|
-
|
10
|
-
* [
|
11
|
-
|
12
|
-
* [
|
13
|
-
* [
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
* [License](#license)
|
21
|
-
|
22
|
-
## What is a page object?
|
8
|
+
## Table of Contents
|
9
|
+
|
10
|
+
* [What is a Page Object?](#what-is-a-page-object)
|
11
|
+
* [Getting Started](#getting-started)
|
12
|
+
* [Elements](#elements)
|
13
|
+
* [Components](#components)
|
14
|
+
* [Helpers](#helpers)
|
15
|
+
* [Examples](#examples)
|
16
|
+
* [Documentation](#documentation)
|
17
|
+
* [License](#license)
|
18
|
+
|
19
|
+
## What is a Page Object?
|
23
20
|
|
24
21
|
A [page object](https://martinfowler.com/bliki/PageObject.html) is a data
|
25
22
|
structure that provides an interface to your web application for the purposes
|
@@ -39,12 +36,12 @@ low-level API methods like `find`, `fill_in`, and `click_button`, but it
|
|
39
36
|
doesn't provide us with high-level methods to do things like "sign in to the
|
40
37
|
app" or "click the Dashboard item in the navigation bar".
|
41
38
|
|
42
|
-
This is where page objects come in. Using
|
43
|
-
|
39
|
+
This is where page objects come in. Using Mâché, we can define a page object
|
40
|
+
class called `SignInPage` and use it any time we want to automate
|
44
41
|
authenticating with our app. It could handle visiting the sign in page,
|
45
42
|
entering the user's credentials, and clicking the "Sign in" button.
|
46
43
|
|
47
|
-
## Getting
|
44
|
+
## Getting Started
|
48
45
|
|
49
46
|
Let's dive straight in and take a look at an example. Consider the following
|
50
47
|
HTML fragment for the welcome page in our app:
|
@@ -216,7 +213,7 @@ class WelcomePage < Mache::Page
|
|
216
213
|
end
|
217
214
|
```
|
218
215
|
|
219
|
-
##
|
216
|
+
## Examples
|
220
217
|
|
221
218
|
Let's look at an example of an acceptance test for our `WelcomePage`. Note that
|
222
219
|
the `Header`, `NavItem`, and `Nav` components can be reused in any other page
|
@@ -287,19 +284,10 @@ feature "Welcome page" do
|
|
287
284
|
end
|
288
285
|
```
|
289
286
|
|
290
|
-
##
|
291
|
-
|
292
|
-
Read the [API documentation](http://www.rubydoc.info/gems/mache) on RubyDoc.
|
293
|
-
|
294
|
-
## Contributing
|
287
|
+
## Documentation
|
295
288
|
|
296
|
-
|
297
|
-
submitting your PR:
|
298
|
-
|
299
|
-
```
|
300
|
-
> bundle exec rake
|
301
|
-
```
|
289
|
+
Read the [API reference](http://www.rubydoc.info/gems/mache) on RubyDoc.
|
302
290
|
|
303
291
|
## License
|
304
292
|
|
305
|
-
Mâché is licensed under the [MIT License](/LICENSE).
|
293
|
+
Mâché is licensed under the [MIT License](/LICENSE.md).
|
data/lib/mache/dsl.rb
CHANGED
@@ -55,7 +55,7 @@ module Mache
|
|
55
55
|
#
|
56
56
|
module ClassMethods
|
57
57
|
def automation(*ids)
|
58
|
-
ids.map { |id| %([data-automation="#{id}"]) }.join(
|
58
|
+
ids.map { |id| %([data-automation="#{id}"]) }.join(' ')
|
59
59
|
end
|
60
60
|
|
61
61
|
# Defines an element that wraps an HTML fragment.
|
@@ -65,7 +65,7 @@ module Mache
|
|
65
65
|
# @param options [Hash] a hash of options to pass to the Capybara finder
|
66
66
|
def element(name, selector, options = {})
|
67
67
|
define_method(name.to_s) do
|
68
|
-
Node.new(node: @node.find(selector, options))
|
68
|
+
Node.new(node: @node.find(selector, **options))
|
69
69
|
end
|
70
70
|
|
71
71
|
define_helper_methods(name, selector)
|
@@ -80,7 +80,7 @@ module Mache
|
|
80
80
|
options = {minimum: 1}.merge(options)
|
81
81
|
|
82
82
|
define_method(name.to_s) do
|
83
|
-
@node.all(selector, options).map do |node|
|
83
|
+
@node.all(selector, **options).map do |node|
|
84
84
|
Node.new(node: node)
|
85
85
|
end
|
86
86
|
end
|
@@ -96,11 +96,11 @@ module Mache
|
|
96
96
|
# @param options [Hash] a hash of options to pass to the Capybara finder
|
97
97
|
def component(name, klass, selector, options = {})
|
98
98
|
unless klass < Node
|
99
|
-
raise ArgumentError,
|
99
|
+
raise ArgumentError, 'Must be given a subclass of Node'
|
100
100
|
end
|
101
101
|
|
102
102
|
define_method(name.to_s) do
|
103
|
-
klass.new(node: @node.find(selector, options))
|
103
|
+
klass.new(node: @node.find(selector, **options))
|
104
104
|
end
|
105
105
|
|
106
106
|
define_helper_methods(name, selector)
|
@@ -114,13 +114,13 @@ module Mache
|
|
114
114
|
# @param options [Hash] a hash of options to pass to the Capybara finder
|
115
115
|
def components(name, klass, selector, options = {})
|
116
116
|
unless klass < Node
|
117
|
-
raise ArgumentError,
|
117
|
+
raise ArgumentError, 'Must be given a subclass of Node'
|
118
118
|
end
|
119
119
|
|
120
120
|
options = {minimum: 1}.merge(options)
|
121
121
|
|
122
122
|
define_method(name.to_s) do
|
123
|
-
@node.all(selector, options).map do |node|
|
123
|
+
@node.all(selector, **options).map do |node|
|
124
124
|
klass.new(node: node)
|
125
125
|
end
|
126
126
|
end
|
@@ -1,10 +1,10 @@
|
|
1
1
|
module Mache
|
2
2
|
module Helpers
|
3
3
|
module Rails
|
4
|
-
# The {Flash} module can be
|
4
|
+
# The {Flash} module can be included into page object classes that support
|
5
5
|
# flash behaviour.
|
6
6
|
#
|
7
|
-
# rubocop:disable
|
7
|
+
# rubocop:disable Naming/PredicateName
|
8
8
|
module Flash
|
9
9
|
def self.included(base)
|
10
10
|
base.extend(ClassMethods)
|
@@ -18,18 +18,18 @@ module Mache
|
|
18
18
|
|
19
19
|
# Tests whether the page has a flash message.
|
20
20
|
#
|
21
|
-
# @param [String, Symbol]
|
22
|
-
# @param [Regexp, String]
|
21
|
+
# @param type [String, Symbol] a flash message type
|
22
|
+
# @param text [Regexp, String] a value to match
|
23
23
|
# @return `true` if the page has a matching message, `false` otherwise
|
24
24
|
def has_message?(type, text)
|
25
|
-
css_class = flash[:class] ||
|
25
|
+
css_class = flash[:class] || ''
|
26
26
|
regexp = text.is_a?(String) ? /\A#{Regexp.escape(text)}\Z/ : text
|
27
27
|
css_class.include?(type.to_s) && flash.text.strip =~ regexp
|
28
28
|
end
|
29
29
|
|
30
30
|
# Tests whether the page has a success message.
|
31
31
|
#
|
32
|
-
# @param [Regexp, String]
|
32
|
+
# @param text [Regexp, String] a value to match
|
33
33
|
# @return `true` if the page has a matching message, `false` otherwise
|
34
34
|
def has_success_message?(text)
|
35
35
|
has_message?(:success, text)
|
@@ -37,7 +37,7 @@ module Mache
|
|
37
37
|
|
38
38
|
# Tests whether the page has a notice message.
|
39
39
|
#
|
40
|
-
# @param [Regexp, String]
|
40
|
+
# @param text [Regexp, String] a value to match
|
41
41
|
# @return `true` if the page has a matching message, `false` otherwise
|
42
42
|
def has_notice_message?(text)
|
43
43
|
has_message?(:notice, text)
|
@@ -45,7 +45,7 @@ module Mache
|
|
45
45
|
|
46
46
|
# Tests whether the page has an alert message.
|
47
47
|
#
|
48
|
-
# @param [Regexp, String]
|
48
|
+
# @param text [Regexp, String] a value to match
|
49
49
|
# @return `true` if the page has a matching message, `false` otherwise
|
50
50
|
def has_alert_message?(text)
|
51
51
|
has_message?(:alert, text)
|
@@ -53,13 +53,13 @@ module Mache
|
|
53
53
|
|
54
54
|
# Tests whether the page has an error message.
|
55
55
|
#
|
56
|
-
# @param [Regexp, String]
|
56
|
+
# @param text [Regexp, String] a value to match
|
57
57
|
# @return `true` if the page has a matching message, `false` otherwise
|
58
58
|
def has_error_message?(text)
|
59
59
|
has_message?(:error, text)
|
60
60
|
end
|
61
61
|
end
|
62
|
-
# rubocop:enable
|
62
|
+
# rubocop:enable Naming/PredicateName
|
63
63
|
end
|
64
64
|
end
|
65
65
|
end
|
data/lib/mache/helpers/rails.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
require
|
2
|
-
require
|
1
|
+
require 'mache/helpers/rails/flash'
|
2
|
+
require 'mache/helpers/rails/routes'
|
data/lib/mache/node.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
require
|
1
|
+
require 'mache/dsl'
|
2
2
|
|
3
3
|
module Mache
|
4
4
|
# The {Node} class represents a wrapped HTML page, or fragment. It exposes all
|
5
|
-
# methods from the Mache
|
5
|
+
# methods from the Mache DSL, and forwards any Capybara API methods to the
|
6
6
|
# {#node} object.
|
7
7
|
#
|
8
8
|
# @abstract
|
@@ -11,22 +11,39 @@ module Mache
|
|
11
11
|
|
12
12
|
# The underlying Capybara node object wrapped by this instance.
|
13
13
|
#
|
14
|
-
# @return [Capybara::Node]
|
14
|
+
# @return [Capybara::Node] a node object
|
15
15
|
attr_reader :node
|
16
16
|
|
17
17
|
# Returns a new instance of Node.
|
18
18
|
#
|
19
19
|
# @param node [Capybara::Node] a Capybara node object to wrap
|
20
20
|
def initialize(node:)
|
21
|
-
@node
|
21
|
+
@node = node
|
22
|
+
end
|
23
|
+
|
24
|
+
# Tests whether the node is empty.
|
25
|
+
#
|
26
|
+
# @return [Boolean] `true` if the node is empty, `false` otherwise.
|
27
|
+
def empty?
|
28
|
+
node.all('*').length.zero?
|
22
29
|
end
|
23
30
|
|
24
31
|
# Forwards any Capybara API calls to the node object.
|
25
|
-
|
26
|
-
|
27
|
-
@node.
|
28
|
-
|
29
|
-
|
32
|
+
if RUBY_VERSION < "3"
|
33
|
+
def method_missing(name, *args, &block)
|
34
|
+
if @node.respond_to?(name)
|
35
|
+
@node.send(name, *args, &block)
|
36
|
+
else
|
37
|
+
super
|
38
|
+
end
|
39
|
+
end
|
40
|
+
else
|
41
|
+
def method_missing(name, *args, **kwargs, &block)
|
42
|
+
if @node.respond_to?(name)
|
43
|
+
@node.send(name, *args, **kwargs, &block)
|
44
|
+
else
|
45
|
+
super
|
46
|
+
end
|
30
47
|
end
|
31
48
|
end
|
32
49
|
|
data/lib/mache/page.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
require
|
2
|
-
require
|
1
|
+
require 'capybara'
|
2
|
+
require 'mache/node'
|
3
3
|
|
4
4
|
module Mache
|
5
5
|
# The {Page} class wraps an HTML page with an application-specific API. You
|
@@ -32,13 +32,13 @@ module Mache
|
|
32
32
|
# @param node [Capybara::Node] a Capybara node to attach to
|
33
33
|
# @param path [String] a path to where the page is located
|
34
34
|
def initialize(node: Capybara.current_session, path: nil)
|
35
|
-
@node
|
36
|
-
@path
|
35
|
+
@node = node
|
36
|
+
@path = path
|
37
37
|
end
|
38
38
|
|
39
39
|
# Visits the page at its {#path}.
|
40
40
|
#
|
41
|
-
# @return [Page]
|
41
|
+
# @return [Page] a page object
|
42
42
|
def visit
|
43
43
|
@node.visit(path)
|
44
44
|
self
|
@@ -46,14 +46,14 @@ module Mache
|
|
46
46
|
|
47
47
|
# Tests whether the page is current.
|
48
48
|
#
|
49
|
-
# @return [Boolean] `true` if the page is current, `false` otherwise
|
49
|
+
# @return [Boolean] `true` if the page is current, `false` otherwise.
|
50
50
|
def current?
|
51
51
|
@node.current_path == path
|
52
52
|
end
|
53
53
|
|
54
54
|
# Creates a new page object and calls {#visit} on it.
|
55
55
|
#
|
56
|
-
# @return [Page]
|
56
|
+
# @return [Page] a page object
|
57
57
|
def self.visit
|
58
58
|
new.visit
|
59
59
|
end
|
data/lib/mache/version.rb
CHANGED
data/lib/mache.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
require
|
2
|
-
require
|
3
|
-
require
|
1
|
+
require 'mache/node'
|
2
|
+
require 'mache/page'
|
3
|
+
require 'mache/version'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mache
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 3.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joshua Bassett
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capybara
|
@@ -16,84 +16,70 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '3'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: bundler
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '1.14'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '1.14'
|
26
|
+
version: '3'
|
41
27
|
- !ruby/object:Gem::Dependency
|
42
28
|
name: rake
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
44
30
|
requirements:
|
45
31
|
- - "~>"
|
46
32
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
33
|
+
version: 12.3.2
|
48
34
|
type: :development
|
49
35
|
prerelease: false
|
50
36
|
version_requirements: !ruby/object:Gem::Requirement
|
51
37
|
requirements:
|
52
38
|
- - "~>"
|
53
39
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
40
|
+
version: 12.3.2
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: rack
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
58
44
|
requirements:
|
59
45
|
- - "~>"
|
60
46
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
47
|
+
version: 2.0.7
|
62
48
|
type: :development
|
63
49
|
prerelease: false
|
64
50
|
version_requirements: !ruby/object:Gem::Requirement
|
65
51
|
requirements:
|
66
52
|
- - "~>"
|
67
53
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
54
|
+
version: 2.0.7
|
69
55
|
- !ruby/object:Gem::Dependency
|
70
56
|
name: rspec
|
71
57
|
requirement: !ruby/object:Gem::Requirement
|
72
58
|
requirements:
|
73
59
|
- - "~>"
|
74
60
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
61
|
+
version: 3.8.0
|
76
62
|
type: :development
|
77
63
|
prerelease: false
|
78
64
|
version_requirements: !ruby/object:Gem::Requirement
|
79
65
|
requirements:
|
80
66
|
- - "~>"
|
81
67
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
68
|
+
version: 3.8.0
|
83
69
|
- !ruby/object:Gem::Dependency
|
84
70
|
name: rubocop
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|
86
72
|
requirements:
|
87
73
|
- - "~>"
|
88
74
|
- !ruby/object:Gem::Version
|
89
|
-
version:
|
75
|
+
version: 0.67.2
|
90
76
|
type: :development
|
91
77
|
prerelease: false
|
92
78
|
version_requirements: !ruby/object:Gem::Requirement
|
93
79
|
requirements:
|
94
80
|
- - "~>"
|
95
81
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
82
|
+
version: 0.67.2
|
97
83
|
description: Mâché provides helps you to write cleaner and more expressive acceptance
|
98
84
|
tests for your web applications using page objects.
|
99
85
|
email:
|
@@ -102,18 +88,9 @@ executables: []
|
|
102
88
|
extensions: []
|
103
89
|
extra_rdoc_files: []
|
104
90
|
files:
|
105
|
-
- ".gitignore"
|
106
|
-
- ".rspec"
|
107
|
-
- ".rubocop.yml"
|
108
|
-
- ".ruby-version"
|
109
|
-
- ".travis.yml"
|
110
|
-
- ".yardopts"
|
111
91
|
- CHANGELOG.md
|
112
|
-
-
|
113
|
-
- LICENSE
|
92
|
+
- LICENSE.md
|
114
93
|
- README.md
|
115
|
-
- Rakefile
|
116
|
-
- bin/console
|
117
94
|
- lib/mache.rb
|
118
95
|
- lib/mache/dsl.rb
|
119
96
|
- lib/mache/helpers/rails.rb
|
@@ -122,12 +99,11 @@ files:
|
|
122
99
|
- lib/mache/node.rb
|
123
100
|
- lib/mache/page.rb
|
124
101
|
- lib/mache/version.rb
|
125
|
-
- mache.gemspec
|
126
102
|
homepage: https://github.com/nullobject/mache
|
127
103
|
licenses:
|
128
104
|
- MIT
|
129
105
|
metadata: {}
|
130
|
-
post_install_message:
|
106
|
+
post_install_message:
|
131
107
|
rdoc_options: []
|
132
108
|
require_paths:
|
133
109
|
- lib
|
@@ -135,16 +111,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
135
111
|
requirements:
|
136
112
|
- - ">="
|
137
113
|
- !ruby/object:Gem::Version
|
138
|
-
version: '
|
114
|
+
version: '2.7'
|
139
115
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
140
116
|
requirements:
|
141
117
|
- - ">="
|
142
118
|
- !ruby/object:Gem::Version
|
143
119
|
version: '0'
|
144
120
|
requirements: []
|
145
|
-
|
146
|
-
|
147
|
-
signing_key:
|
121
|
+
rubygems_version: 3.0.3
|
122
|
+
signing_key:
|
148
123
|
specification_version: 4
|
149
124
|
summary: A library for writing cleaner and more expressive acceptance tests using
|
150
125
|
page objects.
|
data/.gitignore
DELETED
data/.rspec
DELETED
data/.rubocop.yml
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
AllCops:
|
2
|
-
Exclude:
|
3
|
-
- "mache.gemspec"
|
4
|
-
|
5
|
-
Metrics/BlockLength:
|
6
|
-
ExcludedMethods: describe
|
7
|
-
|
8
|
-
Style/BlockDelimiters:
|
9
|
-
Enabled: false
|
10
|
-
|
11
|
-
Style/Documentation:
|
12
|
-
Exclude:
|
13
|
-
- "spec/**/*"
|
14
|
-
|
15
|
-
Style/FrozenStringLiteralComment:
|
16
|
-
Enabled: false
|
17
|
-
|
18
|
-
Style/SpaceInsideHashLiteralBraces:
|
19
|
-
Enabled: false
|
20
|
-
|
21
|
-
Style/StringLiterals:
|
22
|
-
EnforcedStyle: double_quotes
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
2.3.3
|
data/.travis.yml
DELETED
data/.yardopts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
--markup markdown
|
data/Gemfile
DELETED
data/Rakefile
DELETED
data/bin/console
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "bundler/setup"
|
4
|
-
require "mache"
|
5
|
-
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
8
|
-
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
-
# require "pry"
|
11
|
-
# Pry.start
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start
|
data/mache.gemspec
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
lib = File.expand_path("../lib", __FILE__)
|
2
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
-
|
4
|
-
require "mache/version"
|
5
|
-
|
6
|
-
Gem::Specification.new do |spec|
|
7
|
-
spec.name = "mache"
|
8
|
-
spec.version = Mache::VERSION
|
9
|
-
spec.authors = ["Joshua Bassett"]
|
10
|
-
spec.email = ["josh.bassett@gmail.com"]
|
11
|
-
spec.summary = "A library for writing cleaner and more expressive acceptance tests using page objects."
|
12
|
-
spec.description = "Mâché provides helps you to write cleaner and more expressive acceptance tests for your web applications using page objects."
|
13
|
-
spec.homepage = "https://github.com/nullobject/mache"
|
14
|
-
spec.license = "MIT"
|
15
|
-
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
16
|
-
f.match(%r{^(test|spec|features)/})
|
17
|
-
end
|
18
|
-
spec.require_paths = ["lib"]
|
19
|
-
|
20
|
-
spec.add_dependency "capybara", "~> 2"
|
21
|
-
|
22
|
-
spec.add_development_dependency "bundler", "~> 1.14"
|
23
|
-
spec.add_development_dependency "rake", "~> 12.0"
|
24
|
-
spec.add_development_dependency "rack", "~> 2.0"
|
25
|
-
spec.add_development_dependency "rspec", "~> 3.5"
|
26
|
-
spec.add_development_dependency "rubocop", "~> 0.47"
|
27
|
-
end
|