icepick 1.1.1 → 1.3.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3824cc1c9ebdff333b015293196eccd9774fe887
4
- data.tar.gz: 0f50de052391dadf7b669a646ae3e4eba5445a51
3
+ metadata.gz: 3411701ff8a8fa98da681068dbfc650a0186d1b9
4
+ data.tar.gz: 22d29305ef427ecd2a640ba0f25ebb475a64709f
5
5
  SHA512:
6
- metadata.gz: 46bda6acbd5d10f40552c43a6c366327673fceb59be1eb464df9e895d2f00bca8bd539c49317d9ec365b6e638fe9a5118b86c4eb0fea99ea856f759a9b3ef847
7
- data.tar.gz: c3951e2b0be04b0b4be3f6af2f54d9423adca5d64fe6f8b24b5caea9c19fba4e874f3488cd505724a5f6eef8b744343b4353f37c1a512f4bf91da58472f2af88
6
+ metadata.gz: cb8468337d56aacc4cb6d524b415fe4c6a5091ad290c9cb4e13da1a3ad137c9e90a2aaa2ffab6725d7297367e4821ecfb7e8bf5586fb946aaae4c33c1ca5e409
7
+ data.tar.gz: 85a2d6a74c443a9557b20e81262b91939417dd4381b29070cb117c156dc2a056621195e6c265042f702fc4138271553ec789e779f5d783cf8966ced7f77a865b
@@ -1,3 +1,9 @@
1
+ ## 1.3.0 (2014-10-17)
2
+
3
+ * Added [pry-docmore][pry-docmore]
4
+ * Added [pry-rescue][pry-rescue]
5
+ * Updated dependencies
6
+
1
7
  ## 1.1.1 (2014-05-04)
2
8
 
3
9
  * Updated project dependencies
@@ -20,10 +26,11 @@
20
26
 
21
27
  * First and last release of the year. Bundle [pry][pry] with [pry-doc][pry-doc], [pry-debugger][pry-debugger], [pry-stack_explorer][pry-stack_explorer], and [pry-rails][pry-rails]. [Awesome print][awesome_print] for colorized and formatted output. Configured as Rails' console when applicable.
22
28
 
23
- [pry]: http://pry.github.com
24
- [pry-doc]: https://github.com/pry/pry-doc
25
- [pry-stack_explorer]: https://github.com/pry/pry-stack_explorer
26
- [pry-byebug]: https://github.com/deivid-rodriguez/pry-byebug
27
- [pry-rails]: https://github.com/rweng/pry-rails
28
29
  [awesome_print]: https://github.com/michaeldv/awesome_print
29
30
  [colorized]: https://github.com/fazibear/colorize
31
+ [pry-byebug]: https://github.com/deivid-rodriguez/pry-byebug
32
+ [pry-doc]: https://github.com/pry/pry-doc
33
+ [pry-docmore]: https://github.com/rking/pry-docmore
34
+ [pry-rescue]: https://github.com/ConradIrwin/pry-rescue
35
+ [pry-stack_explorer]: https://github.com/pry/pry-stack_explorer
36
+ [pry]: http://pry.github.com
data/README.md CHANGED
@@ -8,8 +8,10 @@ Icepick
8
8
  __Icepick__ bundles a set of useful tools, plugins, and configurations together:
9
9
 
10
10
  * [Pry][pry] is a powerful alternative to IRB
11
- * [Pry Doc][pry-doc] includes documentation and source for Core Ruby components
12
11
  * [Pry Byebug][pry-byebug] brings the power of debugging to Pry
12
+ * [Pry Doc][pry-doc] includes documentation and source for Core Ruby components
13
+ * [Pry Docmore][pry-docmore] adds additional documentation
14
+ * [Pry Rescue][pry-rescue] start a session when and where there is an error
13
15
  * [Pry Stack Explorer][pry-stack_explorer] adds support for call stack navigation
14
16
  * [Awesome Print][awesome_print] colorizes and formats output
