pry 0.9.9-i386-mingw32 → 0.9.9.1-i386-mingw32

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,5 +1,8 @@
1
- 18/4/2012 version 0.9.9
1
+ 18/4/2012 version 0.9.9.1 very minor release
2
+ * cleared up confusion in show-source/show-doc docs that -a switch applies to classes
3
+ as well as modules
2
4
 
5
+ 18/4/2012 version 0.9.9
3
6
  MAJOR NEW FEATURES
4
7
  * lines of input are syntax highlighted upon 'enter' keypress
5
8
  * show-source command can now show class/module sourcecode (use -a to see all monkeypatches). Hard dependency on ruby18_source_location gem in MRI 1.8
@@ -8,6 +11,7 @@ MAJOR NEW FEATURES
8
11
  * pry-coolline now works properly with Pry (https://github.com/pry/pry-coolline)
9
12
  * alias_command method now much more powerful, e.g: alias_command "lM", "ls -M"
10
13
  * `whereami` is now more intelligent, automatically showing entire sourcecode of current method if current context is a method (thanks robgleeson).
14
+ * new `raise-up` command. Allows you to raise an exception that will bubble out of pry (ending the session) and escape into enclosing program.
11
15
 
12
16
  remaining items:
13
17
  * fixed windows crashing bug when paging
@@ -1,16 +1,19 @@
1
- 804 John Mair
2
- 168 Conrad Irwin
3
- 129 Ryan Fitzgerald
4
- 84 Rob Gleeson
1
+ 887 John Mair
2
+ 232 Conrad Irwin
3
+ 132 Ryan Fitzgerald
4
+ 89 Rob Gleeson
5
5
  51 Lee Jarvis
6
- 48 Mon ouïe
6
+ 49 Mon ouïe
7
+ 39 Jordon Bedwell
7
8
  18 David Palm
8
9
  13 epitron
9
- 13 Jordon Bedwell
10
+ 10 Matt Carey
10
11
  9 Yorick Peterse
11
12
  8 Eero Saynatkari
12
- 3 fowlmouth
13
13
  3 Darrick Wiebe
14
+ 3 fowlmouth
15
+ 3 misfo
16
+ 2 Ben Langfeld
14
17
  2 Bram Swenson
15
18
  2 Eric Christopherson
16
19
  2 Erik Michaels-Ober
@@ -18,12 +21,16 @@
18
21
  2 Xavier Shay
19
22
  2 robgleeson
20
23
  1 Kirill Lashuk
21
- 1 Josh Cheek
24
+ 1 Reginald Tan
25
+ 1 Jordan Running
26
+ 1 Robert Gleeson
27
+ 1 Jonathan Soeder
22
28
  1 Shawn Anderson
23
29
  1 Sherin C
24
30
  1 Tim Pope
25
- 1 Gosha Arinich
26
- 1 Jordan Running
31
+ 1 Gerbert Olivé
27
32
  1 Jonathan Jackson
33
+ 1 Joe Peduto
34
+ 1 Gosha Arinich
28
35
  1 Lars Haugseth
29
- 1 Robert Gleeson
36
+ 1 Josh Cheek
@@ -68,7 +68,7 @@ class Pry
68
68
  opt.on :l, "line-numbers", "Show line numbers."
69
69
  opt.on :b, "base-one", "Show line numbers but start numbering at 1 (useful for `amend-line` and `play` commands)."
70
70
  opt.on :f, :flood, "Do not use a pager to view text longer than one screen."
71
- opt.on :a, :all, "Show docs for all definitions and monkeypatches of the module (modules only)"
71
+ opt.on :a, :all, "Show docs for all definitions and monkeypatches of the module/class"
72
72
  end
73
73
 
74
74
  def process_module
@@ -221,7 +221,7 @@ class Pry
221
221
  opt.on :l, "line-numbers", "Show line numbers."
222
222
  opt.on :b, "base-one", "Show line numbers but start numbering at 1 (useful for `amend-line` and `play` commands)."
223
223
  opt.on :f, :flood, "Do not use a pager to view text longer than one screen."
224
- opt.on :a, :all, "Show source for all definitions and monkeypatches of the module (modules only)"
224
+ opt.on :a, :all, "Show source for all definitions and monkeypatches of the module/class"
225
225
  end
226
226
 
227
227
  def process_method
@@ -1,3 +1,3 @@
1
1
  class Pry
2
- VERSION = "0.9.9"
2
+ VERSION = "0.9.9.1"
3
3
  end
@@ -1,21 +1,21 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.name = "pry"
5
- s.version = "0.9.9"
4
+ s.name = %q{pry}
5
+ s.version = "0.9.9.1"
6
6
 
7
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-04-18"
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/cd.rb", "lib/pry/default_commands/commands.rb", "lib/pry/default_commands/context.rb", "lib/pry/default_commands/easter_eggs.rb", "lib/pry/default_commands/editing.rb", "lib/pry/default_commands/find_method.rb", "lib/pry/default_commands/gems.rb", "lib/pry/default_commands/help.rb", "lib/pry/default_commands/hist.rb", "lib/pry/default_commands/input_and_output.rb", "lib/pry/default_commands/introspection.rb", "lib/pry/default_commands/ls.rb", "lib/pry/default_commands/misc.rb", "lib/pry/default_commands/navigating_pry.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/documentation_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/test_cd.rb", "test/test_default_commands/test_context.rb", "test/test_default_commands/test_documentation.rb", "test/test_default_commands/test_find_method.rb", "test/test_default_commands/test_gems.rb", "test/test_default_commands/test_help.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_default_commands/test_show_source.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_sticky_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.12"
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/test_cd.rb", "test/test_default_commands/test_context.rb", "test/test_default_commands/test_documentation.rb", "test/test_default_commands/test_find_method.rb", "test/test_default_commands/test_gems.rb", "test/test_default_commands/test_help.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_default_commands/test_show_source.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_sticky_locals.rb", "test/test_syntax_checking.rb", "test/test_wrapped_module.rb", "test/testrc", "test/testrcbad"]
8
+ s.authors = [%q{John Mair (banisterfiend)}]
9
+ s.date = %q{2012-04-19}
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/cd.rb}, %q{lib/pry/default_commands/commands.rb}, %q{lib/pry/default_commands/context.rb}, %q{lib/pry/default_commands/easter_eggs.rb}, %q{lib/pry/default_commands/editing.rb}, %q{lib/pry/default_commands/find_method.rb}, %q{lib/pry/default_commands/gems.rb}, %q{lib/pry/default_commands/help.rb}, %q{lib/pry/default_commands/hist.rb}, %q{lib/pry/default_commands/input_and_output.rb}, %q{lib/pry/default_commands/introspection.rb}, %q{lib/pry/default_commands/ls.rb}, %q{lib/pry/default_commands/misc.rb}, %q{lib/pry/default_commands/navigating_pry.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/documentation_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/test_cd.rb}, %q{test/test_default_commands/test_context.rb}, %q{test/test_default_commands/test_documentation.rb}, %q{test/test_default_commands/test_find_method.rb}, %q{test/test_default_commands/test_gems.rb}, %q{test/test_default_commands/test_help.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_default_commands/test_show_source.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_sticky_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/test_cd.rb}, %q{test/test_default_commands/test_context.rb}, %q{test/test_default_commands/test_documentation.rb}, %q{test/test_default_commands/test_find_method.rb}, %q{test/test_default_commands/test_gems.rb}, %q{test/test_default_commands/test_help.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_default_commands/test_show_source.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_sticky_locals.rb}, %q{test/test_syntax_checking.rb}, %q{test/test_wrapped_module.rb}, %q{test/testrc}, %q{test/testrcbad}]
19
19
 
