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 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.2.7'
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'
@@ -1,3 +1,6 @@
1
+ == 0.2.1
2
+ * Update to latest ripl
3
+
1
4
  == 0.2.0
2
5
  * Add -i option to autoinstall gems detected in input
3
6
 
@@ -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.shift.dup if ARGV[0]
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.2.7
1
+ ripl >=0.3.0
@@ -1,7 +1,7 @@
1
1
  require 'ripl'
2
2
 
3
3
  module Ripl::Play
4
- VERSION = '0.2.0'
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.send :include, Ripl::Play
86
+ Ripl::Shell.include Ripl::Play
87
87
  Ripl.config[:readline] = false
88
88
  Ripl.config[:play] = 'ripl_tape'
@@ -10,5 +10,5 @@ module Ripl::Record
10
10
  end
11
11
  end
12
12
 
13
- Ripl::Shell.send :include, Ripl::Record
13
+ Ripl::Shell.include Ripl::Record
14
14
  Ripl.config[:play] = 'ripl_tape'
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: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
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: 2010-12-04 00:00:00 -05:00
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: 25
29
+ hash: 19
30
30
  segments:
31
31
  - 0
32
- - 2
33
- - 7
34
- version: 0.2.7
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.