Sha256: b165dbc6da128222365be7cb78facd7e1b2e7013c4675fc505455169e8d3991a
Contents?: true
Size: 870 Bytes
Versions: 1
Compression:
Stored size: 870 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 'couch_docs' task :default => 'spec:run' PROJ.name = 'couch_docs' PROJ.authors = 'Chris Strom' PROJ.email = 'chris@eeecooks.com' PROJ.url = 'http://github.com/eee-c/couch_docs' PROJ.version = CouchDocs::VERSION PROJ.rubyforge.name = 'couch_docs' PROJ.spec.opts << '--color' #PROJ.gem.dependencies = %w{json rest-client} PROJ.gem.development_dependencies << 'rspec' PROJ.readme_file = 'README.rdoc' depend_on 'rest-client' depend_on 'json' depend_on 'directory_watcher' # EOF
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
couch_docs-1.1.0 | Rakefile |