pry 0.9.8pre8-i386-mswin32 → 0.9.8.1-i386-mswin32

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/.travis.yml CHANGED
@@ -3,7 +3,8 @@ rvm:
3
3
  - 1.9.2
4
4
  - 1.9.3
5
5
  - ree
6
- - rbx-2.0
6
+ - rbx-18mode
7
+ - rbx-19mode
7
8
  - jruby
8
9
 
9
10
  notifications:
@@ -13,4 +14,4 @@ notifications:
13
14
 
14
15
  branches:
15
16
  only:
16
- - master
17
+ - master
data/CHANGELOG CHANGED
@@ -1,17 +1,31 @@
1
- X/X/2012 version 0.9.8
1
+ 30/1/2012 version 0.9.8.1 bugfix
2
+ * fixed broken --no-plugins option
3
+ * Ensure ARGV is not mutated during option parsing.
4
+ * Use a more rbx-friendly test for unicodeness
5
+ * Use rbx-{18,19}mode as indicated http://about.travis-ci.org/docs/user/languages/ruby/
6
+ * Don't explode in gem-list [Fixes #453, #454]
7
+ * Check for command-name collision on assignment [Fixes #450]
8
+
9
+ 25/1/2012 version 0.9.8
2
10
 
3
11
  MAJOR NEW FEATURES
4
12
  - upgraded command api, https://github.com/pry/pry/wiki/Custom-commands
5
13
  - added a system of hooks for customizing pry behaviour
6
14
  - changed syntax checking to use eval() for improved accuracy
7
-
15
+ - added save-file command
16
+ - added gist command (removed gist-method, new gist command is more general)
8
17
 
9
18
  complete CHANGELOG:
10
19
  * CommandError's no longer cause the current input to be disgarded
11
20
  * Better syntax highlighting for rbx code code
12
21
  * added cat --in to show pry input history
13
22
  * prefixed temporary file names with 'pry'
23
+ * show-doc now supports -l and -b options (line numbers)
24
+ * play now supports -i and -d options
25
+ * moved UserCommandAPI command-set to pry-developer_tools plugin
26
+ * added :when_started event for hooks, called in Pry.start
14
27
  * added a man page
28
+ * added rename method to Pry::CommandSet (commands can be renamed)
15
29
  * added CommandSet#{before_command,after_command} for enhancing builtin commands
16
30
  * added checking for namespace collisions with pry commands, set Pry.config.collision_warning
17
31
  * work around namespace collisions by ensuring lines starting with a space are executed as
@@ -32,7 +46,6 @@ complete CHANGELOG:
32
46
  * changed edit-command to no-longer need a command set argument
33
47
  * fixed empty lines so that they don't replace _ by nil
34
48
  * fixed SyntaxErrors at the REPL level so they don't replace _ex_.
35
- <TODO: everything that happened after f3262e32700709a6998579a9f71cdc6b8f4a695e>
36
49
 
37
50
  5/11/2011 version 0.9.7.4 hotfix
38
51
  * ls -M now works in modules (bugfix)
data/CONTRIBUTORS CHANGED
@@ -1,22 +1,29 @@
1
- 687 John Mair <jrmair@gmail.com>
2
- 82 Conrad Irwin <conrad.irwin@gmail.com>
3
- 76 Rob Gleeson <rob@flowof.info>
4
- 70 Ryan Fitzgerald <rwfitzge@gmail.com>
5
- 50 Lee Jarvis <lee@jarvis.co>
6
- 47 Mon ouïe <mon.ouie@gmail.com>
7
- 18 David Palm <dpalm@elctech.com>
8
- 13 epitron <chris@ill-logic.com>
9
- 8 Eero Saynatkari <projects@kittensoft.org>
10
- 6 Yorick Peterse <yorickpeterse@gmail.com>
11
- 3 Darrick Wiebe <darrick@innatesoftware.com>
12
- 2 robgleeson <rob@flowof.info>
13
- 2 Eric Christopherson <echristopherson@gmail.com>
14
- 2 Kelsey Judson <kelseyjudson@gmail.com>
15
- 2 Xavier Shay <xavier@rhnh.net>
16
- 1 Josh Cheek <josh.cheek@gmail.com>
17
- 1 Tim Pope <code@tpope.net>
18
- 1 Gosha Arinich <me@goshakkk.name>
19
- 1 Shawn Anderson <shawn42@gmail.com>
20
- 1 Jordan Running <jrunning@gmail.com>
21
- 1 fowlmouth <phowl.mouth@gmail.com>
22
- 1 Lars Haugseth <git@larshaugseth.com>
1
+ 804 John Mair
2
+ 168 Conrad Irwin
3
+ 129 Ryan Fitzgerald
4
+ 84 Rob Gleeson
5
+ 51 Lee Jarvis
6
+ 48 Mon ouïe
7
+ 18 David Palm
8
+ 13 epitron
9
+ 13 Jordon Bedwell
10
+ 9 Yorick Peterse
11
+ 8 Eero Saynatkari
12
+ 3 fowlmouth
13
+ 3 Darrick Wiebe
14
+ 2 Bram Swenson
15
+ 2 Eric Christopherson
16
+ 2 Erik Michaels-Ober
17
+ 2 Kelsey Judson
18
+ 2 Xavier Shay
19
+ 2 robgleeson
20
+ 1 Kirill Lashuk
21
+ 1 Josh Cheek
22
+ 1 Shawn Anderson
23
+ 1 Sherin C
24
+ 1 Tim Pope
25
+ 1 Gosha Arinich
26
+ 1 Jordan Running
27
+ 1 Jonathan Jackson
28
+ 1 Lars Haugseth
29
+ 1 Robert Gleeson
data/lib/pry/cli.rb CHANGED
@@ -52,7 +52,7 @@ class Pry
52
52
  self.option_processors = nil
53
53
  end
54
54
 
55
- def parse_options(args=ARGV)
55
+ def parse_options(args=ARGV.dup)
56
56
  raise NoOptionsError, "No command line options defined! Use Pry::CLI.add_options to add command line options." if !options
57
57
 
58
58
  opts = Slop.parse(args, :help => true, :multiple_switches => false, &options)
@@ -99,7 +99,7 @@ Copyright (c) 2011 John Mair (banisterfiend)
99
99
 
100
100
  on "no-plugins", "Suppress loading of plugins." do
101
101
  # suppress plugins if given --no-plugins optino
102
- Pry.config.plugins.enabled = false
102
+ Pry.config.should_load_plugins = false
103
103
  end
104
104
 
105
105
  on "installed-plugins", "List installed plugins." do
data/lib/pry/command.rb CHANGED
@@ -182,9 +182,13 @@ class Pry
182
182
  # the current scope.
183
183
  # @param [String] command_name_match The name of the colliding command.
184
184
  # @param [Binding] target The current binding context.
185
- def check_for_command_name_collision(command_name_match)
186
- if collision_type = target.eval("defined?(#{command_name_match})")
187
- output.puts "#{Pry::Helpers::Text.bold('WARNING:')} Command name collision with a #{collision_type}: '#{command_name_match}'\n\n"
185
+ def check_for_command_name_collision(command_name_match, arg_string)
186
+ collision_type = target.eval("defined?(#{command_name_match})")
187
+ collision_type ||= 'local-variable' if arg_string.match(%r{\A\s*[-+*/%&|^]*=})
188
+
189
+ if collision_type
190
+ output.puts "#{Pry::Helpers::Text.bold('WARNING:')} Calling Pry command '#{command_name_match}'," +
191
+ "which conflicts with a #{collision_type}.\n\n"
188
192
  end
189
193
  rescue Pry::RescuableException
190
194
  end
@@ -229,7 +233,7 @@ class Pry
229
233
  def process_line(line)
230
234
  command_name, arg_string, captures, args = tokenize(line)
231
235
 
232
- check_for_command_name_collision(command_name) if Pry.config.collision_warning
236
+ check_for_command_name_collision(command_name, arg_string) if Pry.config.collision_warning
233
237
 
234
238
  self.arg_string = arg_string
235
239
  self.captures = captures
data/lib/pry/config.rb CHANGED
@@ -129,7 +129,6 @@ class Pry
129
129
 
130
130
  # Config option for plugins:
131
131
  # sub-options include:
132
- # `plugins.enabled` (Boolean) to toggle the loading of plugins on and off wholesale. (defaults to true)
133
132
  # `plugins.strict_loading` (Boolean) which toggles whether referring to a non-existent plugin should raise an exception (defaults to `false`)
134
133
  # @return [OpenStruct]
135
134
  attr_accessor :plugins
@@ -59,6 +59,7 @@ class Pry
59
59
  BANNER
60
60
 
61
61
  def process(pattern=nil)
62
+ pattern = Regexp.compile(pattern || '')
62
63
  gems = if Gem::Specification.respond_to?(:each)
63
64
  Gem::Specification.select{|spec| spec.name =~ pattern }.group_by(&:name)
64
65
  else
@@ -17,13 +17,13 @@ class Pry
17
17
  end
18
18
 
19
19
  create_command(/amend-line(?: (-?\d+)(?:\.\.(-?\d+))?)?/) do
20
- description "Amend a line of input in multi-line mode. Type `amend-line --help` for more information. Aliases %"
20
+ description "Amend a line of input in multi-line mode. Type `amend-line --help` for more information."
21
21
  command_options :interpolate => false, :listing => "amend-line"
22
22
 
23
23
  banner <<-'BANNER'
24
24
  Amend a line of input in multi-line mode. `amend-line N`, where the N in `amend-line N` represents line to replace.
25
25
 
26
- Can also specify a range of lines using `amend-line N..M` syntax. Passing '!' as replacement content deletes the line(s) instead. Aliases: %N
26
+ Can also specify a range of lines using `amend-line N..M` syntax. Passing '!' as replacement content deletes the line(s) instead.
27
27
  e.g amend-line 1 puts 'hello world! # replace line 1'
28
28
  e.g amend-line 1..4 ! # delete lines 1..4
29
29
  e.g amend-line 3 >puts 'goodbye' # insert before line 3
@@ -57,8 +57,6 @@ class Pry
57
57
  end
58
58
  end
59
59
 
60
- alias_command(/%.?(-?\d+)?(?:\.\.(-?\d+))?/, "amend-line")
61
-
62
60
  create_command "play" do
63
61
  description "Play back a string variable or a method or a file as input. Type `play --help` for more information."
64
62
 
data/lib/pry/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Pry
2
- VERSION = "0.9.8pre8"
2
+ VERSION = "0.9.8.1"
3
3
  end
data/pry.gemspec CHANGED
@@ -1,21 +1,21 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.name = %q{pry}
5
- s.version = "0.9.8pre7"
4
+ s.name = "pry"
5
+ s.version = "0.9.8.1"
6
6
 
7
- s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
8
- s.authors = [%q{John Mair (banisterfiend)}]
9
- s.date = %q{2012-01-20}
10
- s.description = %q{An IRB alternative and runtime developer console}
11
- s.email = %q{jrmair@gmail.com}
12
- s.executables = [%q{pry}]
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/cli.rb}, %q{lib/pry/code.rb}, %q{lib/pry/command.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/helpers.rb}, %q{lib/pry/helpers/base_helpers.rb}, %q{lib/pry/helpers/command_helpers.rb}, %q{lib/pry/helpers/options_helpers.rb}, %q{lib/pry/helpers/text.rb}, %q{lib/pry/history.rb}, %q{lib/pry/history_array.rb}, %q{lib/pry/hooks.rb}, %q{lib/pry/indent.rb}, %q{lib/pry/method.rb}, %q{lib/pry/plugins.rb}, %q{lib/pry/pry_class.rb}, %q{lib/pry/pry_instance.rb}, %q{lib/pry/rbx_method.rb}, %q{lib/pry/rbx_path.rb}, %q{lib/pry/version.rb}, %q{lib/pry/wrapped_module.rb}, %q{man/pry.1}, %q{man/pry.1.html}, %q{man/pry.1.ronn}, %q{pry.gemspec}, %q{test/helper.rb}, %q{test/test_cli.rb}, %q{test/test_code.rb}, %q{test/test_command.rb}, %q{test/test_command_helpers.rb}, %q{test/test_command_integration.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_ls.rb}, %q{test/test_default_commands/test_shell.rb}, %q{test/test_exception_whitelist.rb}, %q{test/test_history_array.rb}, %q{test/test_hooks.rb}, %q{test/test_indent.rb}, %q{test/test_input_stack.rb}, %q{test/test_method.rb}, %q{test/test_pry.rb}, %q{test/test_pry_defaults.rb}, %q{test/test_pry_history.rb}, %q{test/test_pry_output.rb}, %q{test/test_special_locals.rb}, %q{test/test_syntax_checking.rb}, %q{test/test_wrapped_module.rb}, %q{test/testrc}, %q{test/testrcbad}, %q{wiki/Customizing-pry.md}, %q{wiki/Home.md}]
14
- s.homepage = %q{http://pry.github.com}
15
- s.require_paths = [%q{lib}]
16
- s.rubygems_version = %q{1.8.6}
17
- s.summary = %q{An IRB alternative and runtime developer console}
18
- s.test_files = [%q{test/helper.rb}, %q{test/test_cli.rb}, %q{test/test_code.rb}, %q{test/test_command.rb}, %q{test/test_command_helpers.rb}, %q{test/test_command_integration.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_ls.rb}, %q{test/test_default_commands/test_shell.rb}, %q{test/test_exception_whitelist.rb}, %q{test/test_history_array.rb}, %q{test/test_hooks.rb}, %q{test/test_indent.rb}, %q{test/test_input_stack.rb}, %q{test/test_method.rb}, %q{test/test_pry.rb}, %q{test/test_pry_defaults.rb}, %q{test/test_pry_history.rb}, %q{test/test_pry_output.rb}, %q{test/test_special_locals.rb}, %q{test/test_syntax_checking.rb}, %q{test/test_wrapped_module.rb}, %q{test/testrc}, %q{test/testrcbad}]
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["John Mair (banisterfiend)"]
9
+ s.date = "2012-01-30"
10
+ s.description = "An IRB alternative and runtime developer console"
11
+ s.email = "jrmair@gmail.com"
12
+ s.executables = ["pry"]
13
+ s.files = [".document", ".gemtest", ".gitignore", ".travis.yml", ".yardopts", "CHANGELOG", "CONTRIBUTORS", "Gemfile", "LICENSE", "README.markdown", "Rakefile", "TODO", "bin/pry", "examples/example_basic.rb", "examples/example_command_override.rb", "examples/example_commands.rb", "examples/example_hooks.rb", "examples/example_image_edit.rb", "examples/example_input.rb", "examples/example_input2.rb", "examples/example_output.rb", "examples/example_print.rb", "examples/example_prompt.rb", "examples/helper.rb", "lib/pry.rb", "lib/pry/cli.rb", "lib/pry/code.rb", "lib/pry/command.rb", "lib/pry/command_set.rb", "lib/pry/commands.rb", "lib/pry/completion.rb", "lib/pry/config.rb", "lib/pry/core_extensions.rb", "lib/pry/custom_completions.rb", "lib/pry/default_commands/basic.rb", "lib/pry/default_commands/context.rb", "lib/pry/default_commands/documentation.rb", "lib/pry/default_commands/easter_eggs.rb", "lib/pry/default_commands/gems.rb", "lib/pry/default_commands/input.rb", "lib/pry/default_commands/introspection.rb", "lib/pry/default_commands/ls.rb", "lib/pry/default_commands/shell.rb", "lib/pry/extended_commands/experimental.rb", "lib/pry/helpers.rb", "lib/pry/helpers/base_helpers.rb", "lib/pry/helpers/command_helpers.rb", "lib/pry/helpers/options_helpers.rb", "lib/pry/helpers/text.rb", "lib/pry/history.rb", "lib/pry/history_array.rb", "lib/pry/hooks.rb", "lib/pry/indent.rb", "lib/pry/method.rb", "lib/pry/plugins.rb", "lib/pry/pry_class.rb", "lib/pry/pry_instance.rb", "lib/pry/rbx_method.rb", "lib/pry/rbx_path.rb", "lib/pry/version.rb", "lib/pry/wrapped_module.rb", "man/pry.1", "man/pry.1.html", "man/pry.1.ronn", "pry.gemspec", "test/helper.rb", "test/test_cli.rb", "test/test_code.rb", "test/test_command.rb", "test/test_command_helpers.rb", "test/test_command_integration.rb", "test/test_command_set.rb", "test/test_completion.rb", "test/test_default_commands.rb", "test/test_default_commands/test_context.rb", "test/test_default_commands/test_documentation.rb", "test/test_default_commands/test_gems.rb", "test/test_default_commands/test_input.rb", "test/test_default_commands/test_introspection.rb", "test/test_default_commands/test_ls.rb", "test/test_default_commands/test_shell.rb", "test/test_exception_whitelist.rb", "test/test_history_array.rb", "test/test_hooks.rb", "test/test_indent.rb", "test/test_input_stack.rb", "test/test_method.rb", "test/test_pry.rb", "test/test_pry_defaults.rb", "test/test_pry_history.rb", "test/test_pry_output.rb", "test/test_special_locals.rb", "test/test_syntax_checking.rb", "test/test_wrapped_module.rb", "test/testrc", "test/testrcbad", "wiki/Customizing-pry.md", "wiki/Home.md"]
14
+ s.homepage = "http://pry.github.com"
15
+ s.require_paths = ["lib"]
16
+ s.rubygems_version = "1.8.15"
17
+ s.summary = "An IRB alternative and runtime developer console"
18
+ s.test_files = ["test/helper.rb", "test/test_cli.rb", "test/test_code.rb", "test/test_command.rb", "test/test_command_helpers.rb", "test/test_command_integration.rb", "test/test_command_set.rb", "test/test_completion.rb", "test/test_default_commands.rb", "test/test_default_commands/test_context.rb", "test/test_default_commands/test_documentation.rb", "test/test_default_commands/test_gems.rb", "test/test_default_commands/test_input.rb", "test/test_default_commands/test_introspection.rb", "test/test_default_commands/test_ls.rb", "test/test_default_commands/test_shell.rb", "test/test_exception_whitelist.rb", "test/test_history_array.rb", "test/test_hooks.rb", "test/test_indent.rb", "test/test_input_stack.rb", "test/test_method.rb", "test/test_pry.rb", "test/test_pry_defaults.rb", "test/test_pry_history.rb", "test/test_pry_output.rb", "test/test_special_locals.rb", "test/test_syntax_checking.rb", "test/test_wrapped_module.rb", "test/testrc", "test/testrcbad"]
19
19
 
20
20
  if s.respond_to? :specification_version then
21
21
  s.specification_version = 3
data/test/test_command.rb CHANGED
@@ -300,7 +300,23 @@ describe "Pry::Command" do
300
300
  output = StringIO.new
301
301
  cmd.new(:target => binding, :output => output).process_line %(frankie mouse)
302
302
 
303
- output.string.should =~ /Command name collision/
303
+ output.string.should =~ /command .* conflicts/
304
+
305
+ Pry.config.collision_warning = old
306
+ end
307
+
308
+ it 'should spot collision warnings on assignment if configured' do
309
+ old = Pry.config.collision_warning
310
+ Pry.config.collision_warning = true
311
+
312
+ cmd = @set.command 'frankie' do
313
+
314
+ end
315
+
316
+ output = StringIO.new
317
+ cmd.new(:target => binding, :output => output).process_line %(frankie = mouse)
318
+
319
+ output.string.should =~ /command .* conflicts/
304
320
 
305
321
  Pry.config.collision_warning = old
306
322
  end
@@ -7,7 +7,11 @@ describe "Pry::DefaultCommands::Gems" do
7
7
  it 'should not raise when invoked' do
8
8
  str_output = StringIO.new
9
9
  Pry.start self, :input => InputTester.new("gem-list", "exit-all"), :output => str_output
10
- str_output.string.should.not =~ /NoMethodError/
10
+ str_output.string.should.not =~ /Error/
11
+ end
12
+
13
+ it 'should not raise when invoked with an argument' do
14
+ mock_pry('gem-list pry').should.not =~ /Error/
11
15
  end
12
16
  end
13
17
  end
@@ -77,7 +77,7 @@ describe "Pry#input_stack" do
77
77
  end
78
78
 
79
79
  it "should be able to use unicode regexes on a UTF-8 terminal" do
80
- mock_pry('":-Þ" =~ /\p{Upper}/').should == %{=> 2\n\n}
80
+ mock_pry('":-Þ" =~ /þ/i').should == %{=> 2\n\n}
81
81
  end
82
82
  end
83
83
  end
metadata CHANGED
@@ -1,106 +1,103 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: pry
3
- version: !ruby/object:Gem::Version
4
- prerelease: 5
5
- version: 0.9.8pre8
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.9.8.1
5
+ prerelease:
6
6
  platform: i386-mswin32
7
- authors:
7
+ authors:
8
8
  - John Mair (banisterfiend)
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2012-01-25 00:00:00 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
12
+ date: 2012-01-30 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
16
15
  name: coderay
17
- prerelease: false
18
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &70340907137460 !ruby/object:Gem::Requirement
19
17
  none: false
20
- requirements:
18
+ requirements:
21
19
  - - ~>
22
- - !ruby/object:Gem::Version
20
+ - !ruby/object:Gem::Version
23
21
  version: 1.0.5
24
22
  type: :runtime
25
- version_requirements: *id001
26
- - !ruby/object:Gem::Dependency
27
- name: slop
28
23
  prerelease: false
29
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: *70340907137460
25
+ - !ruby/object:Gem::Dependency
26
+ name: slop
27
+ requirement: &70340907136640 !ruby/object:Gem::Requirement
30
28
  none: false
31
- requirements:
32
- - - ">="
33
- - !ruby/object:Gem::Version
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
34
32
  version: 2.4.3
35
33
  - - <
36
- - !ruby/object:Gem::Version
37
- version: "3"
34
+ - !ruby/object:Gem::Version
35
+ version: '3'
38
36
  type: :runtime
39
- version_requirements: *id002
40
- - !ruby/object:Gem::Dependency
41
- name: method_source
42
37
  prerelease: false
43
- requirement: &id003 !ruby/object:Gem::Requirement
38
+ version_requirements: *70340907136640
39
+ - !ruby/object:Gem::Dependency
40
+ name: method_source
41
+ requirement: &70340907135660 !ruby/object:Gem::Requirement
44
42
  none: false
45
- requirements:
43
+ requirements:
46
44
  - - ~>
47
- - !ruby/object:Gem::Version
48
- version: "0.7"
45
+ - !ruby/object:Gem::Version
46
+ version: '0.7'
49
47
  type: :runtime
50
- version_requirements: *id003
51
- - !ruby/object:Gem::Dependency
52
- name: bacon
53
48
  prerelease: false
54
- requirement: &id004 !ruby/object:Gem::Requirement
49
+ version_requirements: *70340907135660
50
+ - !ruby/object:Gem::Dependency
51
+ name: bacon
52
+ requirement: &70340907135140 !ruby/object:Gem::Requirement
55
53
  none: false
56
- requirements:
54
+ requirements:
57
55
  - - ~>
58
- - !ruby/object:Gem::Version
59
- version: "1.1"
56
+ - !ruby/object:Gem::Version
57
+ version: '1.1'
60
58
  type: :development
61
- version_requirements: *id004
62
- - !ruby/object:Gem::Dependency
63
- name: open4
64
59
  prerelease: false
65
- requirement: &id005 !ruby/object:Gem::Requirement
60
+ version_requirements: *70340907135140
61
+ - !ruby/object:Gem::Dependency
62
+ name: open4
63
+ requirement: &70340907134660 !ruby/object:Gem::Requirement
66
64
  none: false
67
- requirements:
65
+ requirements:
68
66
  - - ~>
69
- - !ruby/object:Gem::Version
70
- version: "1.3"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.3'
71
69
  type: :development
72
- version_requirements: *id005
73
- - !ruby/object:Gem::Dependency
74
- name: rake
75
70
  prerelease: false
76
- requirement: &id006 !ruby/object:Gem::Requirement
71
+ version_requirements: *70340907134660
72
+ - !ruby/object:Gem::Dependency
73
+ name: rake
74
+ requirement: &70340907134200 !ruby/object:Gem::Requirement
77
75
  none: false
78
- requirements:
76
+ requirements:
79
77
  - - ~>
80
- - !ruby/object:Gem::Version
81
- version: "0.9"
78
+ - !ruby/object:Gem::Version
79
+ version: '0.9'
82
80
  type: :development
83
- version_requirements: *id006
84
- - !ruby/object:Gem::Dependency
85
- name: win32console
86
81
  prerelease: false
87
- requirement: &id007 !ruby/object:Gem::Requirement
82
+ version_requirements: *70340907134200
83
+ - !ruby/object:Gem::Dependency
84
+ name: win32console
85
+ requirement: &70340907133740 !ruby/object:Gem::Requirement
88
86
  none: false
89
- requirements:
87
+ requirements:
90
88
  - - ~>
91
- - !ruby/object:Gem::Version
92
- version: "1.3"
89
+ - !ruby/object:Gem::Version
90
+ version: '1.3'
93
91
  type: :runtime
94
- version_requirements: *id007
92
+ prerelease: false
93
+ version_requirements: *70340907133740
95
94
  description: An IRB alternative and runtime developer console
96
95
  email: jrmair@gmail.com
97
- executables:
96
+ executables:
98
97
  - pry
99
98
  extensions: []
100
-
101
99
  extra_rdoc_files: []
102
-
103
- files:
100
+ files:
104
101
  - .document
105
102
  - .gemtest
106
103
  - .gitignore
@@ -201,32 +198,29 @@ files:
201
198
  - wiki/Home.md
202
199
  homepage: http://pry.github.com
203
200
  licenses: []
204
-
205
201
  post_install_message:
206
202
  rdoc_options: []
207
-
208
- require_paths:
203
+ require_paths:
209
204
  - lib
210
- required_ruby_version: !ruby/object:Gem::Requirement
205
+ required_ruby_version: !ruby/object:Gem::Requirement
211
206
  none: false
212
- requirements:
213
- - - ">="
214
- - !ruby/object:Gem::Version
215
- version: "0"
216
- required_rubygems_version: !ruby/object:Gem::Requirement
207
+ requirements:
208
+ - - ! '>='
209
+ - !ruby/object:Gem::Version
210
+ version: '0'
211
+ required_rubygems_version: !ruby/object:Gem::Requirement
217
212
  none: false
218
- requirements:
219
- - - ">"
220
- - !ruby/object:Gem::Version
221
- version: 1.3.1
213
+ requirements:
214
+ - - ! '>='
215
+ - !ruby/object:Gem::Version
216
+ version: '0'
222
217
  requirements: []
223
-
224
218
  rubyforge_project:
225
- rubygems_version: 1.8.11
219
+ rubygems_version: 1.8.15
226
220
  signing_key:
227
221
  specification_version: 3
228
222
  summary: An IRB alternative and runtime developer console
229
- test_files:
223
+ test_files:
230
224
  - test/helper.rb
231
225
  - test/test_cli.rb
232
226
  - test/test_code.rb