devyn / legs forked from Bluebie/legs

Legs is a networking microframework designed to be super simple and easy and compact. Somewhat inspired by the crazy hacks in Camping, but mainly driven by wanting to build the kinds of easy tools I wish I would have had when I was younger and just getting in to coding. I hope to get it included with the reborn shoesified Hackety Hack as a networking aid, released under the Hackety Hack license: give it away, take it apart, learn-learn-learn without a 2nd thought. :)

This URL has Read+Write access

legs / Rakefile
100644 13 lines (10 sloc) 0.316 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'rubygems'
require 'rake'
require 'rake/gempackagetask'
 
LEGS_GEMSPEC = eval(File.read('legs.gemspec'))
 
Rake::GemPackageTask.new(LEGS_GEMSPEC) do |pkg|
  pkg.need_tar_bz2 = true
end
task :default => "pkg/#{LEGS_GEMSPEC.name}-#{LEGS_GEMSPEC.version}.gem" do
  puts "generated latest version"
end