rwebspec 6.2.4 → 6.2.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8448813cdb6b4b131325c9d78335ec3df1fc89d0
4
- data.tar.gz: 653d4bfd18ff46a7814f72f9cf09358b27b87666
3
+ metadata.gz: 08c1095c5000f55fdf4a7be8c4a39f918b72e26f
4
+ data.tar.gz: 1a0ad704647727bdf21f26607b77bf7fd82e13ae
5
5
  SHA512:
6
- metadata.gz: 2d1ed94c0e52bf42010e27f9f85fc3df75d67034fb37fa0a858fcf3c5bd9732971d86ea193a5b235c7d4d66ed49927456d525ae3d0149e67fb1744904925ac5c
7
- data.tar.gz: ba66d656893eed4a0fb73b35bb1380e45fe5624ece0caf6e336b9329fcdbbcde3654172d26b49aec889c5bd889135e737678d2a03a973202a848f0c22defcb09
6
+ metadata.gz: 721795259a3fd6dc5f065e706b2d22bf7270371dbbd60c6f9ce73bdbbe1ffd7be584b6be49bf81ad473a7fdde166f845f0dbd22c22d41960bf1adacb9c302ade
7
+ data.tar.gz: b46c09f853f9d026fe2db77528ad2dd9b9296f2646a6551331a69f3fde2062582d83b986ea95c19c80805b720aaa38127b0478ca1630c6dd4af777cf2e2001b7
data/CHANGELOG CHANGED
@@ -1,6 +1,10 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ 6.2.5
5
+
6
+ [Enhancement] Remove stdout from rwebspec
7
+
4
8
  6.2.4
5
9
 
6
10
  [Fix] check debug server when is set to 0
data/Rakefile CHANGED
@@ -77,7 +77,7 @@ end
77
77
  spec = Gem::Specification.new do |s|
78
78
  s.platform= Gem::Platform::RUBY
79
79
  s.name = "rwebspec"
80
- s.version = "6.2.4"
80
+ s.version = "6.2.5"
81
81
  s.summary = "Web application functional specification in Ruby"
82
82
  s.description = "Executable functional specification for web applications in RSpec syntax with Watir or Selenium WebDriver"
83
83
 
@@ -78,7 +78,7 @@ module RWebSpec
78
78
  uri_base = "#{uri.scheme}://#{uri.host}:#{uri.port}"
79
79
  end
80
80
 
81
- puts "[DEBUG] Starting a new browser #{uri_base} with options: #{options.inspect}"
81
+ # puts "[DEBUG] Starting a new browser #{uri_base} with options: #{options.inspect}"
82
82
  if options[:start_new]
83
83
  # puts "[DEBUG] [SeleniumBrowser] creating a new browser"
84
84
  @web_browser = WebBrowser.new(uri_base, nil, options)
data/lib/rwebspec.rb CHANGED
@@ -81,7 +81,6 @@ module RWebSpec
81
81
  old_framework = @_framework
82
82
  @_framework = ActiveSupport::StringInquirer.new(framework)
83
83
  if (old_framework != @_framework) then
84
- puts "[INFO] Switching framework to #{@_framework}"
85
84
  load_framework
86
85
  end
87
86
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rwebspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.2.4
4
+ version: 6.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zhimin Zhan
8
8
  autorequire: rwebspec
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-12 00:00:00.000000000 Z
11
+ date: 2016-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -164,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
164
164
  requirements:
165
165
  - none
166
166
  rubyforge_project: rwebspec
167
- rubygems_version: 2.6.1
167
+ rubygems_version: 2.6.6
168
168
  signing_key:
169
169
  specification_version: 4
170
170
  summary: Web application functional specification in Ruby