ripl-multi_line 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
data/.gemspec CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.summary = "A ripl plugin for multi-line eval."
12
12
  s.description = "This ripl plugin allows you to evaluate multiple lines of Ruby code."
13
13
  s.required_rubygems_version = ">= 1.3.6"
14
- s.add_dependency 'ripl', '>= 0.3.0'
14
+ s.add_dependency 'ripl', '>= 0.3.2'
15
15
  s.files = Dir.glob(%w[{lib,test}/**/*.rb bin/* [A-Z]*.{txt,rdoc} ext/**/*.{rb,c} **/deps.rip]) + %w{Rakefile .gemspec}
16
16
  s.extra_rdoc_files = ["README.rdoc", "LICENSE.txt"]
17
17
  s.license = 'MIT'
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.2.4
2
+ * fix 1.8 warning
3
+
1
4
  == 0.2.3
2
5
  * fix 0.2.2 bugs
3
6
  * allow procs as multi_line_prompt (and different default value)
@@ -2,14 +2,14 @@ require 'ripl'
2
2
 
3
3
  module Ripl
4
4
  module MultiLine
5
- VERSION = '0.2.3'
5
+ VERSION = '0.2.4'
6
6
  ERROR_REGEXP = /#{
7
7
  [ %q%unexpected \$end%,
8
8
  %q%unterminated [a-z]+ meets end of file%,
9
9
  # rubinius
10
10
  %q%expecting '\\n' or ';'%,
11
11
  %q%missing 'end'%,
12
- %q%expecting '}'%,
12
+ %q%expecting '\}'%,
13
13
  # jruby
14
14
  %q%syntax error, unexpected end-of-file%,
15
15
  ]*'|' }/
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: ripl-multi_line
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.2.3
5
+ version: 0.2.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jan Lelis
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-02-21 00:00:00 +01:00
13
+ date: 2011-03-10 00:00:00 +01:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -21,7 +21,7 @@ dependencies:
21
21
  requirements:
22
22
  - - ">="
23
23
  - !ruby/object:Gem::Version
24
- version: 0.3.0
24
+ version: 0.3.2
25
25
  type: :runtime
26
26
  version_requirements: *id001
27
27
  description: This ripl plugin allows you to evaluate multiple lines of Ruby code.