page_magic 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +6 -3
- data/README.md +2 -2
- data/VERSION +1 -1
- data/page_magic.gemspec +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d60246721a5c12200d50850da023c0c0baba852f
|
4
|
+
data.tar.gz: f130471a70f308b33d0e0495daf03ac7eee41393
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a02f4e1c4fab88c1892547f57549c42a2542f2fa4f505e162746670918a999fc20fbfd06c92692a78d56a9e219e80ecb58eb14ee1632e1366e14cef45827aaad
|
7
|
+
data.tar.gz: 7549756b08f6c79bf276786bb09ff12f02696385c83149aa7e03e177070c192a6bb1f6ff82581e2e758b552cd17e06c7850ce08b4a4438c563d3735e0b3d162d
|
data/Gemfile.lock
CHANGED
@@ -68,14 +68,14 @@ GEM
|
|
68
68
|
mime-types (3.0)
|
69
69
|
mime-types-data (~> 3.2015)
|
70
70
|
mime-types-data (3.2015.1120)
|
71
|
-
|
71
|
+
mini_portile2 (2.0.0)
|
72
72
|
minitest (5.8.3)
|
73
73
|
multi_json (1.11.2)
|
74
74
|
multi_test (0.1.2)
|
75
75
|
multi_xml (0.5.5)
|
76
76
|
multipart-post (2.0.0)
|
77
|
-
nokogiri (1.6.
|
78
|
-
|
77
|
+
nokogiri (1.6.7.1)
|
78
|
+
mini_portile2 (~> 2.0.0.rc2)
|
79
79
|
oauth2 (1.0.0)
|
80
80
|
faraday (>= 0.8, < 0.10)
|
81
81
|
jwt (~> 1.0)
|
@@ -173,3 +173,6 @@ DEPENDENCIES
|
|
173
173
|
sinatra
|
174
174
|
watir-webdriver
|
175
175
|
yard (~> 0.8)
|
176
|
+
|
177
|
+
BUNDLED WITH
|
178
|
+
1.11.2
|
data/README.md
CHANGED
@@ -74,7 +74,7 @@ class Github
|
|
74
74
|
search_field.set "#{project_name}\n"
|
75
75
|
end
|
76
76
|
end
|
77
|
-
github = Github.visit(browser: chrome)
|
77
|
+
github = Github.visit(browser: :chrome)
|
78
78
|
github.search('page_magic')
|
79
79
|
```
|
80
80
|
|
@@ -115,7 +115,7 @@ After visiting a page you are will get a `Session` object. Elements can be acces
|
|
115
115
|
page.search_field.set 'page_magic'
|
116
116
|
```
|
117
117
|
|
118
|
-
####
|
118
|
+
#### Multiple Results
|
119
119
|
Where an element has been scoped to return multple results, these will be returned in an array.
|
120
120
|
```ruby
|
121
121
|
class ResultsPage
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.2.
|
1
|
+
1.2.1
|
data/page_magic.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
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.2.
|
5
|
+
# stub: page_magic 1.2.1 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "page_magic"
|
9
|
-
s.version = "1.2.
|
9
|
+
s.version = "1.2.1"
|
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"]
|
13
13
|
s.authors = ["Leon Davis"]
|
14
|
-
s.date = "
|
14
|
+
s.date = "2016-01-15"
|
15
15
|
s.description = "Framework for modeling and interacting with webpages which wraps capybara"
|
16
16
|
s.email = "info@lad-tech.com"
|
17
17
|
s.extra_rdoc_files = [
|
@@ -86,7 +86,7 @@ Gem::Specification.new do |s|
|
|
86
86
|
s.homepage = "https://github.com/ladtech/page_magic"
|
87
87
|
s.licenses = ["ruby"]
|
88
88
|
s.required_ruby_version = Gem::Requirement.new(">= 2.1")
|
89
|
-
s.rubygems_version = "2.4.
|
89
|
+
s.rubygems_version = "2.4.6"
|
90
90
|
s.summary = "Framework for modeling and interacting with webpages"
|
91
91
|
|
92
92
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: page_magic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Leon Davis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capybara
|
@@ -199,7 +199,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
199
199
|
version: '0'
|
200
200
|
requirements: []
|
201
201
|
rubyforge_project:
|
202
|
-
rubygems_version: 2.4.
|
202
|
+
rubygems_version: 2.4.6
|
203
203
|
signing_key:
|
204
204
|
specification_version: 4
|
205
205
|
summary: Framework for modeling and interacting with webpages
|