Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Commit

Permalink
release 1.5.2; gem updates & ruby 2.1 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
janlelis committed Jan 13, 2014
1 parent 4f9381b commit 1f54589
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
== 1.5.2
* Ruby 2.1 Compatibility / Update looksee gem
* Be less restrictive in gem dependencies

== 1.5.1
* (nothing)

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2010-2013 Jan Lelis
Copyright (c) 2010-2014 Jan Lelis

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
6 changes: 3 additions & 3 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ If it does not exist, just create a new one. It's possible to modify, which libr

== Bundler Environments

In the <tt>Gemfile</tt>, you need to add:
In the <tt>Gemfile</tt>, you will need to add:

gem 'irbtools-more', :require => false
gem 'irbtools-more', require: false

Another way is to add a {debundle hack}[https://github.com/janlelis/debundle.rb] at the beginning of your <tt>~/.irbrc</tt>.

== Copyright

Copyright (c) 2010-2013 Jan Lelis, http://happycode.org. See LICENSE for details.
Copyright (c) 2010-2014 Jan Lelis, http://janlelis.de. See LICENSE for details.

== J-_-L
7 changes: 4 additions & 3 deletions irbtools-more.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ require File.dirname(__FILE__) + "/lib/irbtools/more"
Gem::Specification.new do |s|
s.name = 'irbtools-more'
s.version = Irbtools::More::VERSION
s.license = 'MIT'
s.authors = ["Jan Lelis"]
s.email = %q{mail@janlelis.de}
s.homepage = %q{https://github.com/janlelis/irbtools-more}
Expand All @@ -12,8 +13,8 @@ Gem::Specification.new do |s|
s.extra_rdoc_files = %w[LICENSE README.rdoc]
s.files = Dir.glob(%w[lib/**/*.rb ]) + %w{CHANGELOG Rakefile irbtools-more.gemspec}
s.required_ruby_version = '>= 1.9.2'
s.add_dependency 'irbtools', '~> 1.5.1'
s.add_dependency 'bond', '~> 0.4.3'
s.add_dependency 'looksee' , '~> 1.1.0'
s.add_dependency 'irbtools', '~> 1.5'
s.add_dependency 'bond', '~> 0.5'
s.add_dependency 'looksee' , '~> 2.0'
end

4 changes: 2 additions & 2 deletions lib/irbtools/more.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# define version
module Irbtools
module More
VERSION = '1.5.1'
VERSION = '1.5.2'
end
end

Expand All @@ -26,7 +26,7 @@ module More

# Object#l method for inspecting its load path
Irbtools.add_library 'looksee', :late_thread => :c do
Looksee::ObjectMixin.rename :ls => :l
Looksee::ObjectMixin.rename :l
class Object; alias ll l end
end

Expand Down

0 comments on commit 1f54589

Please sign in to comment.