Sha256: a715a255f0aa8ef86a43fcacc6d10a5f5f2f296d7b7748fb4da22bf55a893d44

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

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 'mongo3'

task :default => 'spec:run'

PROJ.name        = 'mongo3'
PROJ.authors     = 'Fernand Galiana'
PROJ.email       = 'fernand.galiana@gmail.com'
PROJ.url         = 'http://www.mongo3.com'
PROJ.version     = Mongo3::VERSION
PROJ.ruby_opts   = %w[-W0]
PROJ.readme      = 'README.rdoc'
PROJ.rcov.opts   = ["--sort", "coverage", "-T"]
PROJ.ignore_file = "*.log"
PROJ.spec.opts   << '--color'
PROJ.rdoc.include = %w[.rb]

# Dependencies
depend_on "mongo"                 , ">= 0.18.1"
depend_on "mongo_ext"             , ">= 0.18.1"
depend_on "agnostic-will_paginate", ">= 3.0.0"
depend_on "memcache-client"       , ">= 1.5.0"
depend_on "mongo_rack"            , ">= 0.0.1"
depend_on "main"                  , ">= 4.2.0"
depend_on "json"                  , ">= 1.2.0"
depend_on "sinatra"               , ">= 0.9.4"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mongo3-0.1.2 Rakefile
mongo3-0.1.1 Rakefile