page_magic 1.0.2 → 1.0.3
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/README.md +2 -0
- data/VERSION +1 -1
- data/page_magic.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb68fa2e73c2629a5800b8e4296a92aa5e90fb41
|
|
4
|
+
data.tar.gz: 9e0312f1b7225336b463f53fe544886d4e8ca06d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 227bec2b17e0177e9266d0d1373cd732ea8854f6ad1b89860be1c7f92a12cd8f0800b23257981cc341c926ca56b3149392877acb28848ae1fc05a438e932889b
|
|
7
|
+
data.tar.gz: 2d90c159fbe881f6da97ceea6b2b5e84f464ef9f82788a6523b6b57c9c0397960f39cbf6046b4cf578343a80067062b0803367ea494570ccca6d39581770a756
|
data/README.md
CHANGED
|
@@ -42,6 +42,7 @@ Give it a try and let us know what you think! There will undoubtedly be things t
|
|
|
42
42
|
|
|
43
43
|
# Quick Start
|
|
44
44
|
Getting started with PageMagic is as easy, try running this:
|
|
45
|
+
|
|
45
46
|
```ruby
|
|
46
47
|
require 'page_magic'
|
|
47
48
|
|
|
@@ -61,6 +62,7 @@ end
|
|
|
61
62
|
google = Google.visit(browser: :chrome)
|
|
62
63
|
google.search('page_magic')
|
|
63
64
|
```
|
|
65
|
+
|
|
64
66
|
This example defines a simple page to represent Google's search page, visits it and performs a search.
|
|
65
67
|
|
|
66
68
|
This code models a single page and will let you [interact](#interacting-with-elements) with the [elements](#elements) defined on it as well as use the [helper method](Helpers) we defined.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.3
|
data/page_magic.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: page_magic 1.0.
|
|
5
|
+
# stub: page_magic 1.0.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "page_magic"
|
|
9
|
-
s.version = "1.0.
|
|
9
|
+
s.version = "1.0.3"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|