Sha256: 61decf34788f6647e5c597f4becfa561466f1b8646861643e47ac64b29de6c44
Contents?: true
Size: 1.17 KB
Versions: 2
Compression:
Stored size: 1.17 KB
Contents
require 'rake' require "rspec/core/rake_task" begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "yaml_db_improved" gem.summary = %Q{yaml_db allows export/import of database into/from yaml files} gem.description = %Q{ YamlDb is a database-independent format for dumping and restoring data. It complements the the database-independent schema format found in db/schema.rb. The data is saved into db/data.yml. This can be used as a replacement for mysqldump or pg_dump, but only for the databases typically used by Rails apps. Users, permissions, schemas, triggers, and other advanced database features are not supported - by design. Any database that has an ActiveRecord adapter should work } gem.email = "kissx012@umn.edu" gem.homepage = "http://github.com/zoltankiss/yaml_db" gem.authors = ["Adam Wiggins", "Orion Henry", "Zoltan Kiss"] end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" end RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = 'spec/*_spec.rb' spec.rspec_opts = ['--backtrace'] end task :default => :spec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
yaml_db_improved-1.0.1 | Rakefile |
yaml_db_improved-1.0.0 | Rakefile |