pry-stack_explorer 0.4.9.2 → 0.6.1

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
- SHA1:
3
- metadata.gz: 21a04786fb810c93a0ea183c18cca6254254ed87
4
- data.tar.gz: db17a76ac8fed1d6ff7c517dc4496da16deeed4f
2
+ SHA256:
3
+ metadata.gz: 53b80cf3c06d7bdfaec826bed2ad1963a7bc69331d656e73b84d00e97a500197
4
+ data.tar.gz: 1942e6ad4fd0b43279d860aa06b2ca354b64eac8b713d426996b9a93a12f48d9
5
5
  SHA512:
6
- metadata.gz: dee7d3145e5cef1a2385c829d23b5f715b9e7bbd67b52a0cfd2035535e9f3c58308c654c5b045e7fc871ba75da5fa8a12bc5af715e0775ebdab44e84038dc4b4
7
- data.tar.gz: 24d28605c51a2e5bb64fbdad268b958232baf4823865f67126bf6bc4dc1390b463660465c7329c52a3ef4407e0f36dd7252c8877ba02ccf3c4f2a584917bbe6f
6
+ metadata.gz: 2c51eb15eb17f9edff667c93fbead5a7ffe7fa1c4cd3114e516a2057e37ab728e8436f5123908d0fac07a823b2a61fbcc50072429fc8f5081c3c85be5bcaf1d2
7
+ data.tar.gz: 24dc58f1bfda481a2eddee4e294c953e7ead4bee736da3f07bc142f237e7fcb8b41da9a1bd39517ae53fb34a892b7cd9f2faae3240c2e382031b09ba31eced21
data/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  pry-stack_explorer
2
2
  ===========
3
3
 
4
- (C) John Mair (banisterfiend) 2011
5
-
6
4
  _Walk the stack in a Pry session_
7
5
 
