insite 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/insite/version.rb +1 -1
  3. metadata +23 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4da6a0c60f82d3ad461cbdc4bbfc42e6e0208931036e163cc25449dd68bb9e75
4
- data.tar.gz: e2c2d2e684de2dd576e33333e098e64a0f85bcd5640a49ab3baec85a12a53649
3
+ metadata.gz: 13879616cc34d431a33d53db3af85542fdb2cd7c66c368312a3215bb07074a3a
4
+ data.tar.gz: 79332f41805f595642a174cd78ab31c32d175718ce2c666f503d79853c1c847b
5
5
  SHA512:
6
- metadata.gz: '081c49de90abf6786fb8ae7f9d0d060e9495d2031ef9689d3fbcfec806f410b8bde274568164a57760a946e39f61c4b305776c412826f2c235fa967de9db61f3'
7
- data.tar.gz: 7d76291c5bab8c5854484ec0c0407b60da715d0d99dc04e12933567fcd4c3faf82dbc99d6f9789dc365c0ad97260933c6656bee9d8f986c3a9a386c85c410014
6
+ metadata.gz: 2df8d7dea14cf1659fbab02a46c777fd8a49777ac46c650e4f0aa9dc6f7574e3d97f5cebd227618f5d09742e217ebd20e32990d8dbe0de70c2c84ed97c0cb9fe
7
+ data.tar.gz: 9fd6e73087a17e58764a976d81895b52fa9747b6d864a2104dee29d858f1c7f9a06b9cc3e3d33f772248790888a0d464ffda9a71b5af66a51a94169aff8b3969
@@ -1,3 +1,3 @@
1
1
  module Insite
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
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.2
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-05 00:00:00.000000000 Z
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\nmuch the same way that a user does. It also provides a highly portable, \nobject
169
- oriented approach to modeling recurring features in your application\n(e.g., cards,
170
- calendars. search widgets.) Reusable components that you write\nfor UI testing are
171
- fully compatible with standard DOM elements."
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 much the same way that a user does. It also provides a highly portable, object
238
- oriented approach to modeling recurring features in your application (e.g., cards,
239
- calendars. search widgets.) Reusable components that you write for UI testing are
240
- fully compatible with standard DOM elements.
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: []