Sha256: 20cc56b7b5707c4d9f24a7964ab8d9b14d7ca1e0ea173c5f9b617079e6bdd4a0
Contents?: true
Size: 961 Bytes
Versions: 2
Compression:
Stored size: 961 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 'loquacious' task :default => 'spec:specdoc' PROJ.name = 'loquacious' PROJ.authors = 'Tim Pease' PROJ.email = 'tim.pease@gmail.com' PROJ.url = 'http://codeforpeople.rubyforge.org/loquacious' PROJ.version = Loquacious::VERSION PROJ.readme_file = 'README.rdoc' PROJ.ignore_file = '.gitignore' PROJ.rubyforge.name = 'codeforpeople' PROJ.spec.opts << '--color' PROJ.ruby_opts = %w[-W0] PROJ.ann.email[:server] = 'smtp.gmail.com' PROJ.ann.email[:port] = 587 PROJ.ann.email[:from] = 'Tim Pease' task 'ann:prereqs' do PROJ.name = 'Loquacious' end depend_on 'rspec' # EOF
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
TwP-loquacious-1.0.0 | Rakefile |
loquacious-1.0.0 | Rakefile |