15
17
 
@@ -54,7 +56,7 @@ Configuration for the Pry wait prompt, defaults to `'{spaces} {separator} '`. I
54
56
 
55
57
  ## Contributing
56
58
 
57
- Feedback and features welcome! Please make use of [Issues](https://github.com/doomspork/orwell/issues) and [Pull Requests](https://github.com/doomspork/orwell/pulls), all code must have accompanying specs.
59
+ Feedback and features welcome! Please make use of [Issues](https://github.com/doomspork/icepick/issues) and [Pull Requests](https://github.com/doomspork/icepick/pulls), all code must have accompanying specs.
58
60
 
59
61
  ## Author/Contact
60
62
 
@@ -67,8 +69,11 @@ Icepick is made available under the [MIT](http://opensource.org/licenses/MIT) Li
67
69
  [issues]: https://github.com/doomspork/icepick/issues
68
70
  [pullrequest]: https://github.com/doomspork/icepick/pulls
69
71
  [changelog]: https://github.com/doomspork/icepick/blob/master/CHANGELOG.md
70
- [pry]: http://pry.github.com
72
+ [awesome_print]: https://github.com/michaeldv/awesome_print
73
+ [colorized]: https://github.com/fazibear/colorize
74
+ [pry-byebug]: https://github.com/deivid-rodriguez/pry-byebug
71
75
  [pry-doc]: https://github.com/pry/pry-doc
76
+ [pry-docmore]: https://github.com/rking/pry-docmore
77
+ [pry-rescue]: https://github.com/ConradIrwin/pry-rescue
72
78
  [pry-stack_explorer]: https://github.com/pry/pry-stack_explorer
73
- [pry-byebug]: https://github.com/deivid-rodriguez/pry-byebug
74
- [awesome_print]: https://github.com/michaeldv/awesome_print
79
+ [pry]: http://pry.github.com
@@ -1,11 +1,10 @@
1
- # -*- encoding: utf-8 -*-
2
-
3
- require File.expand_path('../lib/icepick/version', __FILE__)
1
+ $:.push File.expand_path('../lib', __FILE__)
2
+ require 'icepick/version'
4
3
 
5
4
  Gem::Specification.new do |gem|
6
5
  gem.name = 'icepick'
7
6
  gem.version = Icepick::VERSION
8
- gem.author = 'Sean Callan'
7
+ gem.authors = ['doomspork']
9
8
  gem.email = 'seancallan@gmail.com'
10
9
  gem.license = 'MIT'
11
10
  gem.homepage = 'https://github.com/doomspork/icepick'
@@ -18,10 +17,12 @@ Gem::Specification.new do |gem|
18
17
 
19
18
  # Dependencies
20
19
  gem.required_ruby_version = '>= 2.0.0'
21
- gem.add_runtime_dependency 'pry', '~> 0.9.12'
22
- gem.add_runtime_dependency 'pry-doc', '~> 0.6.0'
23
- gem.add_runtime_dependency 'pry-stack_explorer', '~> 0.4.9'
24
- gem.add_runtime_dependency 'pry-byebug', '~> 1.3.2'
25
- gem.add_runtime_dependency 'colorize', '~> 0.7.2'
26
20
  gem.add_runtime_dependency 'awesome_print', '~> 1.2'
21
+ gem.add_runtime_dependency 'colorize', '~> 0.7'
22
+ gem.add_runtime_dependency 'pry', '~> 0.10'
23
+ gem.add_runtime_dependency 'pry-byebug', '~> 2.0'
24
+ gem.add_runtime_dependency 'pry-doc', '~> 0.6'
25
+ gem.add_runtime_dependency 'pry-docmore', '~> 0.1'
26
+ gem.add_runtime_dependency 'pry-rescue', '~> 1.4'
27
+ gem.add_runtime_dependency 'pry-stack_explorer', '~> 0.4'
27
28
  end
@@ -1,3 +1,3 @@
1
1
  module Icepick
2
- VERSION = '1.1.1'
2
+ VERSION = '1.3.0'
3
3
  end
metadata CHANGED
@@ -1,99 +1,127 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: icepick
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
- - Sean Callan
7
+ - doomspork
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-04 00:00:00.000000000 Z
11
+ date: 2014-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: pry
14
+ name: awesome_print
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.12
19
+ version: '1.2'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: 0.9.12
26
+ version: '1.2'
27
27
  - !ruby/object:Gem::Dependency
28
- name: pry-doc
28
+ name: colorize
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ~>
32
32
  - !ruby/object:Gem::Version
33
- version: 0.6.0
33
+ version: '0.7'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ~>
39
39
  - !ruby/object:Gem::Version
40
- version: 0.6.0
40
+ version: '0.7'
41
41
  - !ruby/object:Gem::Dependency
42
- name: pry-stack_explorer
42
+ name: pry
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ~>
46
46
  - !ruby/object:Gem::Version
47
- version: 0.4.9
47
+ version: '0.10'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ~>
53
53
  - !ruby/object:Gem::Version
54
- version: 0.4.9
54
+ version: '0.10'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: pry-byebug
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ~>
60
60
  - !ruby/object:Gem::Version
61
- version: 1.3.2
61
+ version: '2.0'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ~>
67
67
  - !ruby/object:Gem::Version
68
- version: 1.3.2
68
+ version: '2.0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: colorize
70
+ name: pry-doc
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ~>
74
74
  - !ruby/object:Gem::Version
75
- version: 0.7.2
75
+ version: '0.6'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - "~>"
80
+ - - ~>
81
81
  - !ruby/object:Gem::Version
82
- version: 0.7.2
82
+ version: '0.6'
83
83
  - !ruby/object:Gem::Dependency
84
- name: awesome_print
84
+ name: pry-docmore
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - "~>"
87
+ - - ~>
88
88
  - !ruby/object:Gem::Version
89
- version: '1.2'
89
+ version: '0.1'
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - "~>"
94
+ - - ~>
95
95
  - !ruby/object:Gem::Version
96
- version: '1.2'
96
+ version: '0.1'
97
+ - !ruby/object:Gem::Dependency
98
+ name: pry-rescue
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ~>
102
+ - !ruby/object:Gem::Version
103
+ version: '1.4'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ~>
109
+ - !ruby/object:Gem::Version
110
+ version: '1.4'
111
+ - !ruby/object:Gem::Dependency
112
+ name: pry-stack_explorer
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ version: '0.4'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ~>
123
+ - !ruby/object:Gem::Version
124
+ version: '0.4'
97
125
  description: Pry bundled with plugins and helpful configurations.
98
126
  email: seancallan@gmail.com
99
127
  executables:
@@ -101,8 +129,8 @@ executables:
101
129
  extensions: []
102
130
  extra_rdoc_files: []
103
131
  files:
104
- - ".gitignore"
105
- - ".ruby-version"
132
+ - .gitignore
133
+ - .ruby-version
106
134
  - CHANGELOG.md
107
135
  - Gemfile
108
136
  - LICENSE
@@ -124,17 +152,17 @@ require_paths:
124
152
  - lib
125
153
  required_ruby_version: !ruby/object:Gem::Requirement
126
154
  requirements:
127
- - - ">="
155
+ - - '>='
128
156
  - !ruby/object:Gem::Version
129
157
  version: 2.0.0
130
158
  required_rubygems_version: !ruby/object:Gem::Requirement
131
159
  requirements:
132
- - - ">="
160
+ - - '>='
133
161
  - !ruby/object:Gem::Version
134
162
  version: '0'
135
163
  requirements: []
136
164
  rubyforge_project:
137
- rubygems_version: 2.2.0.preview.1
165
+ rubygems_version: 2.0.14
138
166
  signing_key:
139
167
  specification_version: 4
140
168
  summary: Pry bundled with plugins and helpful configurations.