Sha256: 904d42b2307d6c666a25034fcda141e83213f6d3e135841c8d4ffbfcb0ed165b
Contents?: true
Size: 698 Bytes
Versions: 67
Compression:
Stored size: 698 Bytes
Contents
# Look in the tasks/setup.rb file for the various options that can be # configured in this Rakefile. The .rake files in the tasks directory # are where the options are used. begin require 'bones' Bones.setup rescue LoadError begin load 'tasks/setup.rb' rescue LoadError raise RuntimeError, '### please install the "bones" gem ###' end end ensure_in_path 'lib' require '<%= name %>' task :default => 'spec:run' PROJ.name = '<%= name %>' PROJ.authors = 'FIXME (who is writing this software)' PROJ.email = 'FIXME (your e-mail)' PROJ.url = 'FIXME (project homepage)' PROJ.version = <%= classname %>::VERSION PROJ.rubyforge.name = '<%= name %>' PROJ.spec.opts << '--color' # EOF
Version data entries
67 entries across 53 versions & 2 rubygems