insite 0.1.2 → 0.1.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/lib/insite/version.rb +1 -1
- metadata +23 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13879616cc34d431a33d53db3af85542fdb2cd7c66c368312a3215bb07074a3a
|
4
|
+
data.tar.gz: 79332f41805f595642a174cd78ab31c32d175718ce2c666f503d79853c1c847b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2df8d7dea14cf1659fbab02a46c777fd8a49777ac46c650e4f0aa9dc6f7574e3d97f5cebd227618f5d09742e217ebd20e32990d8dbe0de70c2c84ed97c0cb9fe
|
7
|
+
data.tar.gz: 9fd6e73087a17e58764a976d81895b52fa9747b6d864a2104dee29d858f1c7f9a06b9cc3e3d33f772248790888a0d464ffda9a71b5af66a51a94169aff8b3969
|
data/lib/insite/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: insite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Fitisoff
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-09-
|
11
|
+
date: 2018-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -165,10 +165,16 @@ dependencies:
|
|
165
165
|
- !ruby/object:Gem::Version
|
166
166
|
version: 3.7.0
|
167
167
|
description: "Insite is a page object library that allows you to work with your website
|
168
|
-
in\
|
169
|
-
|
170
|
-
|
171
|
-
|
168
|
+
in\na more natural way. It does this by providing a wrapper class for all of your\npages.
|
169
|
+
This wrapper (called a site object) functions as a sort of browser for\nyour page
|
170
|
+
objects. Benefits of this approach include simplified navigation \nand better error
|
171
|
+
handling when things go wrong.\n\nInsite also provides a highly portable, object
|
172
|
+
oriented approach to modeling\nrecurring features in your web application (e.g.,
|
173
|
+
cards, calendars, search \nwidgets, etc.) Components that you write are essentially
|
174
|
+
DOM extensions:\nThey can be referenced from other components or any standard DOM
|
175
|
+
object.\nThis interoperability with the DOM makes your component features more\naccessible
|
176
|
+
when writing tests and almost completely eliminates the need to\nwrite code to wire
|
177
|
+
your components up to pages or to get them to work with\nother components."
|
172
178
|
email: jfitisoff@yahoo.com
|
173
179
|
executables: []
|
174
180
|
extensions: []
|
@@ -233,9 +239,15 @@ rubyforge_project:
|
|
233
239
|
rubygems_version: 2.7.6
|
234
240
|
signing_key:
|
235
241
|
specification_version: 4
|
236
|
-
summary: Insite is a page object library that allows you to work with your website
|
237
|
-
in
|
238
|
-
|
239
|
-
|
240
|
-
|
242
|
+
summary: 'Insite is a page object library that allows you to work with your website
|
243
|
+
in a more natural way. It does this by providing a wrapper class for all of your
|
244
|
+
pages. This wrapper (called a site object) functions as a sort of browser for your
|
245
|
+
page objects. Benefits of this approach include simplified navigation and better
|
246
|
+
error handling when things go wrong. Insite also provides a highly portable, object
|
247
|
+
oriented approach to modeling recurring features in your web application (e.g.,
|
248
|
+
cards, calendars, search widgets, etc.) Components that you write are essentially
|
249
|
+
DOM extensions: They can be referenced from other components or any standard DOM
|
250
|
+
object. This interoperability with the DOM makes your component features more accessible
|
251
|
+
when writing tests and almost completely eliminates the need to write code to wire
|
252
|
+
your components up to pages or to get them to work with other components.'
|
241
253
|
test_files: []
|