ae_page_objects 6.3.0 → 6.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +20 -0
- data/ae_page_objects.gemspec +1 -1
- data/lib/ae_page_objects/rails/application_router.rb +4 -2
- data/lib/ae_page_objects/version.rb +1 -1
- data/test/test_apps/7.2/engines/forum/forum.gemspec +17 -0
- data/test/test_apps/8.0/engines/forum/forum.gemspec +17 -0
- data/test/test_apps/8.1/engines/forum/forum.gemspec +17 -0
- metadata +8 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 51c16b468dc33eef725ef0d68453e5b5ecfa1d68c6a2f04cffd6152eaddd9e57
|
|
4
|
+
data.tar.gz: 3c6e4795ca29c72af36e3c611d12dd47a464437731c1cf5a7da3653a21f0608b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 778c0f197a0f9d31b6b3927bb3c7a5d1ec61dbe3a0bf71c7cd24de35e2f4d87888af3843767307b8e6864c5d19d0d6e289f8f90c3f2f34f25f822cff5c005e0e
|
|
7
|
+
data.tar.gz: df8bd92c2470f79954cb17c44192acd673b72cd15012851946e9873c0267af0500bf6bdce69be50aae9bd6802d172ce9bdc6dd7b60f7532982472c9bacbab0a3
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (C) 2012-2025 AppFolio, inc.
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/ae_page_objects.gemspec
CHANGED
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|.*gemspec)}] }
|
|
17
17
|
spec.require_paths = ['lib']
|
|
18
18
|
|
|
19
|
-
spec.required_ruby_version = Gem::Requirement.new('< 3.
|
|
19
|
+
spec.required_ruby_version = Gem::Requirement.new('< 3.5')
|
|
20
20
|
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
|
21
21
|
|
|
22
22
|
spec.add_dependency('capybara', ['>= 3', '< 4'])
|
|
@@ -112,12 +112,14 @@ module AePageObjects
|
|
|
112
112
|
private
|
|
113
113
|
|
|
114
114
|
def recognizer
|
|
115
|
-
@recognizer ||=
|
|
116
|
-
|
|
115
|
+
@recognizer ||= begin
|
|
116
|
+
case ::Rails.gem_version
|
|
117
|
+
when Gem::Requirement.new('>= 7.2', '< 8.2')
|
|
117
118
|
Recognizer::Rails6Plus.new
|
|
118
119
|
else
|
|
119
120
|
warn "[WARNING]: AePageObjects is not tested against Rails #{::Rails.version} and may behave in an undefined manner."
|
|
120
121
|
Recognizer::Rails6Plus.new
|
|
122
|
+
end
|
|
121
123
|
end
|
|
122
124
|
end
|
|
123
125
|
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
2
|
+
|
|
3
|
+
# Maintain your gem's version:
|
|
4
|
+
require "forum/version"
|
|
5
|
+
|
|
6
|
+
# Describe your gem and declare its dependencies:
|
|
7
|
+
Gem::Specification.new do |s|
|
|
8
|
+
s.name = "forum"
|
|
9
|
+
s.version = Forum::VERSION
|
|
10
|
+
s.authors = "Appfolio"
|
|
11
|
+
s.summary = "forum engine"
|
|
12
|
+
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
|
|
13
|
+
s.test_files = Dir["test/**/*"]
|
|
14
|
+
|
|
15
|
+
s.add_dependency "rails", "> 3"
|
|
16
|
+
s.add_development_dependency "sqlite3"
|
|
17
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
2
|
+
|
|
3
|
+
# Maintain your gem's version:
|
|
4
|
+
require "forum/version"
|
|
5
|
+
|
|
6
|
+
# Describe your gem and declare its dependencies:
|
|
7
|
+
Gem::Specification.new do |s|
|
|
8
|
+
s.name = "forum"
|
|
9
|
+
s.version = Forum::VERSION
|
|
10
|
+
s.authors = "Appfolio"
|
|
11
|
+
s.summary = "forum engine"
|
|
12
|
+
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
|
|
13
|
+
s.test_files = Dir["test/**/*"]
|
|
14
|
+
|
|
15
|
+
s.add_dependency "rails", "> 3"
|
|
16
|
+
s.add_development_dependency "sqlite3"
|
|
17
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
2
|
+
|
|
3
|
+
# Maintain your gem's version:
|
|
4
|
+
require "forum/version"
|
|
5
|
+
|
|
6
|
+
# Describe your gem and declare its dependencies:
|
|
7
|
+
Gem::Specification.new do |s|
|
|
8
|
+
s.name = "forum"
|
|
9
|
+
s.version = Forum::VERSION
|
|
10
|
+
s.authors = "Appfolio"
|
|
11
|
+
s.summary = "forum engine"
|
|
12
|
+
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
|
|
13
|
+
s.test_files = Dir["test/**/*"]
|
|
14
|
+
|
|
15
|
+
s.add_dependency "rails", "> 3"
|
|
16
|
+
s.add_development_dependency "sqlite3"
|
|
17
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ae_page_objects
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.
|
|
4
|
+
version: 6.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- AppFolio
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: capybara
|
|
@@ -36,6 +35,7 @@ executables: []
|
|
|
36
35
|
extensions: []
|
|
37
36
|
extra_rdoc_files: []
|
|
38
37
|
files:
|
|
38
|
+
- LICENSE.txt
|
|
39
39
|
- ae_page_objects.gemspec
|
|
40
40
|
- lib/ae_page_objects.rb
|
|
41
41
|
- lib/ae_page_objects/core/basic_router.rb
|
|
@@ -66,13 +66,15 @@ files:
|
|
|
66
66
|
- lib/ae_page_objects/util/internal_helpers.rb
|
|
67
67
|
- lib/ae_page_objects/util/wait_time_manager.rb
|
|
68
68
|
- lib/ae_page_objects/version.rb
|
|
69
|
+
- test/test_apps/7.2/engines/forum/forum.gemspec
|
|
70
|
+
- test/test_apps/8.0/engines/forum/forum.gemspec
|
|
71
|
+
- test/test_apps/8.1/engines/forum/forum.gemspec
|
|
69
72
|
- test/test_apps/shared/engines/forum/forum.gemspec
|
|
70
73
|
homepage: https://github.com/appfolio/ae_page_objects
|
|
71
74
|
licenses:
|
|
72
75
|
- MIT
|
|
73
76
|
metadata:
|
|
74
77
|
allowed_push_host: https://rubygems.org
|
|
75
|
-
post_install_message:
|
|
76
78
|
rdoc_options: []
|
|
77
79
|
require_paths:
|
|
78
80
|
- lib
|
|
@@ -80,15 +82,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
80
82
|
requirements:
|
|
81
83
|
- - "<"
|
|
82
84
|
- !ruby/object:Gem::Version
|
|
83
|
-
version: '3.
|
|
85
|
+
version: '3.5'
|
|
84
86
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
87
|
requirements:
|
|
86
88
|
- - ">="
|
|
87
89
|
- !ruby/object:Gem::Version
|
|
88
90
|
version: '0'
|
|
89
91
|
requirements: []
|
|
90
|
-
rubygems_version: 3.
|
|
91
|
-
signing_key:
|
|
92
|
+
rubygems_version: 3.7.2
|
|
92
93
|
specification_version: 4
|
|
93
94
|
summary: Capybara Page Objects pattern.
|
|
94
95
|
test_files: []
|