ripl-play 0.2.0 → 0.2.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.
- data/.gemspec +1 -1
- data/CHANGELOG.rdoc +3 -0
- data/bin/ripl-play +1 -1
- data/deps.rip +1 -1
- data/lib/ripl/play.rb +2 -2
- data/lib/ripl/record.rb +1 -1
- metadata +8 -8
data/.gemspec
CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
13
13
|
s.required_rubygems_version = ">= 1.3.6"
|
14
14
|
s.rubyforge_project = 'tagaholic'
|
15
15
|
s.executables = ['ripl-play', 'ripl-record']
|
16
|
-
s.add_dependency 'ripl', '>= 0.
|
16
|
+
s.add_dependency 'ripl', '>= 0.3.0'
|
17
17
|
s.files = Dir.glob(%w[{lib,test}/**/*.rb bin/* [A-Z]*.{txt,rdoc} ext/**/*.{rb,c} **/deps.rip]) + %w{Rakefile .gemspec}
|
18
18
|
s.extra_rdoc_files = ["README.rdoc", "LICENSE.txt"]
|
19
19
|
s.license = 'MIT'
|
data/CHANGELOG.rdoc
CHANGED
data/bin/ripl-play
CHANGED
@@ -9,6 +9,6 @@ if ARGV.delete('-h') || ARGV.delete('--help')
|
|
9
9
|
end
|
10
10
|
Ripl.config[:play_install] = ARGV.delete('-i') || ARGV.delete('--install')
|
11
11
|
Ripl.config[:play_quiet] = ARGV.delete('-q') || ARGV.delete('--quiet')
|
12
|
-
Ripl.config[:play] = ARGV.
|
12
|
+
Ripl.config[:play] = ARGV[0].dup if ARGV[0]
|
13
13
|
|
14
14
|
Ripl.start
|
data/deps.rip
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ripl >=0.
|
1
|
+
ripl >=0.3.0
|
data/lib/ripl/play.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'ripl'
|
2
2
|
|
3
3
|
module Ripl::Play
|
4
|
-
VERSION = '0.2.
|
4
|
+
VERSION = '0.2.1'
|
5
5
|
|
6
6
|
def before_loop
|
7
7
|
super
|
@@ -83,6 +83,6 @@ module Ripl::Play
|
|
83
83
|
end
|
84
84
|
end
|
85
85
|
|
86
|
-
Ripl::Shell.
|
86
|
+
Ripl::Shell.include Ripl::Play
|
87
87
|
Ripl.config[:readline] = false
|
88
88
|
Ripl.config[:play] = 'ripl_tape'
|
data/lib/ripl/record.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ripl-play
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 0.2.
|
9
|
+
- 1
|
10
|
+
version: 0.2.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Gabriel Horner
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2011-01-03 00:00:00 -05:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -26,12 +26,12 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
hash:
|
29
|
+
hash: 19
|
30
30
|
segments:
|
31
31
|
- 0
|
32
|
-
-
|
33
|
-
-
|
34
|
-
version: 0.
|
32
|
+
- 3
|
33
|
+
- 0
|
34
|
+
version: 0.3.0
|
35
35
|
type: :runtime
|
36
36
|
version_requirements: *id001
|
37
37
|
description: A ripl plugin to playback ruby code in ripl coming from files, urls or stdin. Also records a ripl session for playback later.
|