test-factory 0.3.4 → 0.3.5
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 +8 -8
- data/lib/test-factory/collections_factory.rb +4 -0
- data/lib/test-factory/string_factory.rb +1 -1
- data/test-factory.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MDkzYzgxNGM0YWViZjA4Y2ZmYTc2NGI0ZmU0MjQyYzhhNzkwYWQ4Zg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZDFiNTJjNTRlMmEzYzljZDJjYWRlNjU5YjUzYzkyNGFlMDA0ZDJhNQ==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MDBkZWMwYjY0YzBlMDZiMjAwMWZiMDE3MjQwYTg0ODUzM2Y0MjNhOWViZTlm
|
|
10
|
+
ODkwMzI2MTExZWY2MzlmNGU2NzZlZDZmODM2OGNiYzI0Y2FmNWIxMmM0ZTdj
|
|
11
|
+
ZGZmZGUyMjg1YTA4ODU1ZWI0NDYxZjNjOGMxM2VmOWM1MzJiMzg=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NWE4NDMyN2Q2YWI5Y2VlYWU5ZGFmNzQ3MTYwNjhlNjhmZWYzNjY3ODJjMDAy
|
|
14
|
+
ZTYzYTdmNjhiOWY2ZGZmZTEzNjMwM2M3ZDA4OWJlMGFlMmQzNjI2ZWQ5M2Ri
|
|
15
|
+
Y2IwNWRhYzU0Y2YxYTY4OTAwZTJmY2MxNmJkMGUyMjI5ZjI4MDY=
|
|
@@ -154,7 +154,7 @@ module StringFactory
|
|
|
154
154
|
# damballa("A String of Fun Stuff (for you)") => :a_string_of_fun_stuff_for_you
|
|
155
155
|
#
|
|
156
156
|
def self.damballa(text)
|
|
157
|
-
text.gsub(/([
|
|
157
|
+
text.gsub(/([+=|\\\.,~@#'"\?`!\{\}\[\]\$%\^&\*\(\)])/, "").
|
|
158
158
|
gsub(/([-\/\ ])/,"_").
|
|
159
159
|
downcase.
|
|
160
160
|
to_sym
|
data/test-factory.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
spec = Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'test-factory'
|
|
3
|
-
s.version = '0.3.
|
|
3
|
+
s.version = '0.3.5'
|
|
4
4
|
s.summary = %q{rSmart's framework for creating automated testing scripts}
|
|
5
5
|
s.description = %q{This gem provides a set of modules and methods to help quickly and DRYly create a test automation framework using Ruby and Watir (or watir-webdriver).}
|
|
6
6
|
s.files = Dir.glob("**/**/**")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: test-factory
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Abraham Heward
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-10-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: watir-webdriver
|