Displaying 1 result from an estimated 1 matches for "makespec".
Did you mean:
qmakespec
2007 Jul 01
1
rspec for the svn-less (ruby version)
...spec_on_rails piece...what
do other think?
- there are some other checks I could put in here, suggestions are welcome.
- general code suggestions are welcome as well.
Mike B.
Here is my ruby version:
#!/usr/bin/ruby -w
require ''ftools''
def usage
puts
puts "Usage: makespec.rb <path> [<dotted-version>]"
puts
puts "Version defaults to 1.0.5"
puts
puts "Example: "
puts " makespec.rb /var/www/rails/railsapp 1.0.5"
puts
end
if ARGV[0].nil? then
usage
puts
puts "You must include a pathname"
put...