ruby_expect 1.7.1 → 1.7.2
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 +4 -4
- data/README.md +1 -2
- data/lib/ruby_expect/version.rb +1 -1
- data/ruby_expect.gemspec +5 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4163c3098691f05391bee6118cdb57a6980f91ed
|
|
4
|
+
data.tar.gz: 52943d346bc07812e1541b490d45bb25375a8989
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
--------
|
data/lib/ruby_expect/version.rb
CHANGED
data/ruby_expect.gemspec
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: ruby_expect 1.7.
|
|
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 =
|
|
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"]
|