-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version 0.6.2, temporary fix for segfault on 1.9.3
* see here: nixme/pry-nav#4
- Loading branch information
Showing
5 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,16 +15,17 @@ CLEAN.include("ext/**/*.#{dlext}", "ext/**/*.log", "ext/**/*.o", | |
|
||
def apply_spec_defaults(s) | ||
s.name = PROJECT_NAME | ||
s.summary = "Retrieve the binding of a method's caller. Can also retrieve bindings even further up the stack. Currently only works for MRI 1.9.2." | ||
s.summary = "Retrieve the binding of a method's caller. Can also retrieve bindings even further up the stack. Currently only works for MRI 1.9.2+" | ||
s.version = BindingOfCaller::VERSION | ||
s.date = Time.now.strftime '%Y-%m-%d' | ||
s.author = "John Mair (banisterfiend)" | ||
s.email = '[email protected]' | ||
s.description = s.summary | ||
s.require_path = 'lib' | ||
s.add_development_dependency("bacon","~>1.1.0") | ||
s.add_development_dependency("bacon","~>1.1") | ||
s.homepage = "http://github.com/banister/binding_of_caller" | ||
s.has_rdoc = 'yard' | ||
s.required_ruby_version = '>= 1.9.2' | ||
s.files = `git ls-files`.split("\n") | ||
s.test_files = `git ls-files -- test/*`.split("\n") | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module BindingOfCaller | ||
VERSION = "0.6.1" | ||
VERSION = "0.6.2" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters