RubyFlow The Ruby and Rails community linklog

Be awesome: write your .gemspec yourself

Another article about why I’m still having issues with gem builders and .gemspec files and why I think you should consider using Bundler to bootstrap your RubyGems.

Comments

I’m using this small tool to simplify gem publishing, it reduces lots of lines in Rakefile to the:

require 'rake_ext'

project( :name => “class_loader”, :version => “0.3.7”, :summary => “Automatically finds and loads classes”,

:author => “Alexey Petrushin”, :homepage => “http://github.com/alexeypetrushin/class_loader” ) </code> after that declaration you just executes “rake gem:release” and it publish it.

And the lib where’s the rake_ext is located http://github.com/alexeypetrushin/ruby_ext

Post a comment

You can use basic HTML markup (e.g. <a>) or Markdown.

As you are not logged in, you will be
directed via GitHub to signup or sign in