ruby_expect 1.7.1 → 1.7.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d69e96f0db84d1a8c74e6bd146bb659b5f45d786
4
- data.tar.gz: 1a3d0154c09b4948886628bfc832c145d8b05b3f
3
+ metadata.gz: 4163c3098691f05391bee6118cdb57a6980f91ed
4
+ data.tar.gz: 52943d346bc07812e1541b490d45bb25375a8989
5
5
  SHA512:
6
- metadata.gz: b0216cdaa2821ee2bc1e59893fb94b1b176562b1c28b9e2655aae502e400e37bd72a86211ef276cacd22578da4b4aa2f6bb6715c349491aaa43f26694b1c843b
7
- data.tar.gz: 6e0176f523f14ee9ca115a16f9f6434789b96659925982ea7ccf7a4de89ac3d16db1ac3e1debd928320021f7817ee344a56d12bf785fd03ac6a5c3990cd2339f
6
+ metadata.gz: eaf3c9847920c93d7ba71f306010d46019c014da62d8f2db93850eb6c3df9a1badbd3c307e8cc0a748419bad5dc913ed37d9233c2fbe2f9cfeeeeb8860fb23f8
7
+ data.tar.gz: bcffa8b6c9d797ef08f7840860b95a5cb131683a4677fe0627980d04ee810491262e2a342bded712b95531d0f163daa096a431a45d0121c34607f0e2935eb389
data/README.md CHANGED
@@ -5,8 +5,7 @@ Introduction
5
5
  ------------
6
6
 
7
7
  This is a simple expect API written in pure ruby. Part of this library includes a simple procedure DSL
8
- for creating sequences of expect/send behavior. For more information on the motivation and design of
9
- this gem, please see: http://www.andrewbates.co/ruby-expect/
8
+ for creating sequences of expect/send behavior.
10
9
 
11
10
  Examples
12
11
  --------
@@ -1,3 +1,3 @@
1
1
  module RubyExpect
2
- VERSION = "1.7.1"
2
+ VERSION = "1.7.2"
3
3
  end
data/ruby_expect.gemspec CHANGED
@@ -1,9 +1,12 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: ruby_expect 1.7.1 ruby lib
2
+ # stub: ruby_expect 1.7.2 ruby lib
3
+ lib = File.expand_path('../lib', __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require "ruby_expect"
3
6
 
4
7
  Gem::Specification.new do |s|
5
8
  s.name = "ruby_expect"
6
- s.version = "1.7.1"
9
+ s.version = RubyExpect::VERSION
7
10
 
8
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
9
12
  s.require_paths = ["lib"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_expect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.1
4
+ version: 1.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Bates