Sha256: f7693e42d044e1622704d5312f174da5b339e66a6cf5d4923f4d27a1ddb90c02
Contents?: true
Size: 1.08 KB
Versions: 4
Compression:
Stored size: 1.08 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"
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
mongo3-0.1.0 | Rakefile |
mongo3-0.0.9 | Rakefile |
mongo3-0.0.8 | Rakefile |
mongo3-0.0.7 | Rakefile |