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.
Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!
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