public
Description: Declare methods as immutable, somewhat like Java's "final" but still allowing child classes to override.
Homepage:
Clone URL: git://github.com/up_the_irons/immutable.git
Click here to lend your support to: immutable and make a donation at www.pledgie.com !
up_the_irons (author)
Sat Sep 27 18:31:01 -0700 2008
commit  a4ada96d1adc44c514ef7e2675be10a9b2109141
tree    c4fcc27d727517855f815272463b39640b13a0af
parent  7c4500add9d5084f836dad953e007417638cf4ae
immutable / Rakefile
100644 8 lines (6 sloc) 0.172 kb
1
2
3
4
5
6
7
8
task :default => :spec
 
desc "run the specs"
task :spec do
  opts = File.read('spec/spec.opts').split("\n").join(' ') rescue ""
  ruby "spec/immutable_spec.rb #{opts}"
end