forked from adamwiggins/yaml_db
-
Notifications
You must be signed in to change notification settings - Fork 200
/
yaml_db.gemspec
28 lines (23 loc) · 1.36 KB
/
yaml_db.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'yaml_db/version'
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "yaml_db"
s.version = YamlDb::VERSION
s.authors = ["Adam Wiggins", "Orion Henry"]
s.summary = %q{yaml_db allows export/import of database into/from yaml files}
s.description = "\nYamlDb is a database-independent format for dumping and restoring data. It complements the database-independent schema format found in db/schema.rb. The data is saved into db/data.yml.\nThis 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.\nAny database that has an ActiveRecord adapter should work.\n"
s.homepage = "https://github.com/yamldb/yaml_db"
s.license = "MIT"
s.extra_rdoc_files = ["README.md"]
s.files = Dir['README.md', 'lib/**/*']
s.require_paths = ["lib"]
s.required_ruby_version = ">= 1.8.7"
s.add_runtime_dependency "rails", ">= 3.0"
s.add_runtime_dependency "rake", ">= 0.8.7"
s.add_development_dependency "bundler", "~> 1.14"
s.add_development_dependency "rspec", "~> 3.0"
s.add_development_dependency "sqlite3", "~> 1.3.4"
end