Sha256: 435a209559ad9b899656cdf4c9fbf9d04caf49d87bf1d2249fff0f9c82ece392
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
# Add your own tasks in files placed in lib/tasks ending in .rake, # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. require 'rake' require 'spec/rake/spectask' require 'rake/rdoctask' begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "squealer" gemspec.summary = "Document-oriented to Relational database exporter" gemspec.description = "Exports mongodb to mysql. More later." gemspec.email = "joshua.graham@grahamis.com" gemspec.homepage = "http://github.com/delitescere/squealer/" gemspec.authors = ["Josh Graham", "Durran Jordan"] gemspec.add_dependency('mysql', '>= 2.8.1') gemspec.add_dependency('mongo', '>= 0.18.3') end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler not available. Install it with: gem install jeweler" end desc "Run all specs in spec directory (excluding plugin specs)" Spec::Rake::SpecTask.new(:spec) do |t| t.spec_opts = ['--options', "\"#{File.dirname(__FILE__)}/spec/spec.opts\""] t.spec_files = FileList['spec/**/*/*_spec.rb'] end task :default => [:spec]
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
squealer-1.2.0 | Rakefile |