Skip to content

Commit

Permalink
Add Gemfile and update HISTORY. [admin]
Browse files Browse the repository at this point in the history
  • Loading branch information
trans committed May 23, 2012
1 parent d3cfa1d commit 6d61e64
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Gemfile
@@ -0,0 +1,2 @@
source "http://rubygems.org"
gemspec :path=>'pkg'
16 changes: 15 additions & 1 deletion HISTORY.rdoc
@@ -1,5 +1,19 @@
= RELEASE HISTORY

== 0.2.0 / 2012-05-23

New release finally address a number of important issues.
You can think of this release as a "beta" release, in that
it is *almost* suitable for general use. The next release
should provide the final polish for production usage.

Changes:

* Add development mode to always use latest version.
* Depend on Finder gem for feature lookup.
* No longer need to use #import for internal #require.


== 0.1.0 / 2010-02-19

This is an alpha release of Bezel, an alternate load
Expand All @@ -8,5 +22,5 @@ some feedback.

Changes:

* Happy Frakn Birthday!
* Happy Birthday!

5 changes: 3 additions & 2 deletions pkg/bezel.gemspec
Expand Up @@ -165,8 +165,9 @@ module DotRuby
end

# determine homepage from resources
homepage = metadata['resources'].find{ |key, url| key =~ /^home/ }
gemspec.homepage = homepage.last if homepage
homepage = metadata['resources'].find{ |r| r['type'] =~ /^home/ } ||
metadata['resources'].find{ |r| r['name'] =~ /^(home|web)/i }
gemspec.homepage = homepage['uri'] if homepage

gemspec.require_paths = metadata['load_path'] || ['lib']
gemspec.post_install_message = metadata['install_message']
Expand Down

0 comments on commit 6d61e64

Please sign in to comment.