page_magic 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- 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: a91450be8cb413b43a99d69e44f488d450dbc110
|
4
|
+
data.tar.gz: f29c4819b1ea546448234b9b4289bb6b176e0829
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7786dabc62892b77b1c6d89e8db36ae8adbdeba79c11062f6df7aca65ebace69dd91615b21abaedc235c78431a38c113728b68cb0ac3877c1852eabe44cccba7
|
7
|
+
data.tar.gz: f89a7eba7766d74aa1e6b6f3d82f7471eb7b21bd995b9ccef3c137ea5bf82084a5d25632e286222d546035bdc1c35cac4956e296d1fa7b1c37c28516191d1313
|
data/README.md
CHANGED
@@ -5,6 +5,7 @@ PageMagic is an API for testing web applications.
|
|
5
5
|
It has a simple but powerful DSL which makes modelling and interacting with your pages easy.
|
6
6
|
|
7
7
|
Wouldn't it be great if there was a framework that could:
|
8
|
+
|
8
9
|
- [Model your pages](#defining-pages)
|
9
10
|
- [Fluently define event hooks / waiters on page elements](#hooks)
|
10
11
|
- [Map paths to pages so that the correct page object is loaded as you navigate](#page-mapping)
|
@@ -14,6 +15,7 @@ Well PageMagic might just be the answer!
|
|
14
15
|
|
15
16
|
Give it a try and let us know what you think! There will undoubtedly be things that can be improved and issues that we are not aware of so your feedback/pull requests are greatly appreciated!
|
16
17
|
# Contents
|
18
|
+
|
17
19
|
- [Installation](#installation)
|
18
20
|
- [Quick Start](#quick-start)
|
19
21
|
- [Defining Pages](#defining-pages)
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.4
|
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.4 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.4"
|
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"]
|