acceptance_testing 0.1.1 → 0.1.2
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/.directory +6 -0
- data/.travis.yml +1 -1
- data/README.md +4 -32
- data/acceptance_testing-0.1.0.gem +0 -0
- data/acceptance_testing-0.1.1.gem +0 -0
- data/acceptance_testing.gemspec +10 -19
- data/lib/acceptance_testing.rb +0 -1
- data/lib/acceptance_testing/version.rb +1 -1
- metadata +16 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28b9499b9a44d30a2f70bccaa174cdf549a743ef
|
|
4
|
+
data.tar.gz: 49f7fee0c894d82149a4d1b1a0a5656c11047ff0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5f0ae4ae3347eebeccf2e3528943c93c0bd9edce5755e2fe6e983c4e631c0b7cc13a33134e1edaabe8c4a0845fe97aaf001b8ec87b35368fcc5a5012ba8ab9c
|
|
7
|
+
data.tar.gz: cffbcf0fa647bf3a837bedce9cd273c777ee581b85d41510977a8ed9805fc825bb2494b71070f61cb8aec044f1b51267692bf83915aeee59a93c38a530d30c0e
|
data/.directory
ADDED
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -1,41 +1,13 @@
|
|
|
1
1
|
# AcceptanceTesting
|
|
2
2
|
|
|
3
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/acceptance_testing`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
6
|
-
|
|
7
3
|
## Installation
|
|
8
4
|
|
|
9
|
-
|
|
5
|
+
To install, add this line to your `Gemfile` and run `bundle install`:
|
|
10
6
|
|
|
11
|
-
```
|
|
7
|
+
``` Ruby
|
|
12
8
|
gem 'acceptance_testing'
|
|
13
9
|
```
|
|
14
10
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
$ bundle
|
|
18
|
-
|
|
19
|
-
Or install it yourself as:
|
|
20
|
-
|
|
21
|
-
$ gem install acceptance_testing
|
|
22
|
-
|
|
23
|
-
## Usage
|
|
24
|
-
|
|
25
|
-
TODO: Write usage instructions here
|
|
26
|
-
|
|
27
|
-
## Development
|
|
28
|
-
|
|
29
|
-
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.
|
|
30
|
-
|
|
31
|
-
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).
|
|
32
|
-
|
|
33
|
-
## Contributing
|
|
34
|
-
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/Artem Mikhalev/acceptance_testing. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
## License
|
|
39
|
-
|
|
40
|
-
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
11
|
+
## Example of project settings
|
|
41
12
|
|
|
13
|
+
[Auto_testing_project](https://github.com/ArtemMikhalev89/Auto_testing_project)
|
|
Binary file
|
|
Binary file
|
data/acceptance_testing.gemspec
CHANGED
|
@@ -13,15 +13,6 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.homepage = 'https://github.com/ArtemMikhalev89/acceptance_testing'
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
|
-
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
17
|
-
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
18
|
-
# if spec.respond_to?(:metadata)
|
|
19
|
-
# spec.metadata['allowed_push_host'] = 'http://mygemserver.com'
|
|
20
|
-
# else
|
|
21
|
-
# raise "RubyGems 2.0 or newer is required to protect against " \
|
|
22
|
-
# "public gem pushes."
|
|
23
|
-
# end
|
|
24
|
-
|
|
25
16
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
26
17
|
f.match(%r{^(test|spec|features)/})
|
|
27
18
|
end
|
|
@@ -29,14 +20,14 @@ Gem::Specification.new do |spec|
|
|
|
29
20
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
30
21
|
spec.require_paths = ["lib"]
|
|
31
22
|
|
|
32
|
-
spec.
|
|
33
|
-
spec.
|
|
34
|
-
spec.
|
|
35
|
-
spec.
|
|
36
|
-
spec.
|
|
37
|
-
spec.
|
|
38
|
-
spec.
|
|
39
|
-
spec.
|
|
40
|
-
spec.
|
|
41
|
-
spec.
|
|
23
|
+
spec.add_runtime_dependency "bundler", "~> 1.14"
|
|
24
|
+
spec.add_runtime_dependency "rake", "~> 12.0.0"
|
|
25
|
+
spec.add_runtime_dependency "rspec", "~> 3.5.0"
|
|
26
|
+
spec.add_runtime_dependency "turnip", "~> 3.0.0.pre.beta.5"
|
|
27
|
+
spec.add_runtime_dependency "capybara", "~> 2.12.1"
|
|
28
|
+
spec.add_runtime_dependency "webdrivers", "~> 2.4"
|
|
29
|
+
spec.add_runtime_dependency "selenium-webdriver", "~> 3.2.2"
|
|
30
|
+
spec.add_runtime_dependency "site_prism", "~> 2.9"
|
|
31
|
+
spec.add_runtime_dependency "require_all", "~> 1.4.0"
|
|
32
|
+
spec.add_runtime_dependency "pry-byebug", "~> 3.4.0"
|
|
42
33
|
end
|
data/lib/acceptance_testing.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acceptance_testing
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Artem Mikhalev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-03-
|
|
11
|
+
date: 2017-03-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -17,7 +17,7 @@ dependencies:
|
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '1.14'
|
|
20
|
-
type: :
|
|
20
|
+
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
@@ -31,7 +31,7 @@ dependencies:
|
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: 12.0.0
|
|
34
|
-
type: :
|
|
34
|
+
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
@@ -45,7 +45,7 @@ dependencies:
|
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: 3.5.0
|
|
48
|
-
type: :
|
|
48
|
+
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
@@ -59,7 +59,7 @@ dependencies:
|
|
|
59
59
|
- - "~>"
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: 3.0.0.pre.beta.5
|
|
62
|
-
type: :
|
|
62
|
+
type: :runtime
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
@@ -73,7 +73,7 @@ dependencies:
|
|
|
73
73
|
- - "~>"
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
75
|
version: 2.12.1
|
|
76
|
-
type: :
|
|
76
|
+
type: :runtime
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
@@ -87,7 +87,7 @@ dependencies:
|
|
|
87
87
|
- - "~>"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
89
|
version: '2.4'
|
|
90
|
-
type: :
|
|
90
|
+
type: :runtime
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
@@ -101,7 +101,7 @@ dependencies:
|
|
|
101
101
|
- - "~>"
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
103
|
version: 3.2.2
|
|
104
|
-
type: :
|
|
104
|
+
type: :runtime
|
|
105
105
|
prerelease: false
|
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
107
|
requirements:
|
|
@@ -115,7 +115,7 @@ dependencies:
|
|
|
115
115
|
- - "~>"
|
|
116
116
|
- !ruby/object:Gem::Version
|
|
117
117
|
version: '2.9'
|
|
118
|
-
type: :
|
|
118
|
+
type: :runtime
|
|
119
119
|
prerelease: false
|
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
121
|
requirements:
|
|
@@ -129,7 +129,7 @@ dependencies:
|
|
|
129
129
|
- - "~>"
|
|
130
130
|
- !ruby/object:Gem::Version
|
|
131
131
|
version: 1.4.0
|
|
132
|
-
type: :
|
|
132
|
+
type: :runtime
|
|
133
133
|
prerelease: false
|
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
135
135
|
requirements:
|
|
@@ -143,7 +143,7 @@ dependencies:
|
|
|
143
143
|
- - "~>"
|
|
144
144
|
- !ruby/object:Gem::Version
|
|
145
145
|
version: 3.4.0
|
|
146
|
-
type: :
|
|
146
|
+
type: :runtime
|
|
147
147
|
prerelease: false
|
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
|
149
149
|
requirements:
|
|
@@ -157,6 +157,7 @@ executables: []
|
|
|
157
157
|
extensions: []
|
|
158
158
|
extra_rdoc_files: []
|
|
159
159
|
files:
|
|
160
|
+
- ".directory"
|
|
160
161
|
- ".gitignore"
|
|
161
162
|
- ".rspec"
|
|
162
163
|
- ".travis.yml"
|
|
@@ -165,6 +166,8 @@ files:
|
|
|
165
166
|
- LICENSE.txt
|
|
166
167
|
- README.md
|
|
167
168
|
- Rakefile
|
|
169
|
+
- acceptance_testing-0.1.0.gem
|
|
170
|
+
- acceptance_testing-0.1.1.gem
|
|
168
171
|
- acceptance_testing.gemspec
|
|
169
172
|
- bin/console
|
|
170
173
|
- bin/setup
|
|
@@ -190,7 +193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
190
193
|
version: '0'
|
|
191
194
|
requirements: []
|
|
192
195
|
rubyforge_project:
|
|
193
|
-
rubygems_version: 2.
|
|
196
|
+
rubygems_version: 2.6.8
|
|
194
197
|
signing_key:
|
|
195
198
|
specification_version: 4
|
|
196
199
|
summary: Acceptance testing
|