http_baseline 2.0.0 → 2.0.1

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: a1d502502a3e40a4e37ea2de44c208703d4c457a
4
- data.tar.gz: 0e1b7fc0fe7dbea7217d1921e94f0941b2282e32
3
+ metadata.gz: 9e110272122c4b0a96ac86f1d6ebe2344be92097
4
+ data.tar.gz: d51033be864d804fef47ee9299385aa340f5df98
5
5
  SHA512:
6
- metadata.gz: b9abdf2f661b21114e8a5c02c4c5978aadcb74df3ad919a5c6d072222270093e60c6d66c6ef03a4c31d1feb25126da561632e519b99e16334a88e073ab988e1e
7
- data.tar.gz: 2eafae1ccdd1e727e74cf00afd74ad24c44fbebc6d791e651b6ba64c3f551ed809c1a823d5540c688a67fafb0e4ab3a4c03eb84b44731965fd9c1dfbfd190567
6
+ metadata.gz: c4b485ef0b63a034aae18bfc8d979d87ffc1227da07d1a04a8ac2228bfeaa0d04cf75a07b14304d93e5ece8d1d24048df1b99d30cc46bb581764a4280f4d2ad3
7
+ data.tar.gz: 26a274d465732f1fe220bc1a967455881923532b6ba4571cc9672f0717d0b5637cbe0cf59db4cce933529d5028f47c6b1b8ae7f2114cb0f6b331041c5603aa22
data/README.md CHANGED
@@ -6,7 +6,7 @@ TODO: Write a gem description
6
6
 
7
7
  Add this line to your application's Gemfile:
8
8
 
9
- gem 'http'
9
+ gem 'http_baseline'
10
10
 
11
11
  And then execute:
12
12
 
@@ -14,7 +14,7 @@ And then execute:
14
14
 
15
15
  Or install it yourself as:
16
16
 
17
- $ gem install http
17
+ $ gem install http_baseline
18
18
 
19
19
  ## Usage in terms of Cucumber
20
20
 
@@ -6,7 +6,7 @@ module HttpBaseline
6
6
  config.comm.http.ssl = Evf::Support::Options.new
7
7
  config.comm.http.ssl.enabled = 'no'
8
8
 
9
- invocation 'init.http.config', :before => :load_context_config, group => :all do |env|
9
+ invocation 'init.http.config', :before => :load_context_config, :group => :all do |env|
10
10
  HttpBaseline.config = env.config
11
11
  HttpBaseline.logger = env.config.logger
12
12
  HttpBaseline.broadcaster = env.broadcaster
@@ -1,7 +1,7 @@
1
1
  module HttpBaseline
2
2
  module Version
3
- MAJOR, MINOR, PATCH = 2, 0, 0
4
- STRING = [MAJOR, MINOR, PATCH].join('.')
3
+ MAJOR, MINOR, PATCH, PRE = 2, 0, 1
4
+ STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.')
5
5
  end
6
6
 
7
7
  VERSION = Version::STRING
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http_baseline
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roman Lishtaba