pry 0.9.6-java → 0.9.6.2-java

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml ADDED
@@ -0,0 +1,16 @@
1
+ rvm:
2
+ - 1.8.7
3
+ - 1.9.2
4
+ - 1.9.3
5
+ - ree
6
+ - rbx-2.0
7
+ - jruby
8
+
9
+ notifications:
10
+ irc: "irc.freenode.org#pry"
11
+ recipients:
12
+ - jrmair@gmail.com
13
+
14
+ branches:
15
+ only:
16
+ - master
data/CHANGELOG CHANGED
@@ -1,3 +1,8 @@
1
+ 27/9/2011 version 0.9.6.2 HOTFIX release
2
+ * downgrading to CodeRay 0.9.8 due to problems with 1.0 and rails (autoloading problem) see #280 on pry and #6 on CodeRay
3
+ * also added (as a minor feature) cirwin's implementation of edit --in
4
+ * added early break/exit for objectpath errors (the 'cd 34/@hello/bad_path/23')
5
+
1
6
  19/9/2011 version 0.9.6
2
7
  * restored previous behavior of command-line switches (allowing "-rfilename")
3
8
  * removed -p option (--play) from edit command
data/README.markdown CHANGED
@@ -1,7 +1,8 @@
1
+ [![Build Status](https://secure.travis-ci.org/pry/pry.png)](http://travis-ci.org/pry/pry)
1
2
  <center>
2
3
  ![Alt text](http://dl.dropbox.com/u/26521875/pry_logo_350.png)
3
4
 
4
- (C) John Mair (banisterfiend) 2011
5
+ (C) John Mair (banisterfiend) 2011<br>
5
6
 
6
7
 
7
8
  **Please** [DONATE](http://www.pledgie.com/campaigns/15899) to the Pry project - Pry was a **huge** amount of work and every donation received is encouraging and supports Pry's continued development!
data/Rakefile CHANGED
@@ -1,5 +1,6 @@
1
1
  require 'rake/clean'
2
- require 'rake/gempackagetask'
2
+ require "rubygems"
3
+ require "rubygems/package_task"
3
4
 
4
5
  $:.unshift 'lib'
5
6
  require 'pry/version'
@@ -20,14 +21,18 @@ def apply_spec_defaults(s)
20
21
  s.executables = ["pry"]
21
22
  s.files = `git ls-files`.split("\n")
22
23
  s.test_files = `git ls-files -- test/*`.split("\n")
23
- s.add_dependency("ruby_parser",">=2.0.5")
24
- s.add_dependency("coderay",">=0.9.8")
24
+ s.add_dependency("ruby_parser","~>2.0.5")
25
+ s.add_dependency("coderay","~>0.9.8")
25
26
  s.add_dependency("slop","~>2.1.0")
26
- s.add_dependency("method_source",">=0.6.5")
27
- s.add_development_dependency("bacon",">=1.1.0")
27
+ s.add_dependency("method_source","~>0.6.5")
28
+ s.add_development_dependency("bacon","~>1.1.0")
28
29
  s.add_development_dependency("open4", "~>1.0.1")
30
+ s.add_development_dependency("rake", "~>0.9")
29
31
  end
30
32
 
33
+ desc "Set up and run tests"
34
+ task :default => [:test]
35
+
31
36
  desc "Run tests"
32
37
  task :test do
33
38
  sh "bacon -Itest -rubygems -a -q"
@@ -49,7 +54,7 @@ namespace :ruby do
49
54
  s.platform = Gem::Platform::RUBY
50
55
  end
51
56
 
52
- Rake::GemPackageTask.new(spec) do |pkg|
57
+ Gem::PackageTask.new(spec) do |pkg|
53
58
  pkg.need_zip = false
54
59
  pkg.need_tar = false
55
60
  end
@@ -65,11 +70,11 @@ end
65
70
  namespace :jruby do
66
71
  spec = Gem::Specification.new do |s|
67
72
  apply_spec_defaults(s)
68
- s.add_dependency("spoon", ">=0.0.1")
73
+ s.add_dependency("spoon", "~>0.0.1")
69
74
  s.platform = "java"
70
75
  end
71
76
 
72
- Rake::GemPackageTask.new(spec) do |pkg|
77
+ Gem::PackageTask.new(spec) do |pkg|
73
78
  pkg.need_zip = false
74
79
  pkg.need_tar = false
75
80
  end
@@ -80,11 +85,11 @@ end
80
85
  namespace v do
81
86
  spec = Gem::Specification.new do |s|
82
87
  apply_spec_defaults(s)
83
- s.add_dependency("win32console", ">=1.3.0")
88
+ s.add_dependency("win32console", "~>1.3.0")
84
89
  s.platform = "i386-#{v}"
85
90
  end
86
91
 
87
- Rake::GemPackageTask.new(spec) do |pkg|
92
+ Gem::PackageTask.new(spec) do |pkg|
88
93
  pkg.need_zip = false
89
94
  pkg.need_tar = false
90
95
  end
@@ -37,6 +37,7 @@ class Pry
37
37
  rescue RescuableException
38
38
  output.puts "Bad object path: #{arg_string}. Failed trying to resolve: #{context}"
39
39
  resolve_failure = true
40
+ break
40
41
  end
41
42
  end
42
43
 
@@ -115,13 +115,14 @@ class Pry
115
115
  command "edit", "Invoke the default editor on a file. Type `edit --help` for more info" do |*args|
116
116
  opts = Slop.parse!(args) do |opt|
117
117
  opt.banner unindent <<-USAGE
118
- Usage: edit [--no-reload|--reload] [--line LINE] [--temp|--ex|FILE[:LINE]]
118
+ Usage: edit [--no-reload|--reload] [--line LINE] [--temp|--ex|FILE[:LINE]|--in N]
119
119
  Open a text editor. When no FILE is given, edits the pry input buffer.
120
120
  Ensure #{text.bold("Pry.config.editor")} is set to your editor of choice.
121
121
  e.g: edit sample.rb
122
122
  USAGE
123
123
 
124
124
  opt.on :e, :ex, "Open the file that raised the most recent exception (_ex_.file)", :optional => true, :as => Integer
125
+ opt.on :i, :in, "Open a temporary file containing the Nth line of _in_. N may be a range.", :optional => true, :as => Range, :default => -1..-1
125
126
  opt.on :t, :temp, "Open an empty temporary file"
126
127
  opt.on :l, :line, "Jump to this line in the opened file", true, :as => Integer
127
128
  opt.on :n, :"no-reload", "Don't automatically reload the edited code"
@@ -132,8 +133,8 @@ class Pry
132
133
  end
133
134
  next if opts.h?
134
135
 
135
- if [opts.ex? || nil, opts.t? || nil, !args.empty? || nil].compact.size > 1
136
- next output.puts "Only one of --ex, --temp, and FILE may be specified"
136
+ if [opts.ex?, opts.t?, opts.in?, !args.empty?].count(true) > 1
137
+ next output.puts "Only one of --ex, --temp, --in and FILE may be specified"
137
138
  end
138
139
 
139
140
  # edit of local code, eval'd within pry.
@@ -141,6 +142,15 @@ class Pry
141
142
 
142
143
  content = if opts.t?
143
144
  ""
145
+ elsif opts.i?
146
+ case opts[:i]
147
+ when Range
148
+ (_pry_.input_array[opts[:i]] || []).join
149
+ when Fixnum
150
+ _pry_.input_array[opts[:i]] || ""
151
+ else
152
+ next output.puts "Not a valid range: #{opts[:i]}"
153
+ end
144
154
  elsif eval_string.strip != ""
145
155
  eval_string
146
156
  else
data/lib/pry/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Pry
2
- VERSION = "0.9.6"
2
+ VERSION = "0.9.6.2"
3
3
  end
data/pry.gemspec CHANGED
@@ -2,15 +2,15 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{pry}
5
- s.version = "0.9.6"
5
+ s.version = "0.9.6.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = [%q{John Mair (banisterfiend)}]
9
- s.date = %q{2011-09-19}
9
+ s.date = %q{2011-09-27}
10
10
  s.description = %q{An IRB alternative and runtime developer console}
11
11
  s.email = %q{jrmair@gmail.com}
12
12
  s.executables = [%q{pry}]
13
- s.files = [%q{.document}, %q{.gemtest}, %q{.gitignore}, %q{.yardopts}, %q{CHANGELOG}, %q{CONTRIBUTORS}, %q{Gemfile}, %q{LICENSE}, %q{README.markdown}, %q{Rakefile}, %q{TODO}, %q{bin/pry}, %q{examples/example_basic.rb}, %q{examples/example_command_override.rb}, %q{examples/example_commands.rb}, %q{examples/example_hooks.rb}, %q{examples/example_image_edit.rb}, %q{examples/example_input.rb}, %q{examples/example_input2.rb}, %q{examples/example_output.rb}, %q{examples/example_print.rb}, %q{examples/example_prompt.rb}, %q{examples/helper.rb}, %q{lib/pry.rb}, %q{lib/pry/command_context.rb}, %q{lib/pry/command_processor.rb}, %q{lib/pry/command_set.rb}, %q{lib/pry/commands.rb}, %q{lib/pry/completion.rb}, %q{lib/pry/config.rb}, %q{lib/pry/core_extensions.rb}, %q{lib/pry/custom_completions.rb}, %q{lib/pry/default_commands/basic.rb}, %q{lib/pry/default_commands/context.rb}, %q{lib/pry/default_commands/documentation.rb}, %q{lib/pry/default_commands/easter_eggs.rb}, %q{lib/pry/default_commands/gems.rb}, %q{lib/pry/default_commands/input.rb}, %q{lib/pry/default_commands/introspection.rb}, %q{lib/pry/default_commands/ls.rb}, %q{lib/pry/default_commands/shell.rb}, %q{lib/pry/extended_commands/experimental.rb}, %q{lib/pry/extended_commands/user_command_api.rb}, %q{lib/pry/helpers.rb}, %q{lib/pry/helpers/base_helpers.rb}, %q{lib/pry/helpers/command_helpers.rb}, %q{lib/pry/helpers/text.rb}, %q{lib/pry/history.rb}, %q{lib/pry/history_array.rb}, %q{lib/pry/plugins.rb}, %q{lib/pry/pry_class.rb}, %q{lib/pry/pry_instance.rb}, %q{lib/pry/version.rb}, %q{pry.gemspec}, %q{test/helper.rb}, %q{test/test_command_helpers.rb}, %q{test/test_command_processor.rb}, %q{test/test_command_set.rb}, %q{test/test_completion.rb}, %q{test/test_default_commands.rb}, %q{test/test_default_commands/test_context.rb}, %q{test/test_default_commands/test_documentation.rb}, %q{test/test_default_commands/test_gems.rb}, %q{test/test_default_commands/test_input.rb}, %q{test/test_default_commands/test_introspection.rb}, %q{test/test_default_commands/test_shell.rb}, %q{test/test_exception_whitelist.rb}, %q{test/test_history_array.rb}, %q{test/test_input_stack.rb}, %q{test/test_pry.rb}, %q{test/test_pry_history.rb}, %q{test/test_pry_output.rb}, %q{test/test_special_locals.rb}, %q{test/testrc}, %q{wiki/Customizing-pry.md}, %q{wiki/Home.md}]
13
+ s.files = [%q{.document}, %q{.gemtest}, %q{.gitignore}, %q{.travis.yml}, %q{.yardopts}, %q{CHANGELOG}, %q{CONTRIBUTORS}, %q{Gemfile}, %q{LICENSE}, %q{README.markdown}, %q{Rakefile}, %q{TODO}, %q{bin/pry}, %q{examples/example_basic.rb}, %q{examples/example_command_override.rb}, %q{examples/example_commands.rb}, %q{examples/example_hooks.rb}, %q{examples/example_image_edit.rb}, %q{examples/example_input.rb}, %q{examples/example_input2.rb}, %q{examples/example_output.rb}, %q{examples/example_print.rb}, %q{examples/example_prompt.rb}, %q{examples/helper.rb}, %q{lib/pry.rb}, %q{lib/pry/command_context.rb}, %q{lib/pry/command_processor.rb}, %q{lib/pry/command_set.rb}, %q{lib/pry/commands.rb}, %q{lib/pry/completion.rb}, %q{lib/pry/config.rb}, %q{lib/pry/core_extensions.rb}, %q{lib/pry/custom_completions.rb}, %q{lib/pry/default_commands/basic.rb}, %q{lib/pry/default_commands/context.rb}, %q{lib/pry/default_commands/documentation.rb}, %q{lib/pry/default_commands/easter_eggs.rb}, %q{lib/pry/default_commands/gems.rb}, %q{lib/pry/default_commands/input.rb}, %q{lib/pry/default_commands/introspection.rb}, %q{lib/pry/default_commands/ls.rb}, %q{lib/pry/default_commands/shell.rb}, %q{lib/pry/extended_commands/experimental.rb}, %q{lib/pry/extended_commands/user_command_api.rb}, %q{lib/pry/helpers.rb}, %q{lib/pry/helpers/base_helpers.rb}, %q{lib/pry/helpers/command_helpers.rb}, %q{lib/pry/helpers/text.rb}, %q{lib/pry/history.rb}, %q{lib/pry/history_array.rb}, %q{lib/pry/plugins.rb}, %q{lib/pry/pry_class.rb}, %q{lib/pry/pry_instance.rb}, %q{lib/pry/version.rb}, %q{pry.gemspec}, %q{test/helper.rb}, %q{test/test_command_helpers.rb}, %q{test/test_command_processor.rb}, %q{test/test_command_set.rb}, %q{test/test_completion.rb}, %q{test/test_default_commands.rb}, %q{test/test_default_commands/test_context.rb}, %q{test/test_default_commands/test_documentation.rb}, %q{test/test_default_commands/test_gems.rb}, %q{test/test_default_commands/test_input.rb}, %q{test/test_default_commands/test_introspection.rb}, %q{test/test_default_commands/test_shell.rb}, %q{test/test_exception_whitelist.rb}, %q{test/test_history_array.rb}, %q{test/test_input_stack.rb}, %q{test/test_pry.rb}, %q{test/test_pry_history.rb}, %q{test/test_pry_output.rb}, %q{test/test_special_locals.rb}, %q{test/testrc}, %q{wiki/Customizing-pry.md}, %q{wiki/Home.md}]
14
14
  s.homepage = %q{http://pry.github.com}
15
15
  s.require_paths = [%q{lib}]
16
16
  s.rubygems_version = %q{1.8.6}
@@ -21,26 +21,29 @@ Gem::Specification.new do |s|
21
21
  s.specification_version = 3
22
22
 
23
23
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
24
- s.add_runtime_dependency(%q<ruby_parser>, [">= 2.0.5"])
25
- s.add_runtime_dependency(%q<coderay>, [">= 0.9.8"])
24
+ s.add_runtime_dependency(%q<ruby_parser>, ["~> 2.0.5"])
25
+ s.add_runtime_dependency(%q<coderay>, ["~> 0.9.8"])
26
26
  s.add_runtime_dependency(%q<slop>, ["~> 2.1.0"])
27
- s.add_runtime_dependency(%q<method_source>, [">= 0.6.5"])
28
- s.add_development_dependency(%q<bacon>, [">= 1.1.0"])
27
+ s.add_runtime_dependency(%q<method_source>, ["~> 0.6.5"])
28
+ s.add_development_dependency(%q<bacon>, ["~> 1.1.0"])
29
29
  s.add_development_dependency(%q<open4>, ["~> 1.0.1"])
30
+ s.add_development_dependency(%q<rake>, ["~> 0.9"])
30
31
  else
31
- s.add_dependency(%q<ruby_parser>, [">= 2.0.5"])
32
- s.add_dependency(%q<coderay>, [">= 0.9.8"])
32
+ s.add_dependency(%q<ruby_parser>, ["~> 2.0.5"])
33
+ s.add_dependency(%q<coderay>, ["~> 0.9.8"])
33
34
  s.add_dependency(%q<slop>, ["~> 2.1.0"])
34
- s.add_dependency(%q<method_source>, [">= 0.6.5"])
35
- s.add_dependency(%q<bacon>, [">= 1.1.0"])
35
+ s.add_dependency(%q<method_source>, ["~> 0.6.5"])
36
+ s.add_dependency(%q<bacon>, ["~> 1.1.0"])
36
37
  s.add_dependency(%q<open4>, ["~> 1.0.1"])
38
+ s.add_dependency(%q<rake>, ["~> 0.9"])
37
39
  end
38
40
  else
39
- s.add_dependency(%q<ruby_parser>, [">= 2.0.5"])
40
- s.add_dependency(%q<coderay>, [">= 0.9.8"])
41
+ s.add_dependency(%q<ruby_parser>, ["~> 2.0.5"])
42
+ s.add_dependency(%q<coderay>, ["~> 0.9.8"])
41
43
  s.add_dependency(%q<slop>, ["~> 2.1.0"])
42
- s.add_dependency(%q<method_source>, [">= 0.6.5"])
43
- s.add_dependency(%q<bacon>, [">= 1.1.0"])
44
+ s.add_dependency(%q<method_source>, ["~> 0.6.5"])
45
+ s.add_dependency(%q<bacon>, ["~> 1.1.0"])
44
46
  s.add_dependency(%q<open4>, ["~> 1.0.1"])
47
+ s.add_dependency(%q<rake>, ["~> 0.9"])
45
48
  end
46
49
  end
data/test/helper.rb CHANGED
@@ -24,6 +24,7 @@ class << Pry
24
24
  Pry.config.plugins.enabled = false
25
25
  Pry.config.history.should_load = false
26
26
  Pry.config.history.should_save = false
27
+ Pry.config.hooks = { }
27
28
  end
28
29
  end
29
30
 
@@ -212,6 +212,36 @@ describe "Pry::DefaultCommands::Introspection" do
212
212
  mock_pry("edit -n").should.not =~ /FOO/
213
213
  end
214
214
  end
215
+
216
+ describe "with --in" do
217
+ it "should edit the nth line of _in_" do
218
+ mock_pry("10", "11", "edit --in -2")
219
+ @contents.should == "10\n"
220
+ end
221
+
222
+ it "should edit the last line if no argument is given" do
223
+ mock_pry("10", "11", "edit --in")
224
+ @contents.should == "11\n"
225
+ end
226
+
227
+ it "should edit a range of lines if a range is given" do
228
+ mock_pry("10", "11", "edit -i 1,2")
229
+ @contents.should == "10\n11\n"
230
+ end
231
+
232
+ it "should edit a multi-line expression as it occupies one line of _in_" do
233
+ mock_pry("class Fixnum", " def invert; -self; end", "end", "edit -i 1")
234
+ @contents.should == "class Fixnum\n def invert; -self; end\nend\n"
235
+ end
236
+
237
+ it "should not work with a filename" do
238
+ mock_pry("edit ruby.rb -i").should =~ /Only one of --ex, --temp, --in and FILE may be specified/
239
+ end
240
+
241
+ it "should not work with nonsense" do
242
+ mock_pry("edit --in three").should =~ /Not a valid range: three/
243
+ end
244
+ end
215
245
  end
216
246
 
217
247
  describe "show-method" do
data/test/test_pry.rb CHANGED
@@ -2,15 +2,15 @@ require 'helper'
2
2
 
3
3
  describe Pry do
4
4
 
5
- if RUBY_PLATFORM !~ /mingw/ && RUBY_PLATFORM !~ /mswin/ && RUBY_PLATFORM != 'java'
6
- describe 'warning emissions' do
7
- it 'should emit no warnings' do
8
- Open4.popen4 'ruby -I lib -rubygems -r"pry" -W -e "exit"' do |pid, stdin, stdout, stderr|
9
- stderr.read.empty?.should == true
10
- end
11
- end
12
- end
13
- end
5
+ # if RUBY_PLATFORM !~ /mingw/ && RUBY_PLATFORM !~ /mswin/ && RUBY_PLATFORM != 'java'
6
+ # describe 'warning emissions' do
7
+ # it 'should emit no warnings' do
8
+ # Open4.popen4 'ruby -I lib -rubygems -r"pry" -W -e "exit"' do |pid, stdin, stdout, stderr|
9
+ # stderr.read.empty?.should == true
10
+ # end
11
+ # end
12
+ # end
13
+ # end
14
14
 
15
15
  if RUBY_VERSION =~ /1.9/
16
16
  describe "Exotic object support" do
@@ -1,3 +1,4 @@
1
+ require 'helper'
1
2
 
2
3
  describe Pry do
3
4
  describe "output failsafe" do
@@ -34,7 +35,7 @@ describe Pry do
34
35
  end
35
36
 
36
37
  it "should not be phased by un-inspectable things" do
37
- mock_pry("class NastyClass; undef pretty_inspect; end", "NastyClass.new").should =~ /#<NastyClass:0x[0-9a-f]+>/
38
+ mock_pry("class NastyClass; undef pretty_inspect; end", "NastyClass.new").should =~ /#<NastyClass:0x.*?>/
38
39
  end
39
40
  end
40
41
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pry
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.6
4
+ version: 0.9.6.2
5
5
  prerelease:
6
6
  platform: java
7
7
  authors:
@@ -9,33 +9,33 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-09-19 00:00:00.000000000 Z
12
+ date: 2011-09-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ruby_parser
16
- requirement: &70165026964420 !ruby/object:Gem::Requirement
16
+ requirement: &70249512913620 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
- - - ! '>='
19
+ - - ~>
20
20
  - !ruby/object:Gem::Version
21
21
  version: 2.0.5
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70165026964420
24
+ version_requirements: *70249512913620
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: coderay
27
- requirement: &70165026961800 !ruby/object:Gem::Requirement
27
+ requirement: &70249512912320 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
- - - ! '>='
30
+ - - ~>
31
31
  - !ruby/object:Gem::Version
32
32
  version: 0.9.8
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70165026961800
35
+ version_requirements: *70249512912320
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: slop
38
- requirement: &70165026957860 !ruby/object:Gem::Requirement
38
+ requirement: &70249509217380 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ~>
@@ -43,32 +43,32 @@ dependencies:
43
43
  version: 2.1.0
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *70165026957860
46
+ version_requirements: *70249509217380
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: method_source
49
- requirement: &70165026956400 !ruby/object:Gem::Requirement
49
+ requirement: &70249509215340 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
- - - ! '>='
52
+ - - ~>
53
53
  - !ruby/object:Gem::Version
54
54
  version: 0.6.5
55
55
  type: :runtime
56
56
  prerelease: false
57
- version_requirements: *70165026956400
57
+ version_requirements: *70249509215340
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: bacon
60
- requirement: &70165026955560 !ruby/object:Gem::Requirement
60
+ requirement: &70249509214560 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
- - - ! '>='
63
+ - - ~>
64
64
  - !ruby/object:Gem::Version
65
65
  version: 1.1.0
66
66
  type: :development
67
67
  prerelease: false
68
- version_requirements: *70165026955560
68
+ version_requirements: *70249509214560
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: open4
71
- requirement: &70165026955040 !ruby/object:Gem::Requirement
71
+ requirement: &70249509213480 !ruby/object:Gem::Requirement
72
72
  none: false
73
73
  requirements:
74
74
  - - ~>
@@ -76,18 +76,29 @@ dependencies:
76
76
  version: 1.0.1
77
77
  type: :development
78
78
  prerelease: false
79
- version_requirements: *70165026955040
79
+ version_requirements: *70249509213480
80
+ - !ruby/object:Gem::Dependency
81
+ name: rake
82
+ requirement: &70249509211340 !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
85
+ - - ~>
86
+ - !ruby/object:Gem::Version
87
+ version: '0.9'
88
+ type: :development
89
+ prerelease: false
90
+ version_requirements: *70249509211340
80
91
  - !ruby/object:Gem::Dependency
81
92
  name: spoon
82
- requirement: &70165026954200 !ruby/object:Gem::Requirement
93
+ requirement: &70249509202020 !ruby/object:Gem::Requirement
83
94
  none: false
84
95
  requirements:
85
- - - ! '>='
96
+ - - ~>
86
97
  - !ruby/object:Gem::Version
87
98
  version: 0.0.1
88
99
  type: :runtime
89
100
  prerelease: false
90
- version_requirements: *70165026954200
101
+ version_requirements: *70249509202020
91
102
  description: An IRB alternative and runtime developer console
92
103
  email: jrmair@gmail.com
93
104
  executables:
@@ -98,6 +109,7 @@ files:
98
109
  - .document
99
110
  - .gemtest
100
111
  - .gitignore
112
+ - .travis.yml
101
113
  - .yardopts
102
114
  - CHANGELOG
103
115
  - CONTRIBUTORS