orb 0.1.4 → 0.1.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.
- data/README.md +4 -2
- data/lib/orb/version.rb +1 -1
- data/orb.gemspec +1 -1
- metadata +6 -7
- data/TODO +0 -3
data/README.md
CHANGED
|
@@ -33,9 +33,11 @@ rather than being deferred until later in the run. This lets you run
|
|
|
33
33
|
assertions at the REPL and get meaningful results. `nil` indicates
|
|
34
34
|
success; and error indicates and describes failure.
|
|
35
35
|
|
|
36
|
-
##
|
|
36
|
+
## TODO
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
* Screencast
|
|
39
|
+
* MiniTest/RSpec support
|
|
40
|
+
* Mocha/etc. integration -- assertions can't fire immediately.
|
|
39
41
|
|
|
40
42
|
## License
|
|
41
43
|
|
data/lib/orb/version.rb
CHANGED
data/orb.gemspec
CHANGED
|
@@ -16,6 +16,6 @@ Gem::Specification.new do |s|
|
|
|
16
16
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
17
17
|
s.require_paths = ["lib"]
|
|
18
18
|
|
|
19
|
-
s.add_runtime_dependency 'pry', '0.9.8.2'
|
|
19
|
+
s.add_runtime_dependency 'pry', '= 0.9.8.2'
|
|
20
20
|
s.add_runtime_dependency 'test-unit'
|
|
21
21
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: orb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-02-
|
|
12
|
+
date: 2012-02-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: pry
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &70235408431800 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - =
|
|
@@ -21,10 +21,10 @@ dependencies:
|
|
|
21
21
|
version: 0.9.8.2
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *70235408431800
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
26
|
name: test-unit
|
|
27
|
-
requirement: &
|
|
27
|
+
requirement: &70235408426060 !ruby/object:Gem::Requirement
|
|
28
28
|
none: false
|
|
29
29
|
requirements:
|
|
30
30
|
- - ! '>='
|
|
@@ -32,7 +32,7 @@ dependencies:
|
|
|
32
32
|
version: '0'
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
|
-
version_requirements: *
|
|
35
|
+
version_requirements: *70235408426060
|
|
36
36
|
description: REPL-driven testing for ruby -- integrates with pry and lets you build
|
|
37
37
|
tests incrementally in the REPL
|
|
38
38
|
email:
|
|
@@ -45,7 +45,6 @@ files:
|
|
|
45
45
|
- Gemfile
|
|
46
46
|
- README.md
|
|
47
47
|
- Rakefile
|
|
48
|
-
- TODO
|
|
49
48
|
- lib/orb.rb
|
|
50
49
|
- lib/orb/drivers/test-unit.rb
|
|
51
50
|
- lib/orb/pry_extensions.rb
|