gless 1.4.1 → 1.4.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.
- data/gless.gemspec +3 -2
- data/lib/gless.rb +1 -1
- metadata +6 -3
data/gless.gemspec
CHANGED
|
@@ -5,11 +5,12 @@ require "gless"
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = "gless"
|
|
7
7
|
s.version = Gless::VERSION
|
|
8
|
-
s.authors = ["Robin Lee Powell"]
|
|
9
|
-
s.email = ["rlpowell@digitalkingdom.org"]
|
|
8
|
+
s.authors = ["Robin Lee Powell", "Byron Johnson"]
|
|
9
|
+
s.email = ["rlpowell@digitalkingdom.org", "byron@byronjohnson.net"]
|
|
10
10
|
s.homepage = "http://github.com/rlpowell/gless"
|
|
11
11
|
s.summary = %q{A wrapper for Watir-WebDriver based on modelling web page and web site structure.}
|
|
12
12
|
s.description = %q{This gem attempts to provide a more robust model for web application testing, on top of Watir-WebDriver which already has significant improvements over just Selenium or WebDriver, based on describing pages and then interacting with the descriptions.}
|
|
13
|
+
s.license = 'MIT'
|
|
13
14
|
|
|
14
15
|
s.add_dependency 'rspec'
|
|
15
16
|
s.add_dependency 'watir-webdriver'
|
data/lib/gless.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gless
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Robin Lee Powell
|
|
9
|
+
- Byron Johnson
|
|
9
10
|
autorequire:
|
|
10
11
|
bindir: bin
|
|
11
12
|
cert_chain: []
|
|
12
|
-
date: 2013-09-
|
|
13
|
+
date: 2013-09-13 00:00:00.000000000 Z
|
|
13
14
|
dependencies:
|
|
14
15
|
- !ruby/object:Gem::Dependency
|
|
15
16
|
name: rspec
|
|
@@ -113,6 +114,7 @@ description: This gem attempts to provide a more robust model for web applicatio
|
|
|
113
114
|
the descriptions.
|
|
114
115
|
email:
|
|
115
116
|
- rlpowell@digitalkingdom.org
|
|
117
|
+
- byron@byronjohnson.net
|
|
116
118
|
executables: []
|
|
117
119
|
extensions: []
|
|
118
120
|
extra_rdoc_files: []
|
|
@@ -145,7 +147,8 @@ files:
|
|
|
145
147
|
- lib/gless/session.rb
|
|
146
148
|
- lib/gless/wrap_watir.rb
|
|
147
149
|
homepage: http://github.com/rlpowell/gless
|
|
148
|
-
licenses:
|
|
150
|
+
licenses:
|
|
151
|
+
- MIT
|
|
149
152
|
post_install_message:
|
|
150
153
|
rdoc_options: []
|
|
151
154
|
require_paths:
|