Skip to content

Commit

Permalink
updating gem description. there are some spec failures but it seems l…
Browse files Browse the repository at this point in the history
…ike a problem with watir collections. posted a comment in slack as it looks like there are some possibly related issues and this may just be another manifestation of those
  • Loading branch information
jfitisoff committed Nov 25, 2018
1 parent 6962eea commit e5433f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 14 deletions.
18 changes: 5 additions & 13 deletions insite.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,11 @@ require './lib/insite/version'

Gem::Specification.new do |s|
summary = [
"Insite is a page object library that allows you to work with your website in",
"a more natural way. It does this by providing a wrapper class for all of your",
"pages. This wrapper (called a site object) functions as a sort of browser for",
"your page objects. Benefits of this approach include simplified navigation ",
"and better error handling when things go wrong.\n",
"Insite also provides a highly portable, object oriented approach to modeling",
"recurring features in your web application (e.g., cards, calendars, search ",
"widgets, etc.) Components that you write are essentially DOM extensions:",
"They can be referenced from other components or any standard DOM object.",
"This interoperability with the DOM makes your component features more",
"accessible when writing tests and almost completely eliminates the need to",
"write code to wire your components up to pages or to get them to work with",
"other components."
"Page object library with an emphasis on simplified navigation and reusable code.",
"It has features geared towards supporting web components (www.webcomponents.org)",
"or any recurring feature in your application. UI automation components that you",
"define are extensions of the DOM and are fully interopable with standard DOM",
"elements and other components."
].join("\n")

s.name = 'insite'
Expand Down
2 changes: 1 addition & 1 deletion lib/insite/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Insite
VERSION = '0.2.4'
VERSION = '0.2.5'
end

0 comments on commit e5433f5

Please sign in to comment.