Sha256: acccd2c43c72c5d69c9ef6d11a3d0c12cebd4373c01d23f5898685bc1df1944d

Contents?: true

Size: 757 Bytes

Versions: 3

Compression:

Stored size: 757 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_design_docs'

task :default => 'spec:run'

PROJ.name = 'couch_design_docs'
PROJ.authors = 'Chris Strom'
PROJ.email = 'chris@eeecooks.com'
PROJ.url = 'http://github.com/eee-c/couch_design_docs'
PROJ.version = CouchDesignDocs::VERSION
PROJ.rubyforge.name = 'couch_design_docs'

PROJ.spec.opts << '--color'

PROJ.gem.dependencies = %w{json jchris-couchrest}

# EOF

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
eee-c-couch_design_docs-1.0.0 Rakefile
eee-c-couch_design_docs-1.0.1 Rakefile
eee-c-couch_design_docs-1.0.2 Rakefile