20
20
  if s.respond_to? :specification_version then
21
21
  s.specification_version = 3
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.9
4
+ version: 0.9.9.1
5
5
  prerelease:
6
6
  platform: i386-mingw32
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-04-18 00:00:00.000000000 Z
12
+ date: 2012-04-19 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: coderay
16
- requirement: &70238792647200 !ruby/object:Gem::Requirement
16
+ requirement: &70233286285960 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 1.0.5
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70238792647200
24
+ version_requirements: *70233286285960
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: slop
27
- requirement: &70238792646500 !ruby/object:Gem::Requirement
27
+ requirement: &70233286285260 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -35,10 +35,10 @@ dependencies:
35
35
  version: '3'
36
36
  type: :runtime
37
37
  prerelease: false
38
- version_requirements: *70238792646500
38
+ version_requirements: *70233286285260
39
39
  - !ruby/object:Gem::Dependency
40
40
  name: method_source
41
- requirement: &70238792645620 !ruby/object:Gem::Requirement
41
+ requirement: &70233286284380 !ruby/object:Gem::Requirement
42
42
  none: false
43
43
  requirements:
44
44
  - - ~>
@@ -46,10 +46,10 @@ dependencies:
46
46
  version: 0.7.1
47
47
  type: :runtime
48
48
  prerelease: false