8
- pry-stack_explorer is a plugin for the [Pry](http://pry.github.com)
9
- REPL that enables the user to navigate the call-stack.
6
+ ---
7
+
8
+ Pry::StackExplorer is a plugin for [Pry](http://pry.github.com)
9
+ that allows navigating the call stack.
10
10
 
11
11
  From the point a Pry session is started, the user can move up the stack
12
12
  through parent frames, examine state, and even evaluate code.
@@ -15,147 +15,66 @@ Unlike `ruby-debug`, pry-stack_explorer incurs no runtime cost and
15
15
  enables navigation right up the call-stack to the birth of the
16
16
  program.
17
17
 
18
- pry-stack_explorer is currently designed to work on **Rubinius and MRI
19
- Ruby 1.9.2+ (including 1.9.3)**. Support for other Ruby versions and
20
- implementations is planned for the future.
21
-
22
- The `up`, `down`, `frame` and `show-stack` commands are provided. See
18
+ The `up`, `down`, `frame` and `stack` commands are provided. See
23
19
  Pry's in-session help for more information on any of these commands.
24
20
 
25
- **How to use:**
21
+ ## Usage
22
+ Provides commands available in Pry sessions.
26
23
 
27
- After installing `pry-stack_explorer`, just start Pry as normal (typically via a `binding.pry`), the stack_explorer plugin will be detected and used automatically.
24
+ Commands:
25
+ * `up`/`down` - Move up or down the call stack
26
+ * `frame [n]` - Go to frame *n*
27
+ * `stack` - Show call stack
28
28
 
29
- * Install the [gem](https://rubygems.org/gems/pry-stack_explorer): `gem install pry-stack_explorer`
30
- * Read the [documentation](http://rdoc.info/github/banister/pry-stack_explorer/master/file/README.md)
31
- * See the [source code](http://github.com/pry/pry-stack_explorer)
32
- * See the [wiki](https://github.com/pry/pry-stack_explorer/wiki) for in-depth usage information.
33
29
 
34
- Example: Moving around between frames
35
- --------
30
+ ## Install
36
31
 
37
- ```
38
- [8] pry(J)> show-stack
39
-
40
- Showing all accessible frames in stack:
41
- --
42
- => #0 [method] c <Object#c()>
43
- #1 [block] block in b <Object#b()>
44
- #2 [method] b <Object#b()>
45
- #3 [method] alphabet <Object#alphabet(y)>
46
- #4 [class] <class:J>
47
- #5 [block] block in <main>
48
- #6 [eval] <main>
49
- #7 [top] <main>
50
- [9] pry(J)> frame 3
51
-
52
- Frame number: 3/7
53
- Frame type: method
54
-
55
- From: /Users/john/ruby/projects/pry-stack_explorer/examples/example.rb @ line 10 in Object#alphabet:
56
-
57
- 5:
58
- 6: require 'pry-stack_explorer'
59
- 7:
60
- 8: def alphabet(y)
61
- 9: x = 20
62
- => 10: b
63
- 11: end
64
- 12:
65
- 13: def b
66
- 14: x = 30
67
- 15: proc {
68
- [10] pry(J)> x
69
- => 20
32
+ In Gemfile:
33
+ ```rb
34
+ gem 'pry-stack_explorer', '~> 0.6.0'
70
35
  ```
71
36
 
72
- Example: Modifying state in a caller
73
- -------
74
-
75
37
  ```
76
- Frame number: 0/3
77
- Frame type: method
78
-
79
- From: /Users/john/ruby/projects/pry-stack_explorer/examples/example2.rb @ line 15 in Object#beta:
80
-
81
- 10: beta
82
- 11: puts x
83
- 12: end
84
- 13:
85
- 14: def beta
86
- => 15: binding.pry
87
- 16: end
88
- 17:
89
- 18: alpha
90
- [1] pry(main)> show-stack
91
-
92
- Showing all accessible frames in stack:
93
- --
94
- => #0 [method] beta <Object#beta()>
95
- #1 [method] alpha <Object#alpha()>
96
- #2 [eval] <main>
97
- #3 [top] <main>
98
- [2] pry(main)> up
99
-
100
- Frame number: 1/3
101
- Frame type: method
102
-
103
- From: /Users/john/ruby/projects/pry-stack_explorer/examples/example2.rb @ line 10 in Object#alpha:
104
-
105
- 5:
106
- 6:
107
- 7:
108
- 8: def alpha
109
- 9: x = "hello"
110
- => 10: beta
111
- 11: puts x
112
- 12: end
113
- 13:
114
- 14: def beta
115
- 15: binding.pry
116
- [3] pry(main)> x = "goodbye"
117
- => "goodbye"
118
- [4] pry(main)> ^D
119
-
120
- OUTPUT: goodbye
38
+ gem install pry-stack_explorer
121
39
  ```
122
40
 
123
- Output from above is `goodbye` as we changed the `x` local inside the `alpha` (caller) stack frame.
41
+ * Read the [documentation](http://rdoc.info/github/banister/pry-stack_explorer/master/file/README.md)
42
+ * See the [wiki](https://github.com/pry/pry-stack_explorer/wiki) for in-depth usage information.
124
43
 
125
- Limitations
126
- -------------------------
127
44
 
128
- * First release, so may have teething problems.
129
- * Limited to Rubinius, and MRI 1.9.2+ at this stage.
45
+ ### Branches and compatible Ruby versions
46
+ * v0.5, v0.6: Ruby 2.6+, Pry 0.13+
47
+ * v0.4.11+: Ruby 2.5, Pry 0.12+ (branch `0-4` – end-of-life in March 2021)
48
+ * v0.4.9.3: Older versions (unsupported)
130
49
 
131
- Contact
132
- -------
50
+ Example:
51
+ --------
52
+ Here we run the following ruby script:
53
+ ```Ruby
54
+ require 'pry-stack_explorer'
133
55
 
134
- Problems or questions contact me at [github](http://github.com/banister)
56
+ def alpha
57
+ x = "hello"
58
+ beta
59
+ puts x
60
+ end
135
61
 
62
+ def beta
63
+ binding.pry
64
+ end
136
65
 
137
- License
138
- -------
66
+ alpha
67
+ ```
68
+
69
+ We wander around the stack a little bit, and modify the state of a frame above the one we `binding.pry`'d at.
139
70
 
140
- (The MIT License)
71
+ [![asciicast](https://asciinema.org/a/257713.svg)](https://asciinema.org/a/257713)
141
72
 
142
- Copyright (c) 2011 John Mair (banisterfiend)
73
+ Output from above is `Goodbye` as we changed the `x` local inside the `alpha` (caller) stack frame.
143
74
 
144
- Permission is hereby granted, free of charge, to any person obtaining
145
- a copy of this software and associated documentation files (the
146
- 'Software'), to deal in the Software without restriction, including
147
- without limitation the rights to use, copy, modify, merge, publish,
148
- distribute, sublicense, and/or sell copies of the Software, and to
149
- permit persons to whom the Software is furnished to do so, subject to
150
- the following conditions:
151
75
 
152
- The above copyright notice and this permission notice shall be
153
- included in all copies or substantial portions of the Software.
76
+ License
77
+ -------
78
+ Released under the [MIT License](https://github.com/pry/pry-stack_explorer/blob/master/LICENSE) by John Mair (banisterfiend) and contributors
154
79
 
155
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
156
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
157
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
158
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
159
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
160
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
161
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
80
+ Contributions to this gem are released under the same license.
@@ -5,13 +5,13 @@ module PryStackExplorer
5
5
  # @return [PryStackExplorer::FrameManager] The active frame manager for
6
6
  # the current `Pry` instance.
7
7
  def frame_manager
8
- PryStackExplorer.frame_manager(_pry_)
8
+ PryStackExplorer.frame_manager(pry_instance)
9
9
  end
10
10
 
11
11
  # @return [Array<PryStackExplorer::FrameManager>] All the frame
12
12
  # managers for the current `Pry` instance.
13
13
  def frame_managers
14
- PryStackExplorer.frame_managers(_pry_)
14
+ PryStackExplorer.frame_managers(pry_instance)
15
15
  end
16
16
 
17
17
  # @return [Boolean] Whether there is a context to return to once
@@ -55,7 +55,7 @@ module PryStackExplorer
55
55
  sig = meth_obj ? "<#{signature_with_owner(meth_obj)}>" : ""
56
56
 
57
57
  self_clipped = "#{Pry.view_clip(b_self)}"
58
- path = "@ #{b.eval('__FILE__')}:#{b.eval('__LINE__')}"
58
+ path = '@ ' + b.source_location.join(':')
59
59
 
60
60
  if !verbose
61
61
  "#{type} #{desc} #{sig}"
@@ -125,7 +125,7 @@ module PryStackExplorer
125
125
  yield(b)
126
126
  end
127
127
 
128
- frame_index = frame_manager.bindings.index(new_frame)
128
+ frame_manager.bindings.index(new_frame)
129
129
  end
130
130
  end
131
131
 
@@ -231,13 +231,15 @@ module PryStackExplorer
231
231
  end
232
232
  end
233
233
 
234
- create_command "show-stack", "Show all frames" do
234
+ create_command "stack", "Show all frames" do
235
235
  include FrameHelpers
236
236
 
237
237
  banner <<-BANNER
238
- Usage: show-stack [OPTIONS]
238
+ Usage: stack [OPTIONS]
239
239
  Show all accessible stack frames.
240
- e.g: show-stack -v
240
+ e.g: stack -v
241
+
242
+ alias: show-stack
241
243
  BANNER
242
244
 
243
245
  def options(opt)
@@ -245,6 +247,7 @@ module PryStackExplorer
245
247
  opt.on :H, :head, "Display the first N stack frames (defaults to 10).", :optional_argument => true, :as => Integer, :default => 10
246
248
  opt.on :T, :tail, "Display the last N stack frames (defaults to 10).", :optional_argument => true, :as => Integer, :default => 10
247
249
  opt.on :c, :current, "Display N frames either side of current frame (default to 5).", :optional_argument => true, :as => Integer, :default => 5
250
+ opt.on :a, :app, "Display application frames only", optional_argument: true
248
251
  end
249
252
 
250
253
  def memoized_info(index, b, verbose)
@@ -288,26 +291,75 @@ module PryStackExplorer
288
291
  private :selected_stack_frames
289
292
 
290
293
  def process
291
- if !frame_manager
292
- output.puts "No caller stack available!"
294
+ return no_stack_available! unless frame_manager
295
+
296
+ title = "Showing all accessible frames in stack (#{frame_manager.bindings.size} in total):"
297
+
298
+ content = [
299
+ bold(title),
300
+ "---",
301
+ make_stack_lines
302
+ ].join("\n")
303
+
304
+ stagger_output content
305
+ end
306
+
307
+ private
308
+
309
+ def make_stack_lines
310
+ frames_with_indices.map do |b, i|
311
+ make_stack_line(b, i, (i == frame_manager.binding_index))
312
+ end.join("\n")
313
+ end
314
+
315
+ def frames_with_indices
316
+ if opts.present?(:app) && defined?(ActiveSupport::BacktraceCleaner)
317
+ app_frames
293
318
  else
294
- content = ""
295
- content << "\n#{text.bold("Showing all accessible frames in stack (#{frame_manager.bindings.size} in total):")}\n--\n"
296
-
297
- base_frame_index, frames = selected_stack_frames
298
- frames.each_with_index do |b, index|
299
- i = index + base_frame_index
300
- if i == frame_manager.binding_index
301
- content << "=> ##{i} #{memoized_info(i, b, opts[:v])}\n"
302
- else
303
- content << " ##{i} #{memoized_info(i, b, opts[:v])}\n"
304
- end
305
- end
319
+ offset_frames
320
+ end
321
+ end
306
322
 
307
- stagger_output content
323
+ # "=> #0 method_name <Class#method(...)>"
324
+ def make_stack_line(b, i, active)
325
+ arw = active ? "=>" : " "
326
+
327
+ "#{arw} ##{i} #{memoized_info(i, b, opts[:v])}"
328
+ end
329
+
330
+ def offset_frames
331
+ base_frame_index, frames = selected_stack_frames
332
+
333
+ frames.each_with_index.map do |frame, index|
334
+ [frame, index + base_frame_index]
308
335
  end
309
336
  end
310
337
 
338
+ def no_stack_available!
339
+ output.puts "No caller stack available!"
340
+ end
341
+
342
+ LOCATION_LAMBDA = ->(_binding){ _binding.source_location[0] }
343
+
344
+ def app_frames
345
+ locations = frame_manager.bindings.map(&LOCATION_LAMBDA)
346
+ filtered = backtrace_cleaner.clean(locations)
347
+
348
+ frame_manager.bindings
349
+ .each_with_index
350
+ .map
351
+ .select do |_binding, _index|
352
+ LOCATION_LAMBDA.call(_binding).in?(filtered)
353
+ end
354
+ end
355
+
356
+ # also see Rails::BacktraceCleaner
357
+ def backtrace_cleaner
358
+ @backtrace_cleaner ||= ActiveSupport::BacktraceCleaner.new
359
+ end
311
360
  end
361
+
362
+ alias_command "show-stack", "stack"
363
+
312
364
  end
313
365
  end
@@ -1,3 +1,3 @@
1
- module PryStackExplorer
2
- VERSION = "0.4.9.2"
3
- end
1
+ module PryStackExplorer
2
+ VERSION = '0.6.1'
3
+ end
@@ -47,6 +47,8 @@ module PryStackExplorer
47
47
  # remove internal frames related to setting up the session
48
48
  def remove_internal_frames(bindings)
49
49
  start_frames = internal_frames_with_indices(bindings)
50
+ return bindings if start_frames.empty?
51
+
50
52
  start_frame_index = start_frames.first.last
51
53
 
52
54
  if start_frames.size >= 2
@@ -60,7 +62,7 @@ module PryStackExplorer
60
62
 
61
63
  # remove pry-nav / pry-debugger / pry-byebug frames
62
64
  def remove_debugger_frames(bindings)
63
- bindings.drop_while { |b| b.eval("__FILE__") =~ /pry-(?:nav|debugger|byebug)/ }
65
+ bindings.drop_while { |b| b.source_location[0] =~ /pry-(?:nav|debugger|byebug)/ }
64
66
  end
65
67
 
66
68
  # binding.pry frame
@@ -1,6 +1,7 @@
1
1
  # pry-stack_explorer.rb
2
2
  # (C) John Mair (banisterfiend); MIT license
3
3
 
4
+ require "pry" unless defined?(::Pry)
4
5
  require "pry-stack_explorer/version"
5
6
  require "pry-stack_explorer/commands"
6
7
  require "pry-stack_explorer/frame_manager"
@@ -125,10 +126,10 @@ Pry.config.commands.import PryStackExplorer::Commands
125
126
 
126
127
  # monkey-patch the whereami command to show some frame information,
127
128
  # useful for navigating stack.
128
- Pry.config.commands.before_command("whereami") do |num|
129
- if PryStackExplorer.frame_manager(_pry_) && !internal_binding?(target)
130
- bindings = PryStackExplorer.frame_manager(_pry_).bindings
131
- binding_index = PryStackExplorer.frame_manager(_pry_).binding_index
129
+ Pry.config.hooks.add_hook(:before_whereami, :stack_explorer) do
130
+ if PryStackExplorer.frame_manager(pry_instance) && !internal_binding?(target)
131
+ bindings = PryStackExplorer.frame_manager(pry_instance).bindings
132
+ binding_index = PryStackExplorer.frame_manager(pry_instance).binding_index
132
133
 
133
134
  output.puts "\n"
134
135
  output.puts "#{Pry::Helpers::Text.bold('Frame number:')} #{binding_index}/#{bindings.size - 1}"
metadata CHANGED
@@ -1,125 +1,109 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pry-stack_explorer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.9.2
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Mair (banisterfiend)
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-16 00:00:00.000000000 Z
11
+ date: 2021-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: binding_of_caller
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.7'
19
+ version: '1.0'
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.7'
26
+ version: '1.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: pry
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.9.11
33
+ version: '0.13'
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.9.11
40
+ version: '0.13'
41
41
  - !ruby/object:Gem::Dependency
42
- name: bacon
42
+ name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 1.1.0
47
+ version: '3.9'
48
48
  type: :development
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: 1.1.0
54
+ version: '3.9'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rake
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ~>
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0.9'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ~>
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0.9'
69
- description: Walk the stack in a Pry session
70
- email: jrmair@gmail.com
69
+ description:
70
+ email:
71
+ - jrmair@gmail.com
71
72
  executables: []
72
73
  extensions: []
73
74
  extra_rdoc_files: []
74
75
  files:
75
- - .gemtest
76
- - .gitignore
77
- - .travis.yml
78
- - .yardopts
79
- - CHANGELOG
80
- - Gemfile
81
76
  - LICENSE
82
77
  - README.md
83
- - Rakefile
84
- - examples/example.rb
85
- - examples/example2.rb
86
- - examples/example3.rb
87
78
  - lib/pry-stack_explorer.rb
88
79
  - lib/pry-stack_explorer/commands.rb
89
80
  - lib/pry-stack_explorer/frame_manager.rb
90
81
  - lib/pry-stack_explorer/version.rb
91
82
  - lib/pry-stack_explorer/when_started_hook.rb
92
- - pry-stack_explorer.gemspec
93
- - test/helper.rb
94
- - test/test_commands.rb
95
- - test/test_frame_manager.rb
96
- - test/test_stack_explorer.rb
97
- - tester.rb
98
83
  homepage: https://github.com/pry/pry-stack_explorer
99
- licenses: []
100
- metadata: {}
101
- post_install_message:
84
+ licenses:
85
+ - MIT
86
+ metadata:
87
+ bug_tracker_uri: https://github.com/pry/pry-stack_explorer/issues
88
+ source_code_uri: https://github.com/pry/pry-stack_explorer
89
+ changelog_uri: https://github.com/pry/pry-stack_explorer/blob/master/CHANGELOG
90
+ post_install_message:
102
91
  rdoc_options: []
103
92
  require_paths:
104
93
  - lib
105
94
  required_ruby_version: !ruby/object:Gem::Requirement
106
95
  requirements:
107
- - - '>='
96
+ - - ">="
108
97
  - !ruby/object:Gem::Version
109
- version: '0'
98
+ version: 2.6.0
110
99
  required_rubygems_version: !ruby/object:Gem::Requirement
111
100
  requirements:
112
- - - '>='
101
+ - - ">="
113
102
  - !ruby/object:Gem::Version
114
103
  version: '0'
115
104
  requirements: []
116
- rubyforge_project:
117
- rubygems_version: 2.1.11
118
- signing_key:
105
+ rubygems_version: 3.2.3
106
+ signing_key:
119
107
  specification_version: 4
120
108
  summary: Walk the stack in a Pry session
121
- test_files:
122
- - test/helper.rb
123
- - test/test_commands.rb
124
- - test/test_frame_manager.rb
125
- - test/test_stack_explorer.rb
109
+ test_files: []
data/.gemtest DELETED
File without changes
data/.gitignore DELETED
@@ -1,7 +0,0 @@
1
- Makefile
2
- *.so
3
- *.o
4
- *.def
5
- doc/
6
- pkg/
7
- .yardoc/
data/.travis.yml DELETED
@@ -1,15 +0,0 @@
1
- script:
2
- rake test --trace
3
-
4
- rvm:
5
- - 1.9.2
6
- - 1.9.3
7
-
8
- notifications:
9
- irc: "irc.freenode.org#pry"
10
- recipients:
11
- - jrmair@gmail.com
12
-
13
- branches:
14
- only:
15
- - master
data/.yardopts DELETED
@@ -1 +0,0 @@
1
- --markup markdown
data/CHANGELOG DELETED
File without changes
data/Gemfile DELETED
@@ -1,2 +0,0 @@
1
- source :rubygems
2
- gemspec