Sha256: 736d40a86f96b692f06e9781b0e9282f4955081c262fc3e3544860508f162921

Contents?: true

Size: 1.22 KB

Versions: 1

Compression:

Stored size: 1.22 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"                 , ">= 1.0.1"
depend_on "bson"                  , ">= 1.0.1"
depend_on "bson_ext"              , ">= 1.0.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

1 entries across 1 versions & 1 rubygems

Version Path
mongo3-0.1.3 Rakefile