49
- version_requirements: *70238792645620
49
+ version_requirements: *70233286284380
50
50
  - !ruby/object:Gem::Dependency
51
51
  name: bacon
52
- requirement: &70238792645100 !ruby/object:Gem::Requirement
52
+ requirement: &70233286283820 !ruby/object:Gem::Requirement
53
53
  none: false
54
54
  requirements:
55
55
  - - ~>
@@ -57,10 +57,10 @@ dependencies:
57
57
  version: '1.1'
58
58
  type: :development
59
59
  prerelease: false
60
- version_requirements: *70238792645100
60
+ version_requirements: *70233286283820
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: open4
63
- requirement: &70238792644480 !ruby/object:Gem::Requirement
63
+ requirement: &70233286283220 !ruby/object:Gem::Requirement
64
64
  none: false
65
65
  requirements:
66
66
  - - ~>
@@ -68,10 +68,10 @@ dependencies:
68
68
  version: '1.3'
69
69
  type: :development
70
70
  prerelease: false
71
- version_requirements: *70238792644480
71
+ version_requirements: *70233286283220
72
72
  - !ruby/object:Gem::Dependency
73
73
  name: rake
74
- requirement: &70238792643860 !ruby/object:Gem::Requirement
74
+ requirement: &70233286282620 !ruby/object:Gem::Requirement
75
75
  none: false
76
76
  requirements:
77
77
  - - ~>
@@ -79,10 +79,10 @@ dependencies:
79
79
  version: '0.9'
80
80
  type: :development
81
81
  prerelease: false
82
- version_requirements: *70238792643860
82
+ version_requirements: *70233286282620
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: win32console
85
- requirement: &70238792643320 !ruby/object:Gem::Requirement
85
+ requirement: &70233286282000 !ruby/object:Gem::Requirement
86
86
  none: false
87
87
  requirements:
88
88
  - - ~>
@@ -90,7 +90,7 @@ dependencies:
90
90
  version: '1.3'
91
91
  type: :runtime
92
92
  prerelease: false
93
- version_requirements: *70238792643320
93
+ version_requirements: *70233286282000
94
94
  description: An IRB alternative and runtime developer console
95
95
  email: jrmair@gmail.com
96
96
  executables:
@@ -225,7 +225,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
225
225
  version: '0'
226
226
  requirements: []
227
227
  rubyforge_project:
228
- rubygems_version: 1.8.16
228
+ rubygems_version: 1.8.6
229
229
  signing_key:
230
230
  specification_version: 3
231
231
  summary: An IRB alternative and runtime developer console