Sha256: ac229cefc6a3863277bcbbd0fcfb32f8df33a82c16644bb908616a21ba4c8d4f
Contents?: true
Size: 794 Bytes
Versions: 3
Compression:
Stored size: 794 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.readme_file = 'README.rdoc' depend_on 'rest-client' depend_on 'json' # EOF
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
eee-c-couch_docs-0.9.0 | Rakefile |
eee-c-couch_docs-1.0.0 | Rakefile |
couch_docs-1.0.0 | Rakefile |