dk-dumpdb 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA512:
3
+ data.tar.gz: 35cfd71c0691092fafe514197bf7d916ac7609f76323cea08321aec494e1bc8c0341e182a5db6da12659c0821ebfe2415d8270fb92c8b45a3263bd96c0bbc2ae
4
+ metadata.gz: c246440dccc0f8c88ed6aeca8713030ad0fc89b208d9fab078664b15c012ecf3a4edf39cea35534f99b8c2eee98fdc622dfe0393f6311df08d82055fc234edfd
5
+ SHA1:
6
+ data.tar.gz: ce8cff208dd90a80d1de4633422585d48529fd0c
7
+ metadata.gz: 42602044c3e90a740682c9824bc5b51b48916e9e
data/.gitignore ADDED
@@ -0,0 +1,19 @@
1
+ *.gem
2
+ *.log
3
+ *.rbc
4
+ .rbx/
5
+ .bundle
6
+ .config
7
+ .yardoc
8
+ Gemfile.lock
9
+ InstalledFiles
10
+ _yardoc
11
+ coverage
12
+ doc/
13
+ lib/bundler/man
14
+ pkg
15
+ rdoc
16
+ spec/reports
17
+ test/tmp
18
+ test/version_tmp
19
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ gem 'pry', "~> 0.9.0"
6
+
7
+ gem 'dk', :github => "redding/dk", :branch => "master"
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2016-Present <TODO: copyright holders>
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Dk::Dumpdb
2
+
3
+ Build Dk tasks to dump and restore your databases.
4
+
5
+ Note: this is a port of the [Dumpdb gem](https://github.com/redding/dumpdb) to work with [Dk](https://github.com/redding/dk) tasks. The overall API/DSL is similar - you just build Dk tasks instead of "restores".
6
+
7
+ ## Usage
8
+
9
+ TODO: Write code samples and usage instructions here
10
+
11
+ ## Installation
12
+
13
+ Add this line to your application's Gemfile:
14
+
15
+ gem 'dk-dumpdb'
16
+
17
+ And then execute:
18
+
19
+ $ bundle
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install dk-dumpdb
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create new Pull Request
data/dk-dumpdb.gemspec ADDED
@@ -0,0 +1,26 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "dk-dumpdb/version"
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "dk-dumpdb"
8
+ gem.version = Dk::Dumpdb::VERSION
9
+ gem.authors = ["Kelly Redding", "Collin Redding"]
10
+ gem.email = ["kelly@kellyredding.com", "collin.redding@me.com"]
11
+ gem.summary = "Build Dk tasks to dump and restore your databases"
12
+ gem.description = "Build Dk tasks to dump and restore your databases"
13
+ gem.homepage = "http://github.com/redding/dk-dumpdb"
14
+ gem.license = 'MIT'
15
+
16
+ gem.files = `git ls-files`.split($/)
17
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
18
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
+ gem.require_paths = ["lib"]
20
+
21
+ gem.add_development_dependency("assert", ["~> 2.16.1"])
22
+ gem.add_development_dependency("much-plugin", ["~> 0.2.0"])
23
+
24
+ gem.add_dependency("dk", ["~> 0.0.1"])
25
+
26
+ end
@@ -0,0 +1,4 @@
1
+ module Dk; end
2
+ module Dk::Dumpdb
3
+ VERSION = "0.0.1"
4
+ end
data/lib/dk-dumpdb.rb ADDED
@@ -0,0 +1 @@
1
+ require "dk-dumpdb/version"
data/log/.gitkeep ADDED
File without changes
data/test/helper.rb ADDED
@@ -0,0 +1,19 @@
1
+ # this file is automatically required when you run `assert`
2
+ # put any test helpers here
3
+
4
+ # add the root dir to the load path
5
+ $LOAD_PATH.unshift(File.expand_path("../..", __FILE__))
6
+
7
+ # require pry for debugging (`binding.pry`)
8
+ require 'pry'
9
+
10
+ require 'test/support/factory'
11
+
12
+ # 1.8.7 backfills
13
+
14
+ # Array#sample
15
+ if !(a = Array.new).respond_to?(:sample) && a.respond_to?(:choice)
16
+ class Array
17
+ alias_method :sample, :choice
18
+ end
19
+ end
@@ -0,0 +1,6 @@
1
+ require 'assert/factory'
2
+
3
+ module Factory
4
+ extend Assert::Factory
5
+
6
+ end
data/tmp/.gitkeep ADDED
File without changes
metadata ADDED
@@ -0,0 +1,94 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dk-dumpdb
3
+ version: &id003 !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Kelly Redding
8
+ - Collin Redding
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2016-07-28 00:00:00 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: assert
17
+ prerelease: false
18
+ requirement: &id001 !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ~>
21
+ - !ruby/object:Gem::Version
22
+ version: 2.16.1
23
+ type: :development
24
+ version_requirements: *id001
25
+ - !ruby/object:Gem::Dependency
26
+ name: much-plugin
27
+ prerelease: false
28
+ requirement: &id002 !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: 0.2.0
33
+ type: :development
34
+ version_requirements: *id002
35
+ - !ruby/object:Gem::Dependency
36
+ name: dk
37
+ prerelease: false
38
+ requirement: &id004 !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ~>
41
+ - *id003
42
+ type: :runtime
43
+ version_requirements: *id004
44
+ description: Build Dk tasks to dump and restore your databases
45
+ email:
46
+ - kelly@kellyredding.com
47
+ - collin.redding@me.com
48
+ executables: []
49
+
50
+ extensions: []
51
+
52
+ extra_rdoc_files: []
53
+
54
+ files:
55
+ - .gitignore
56
+ - Gemfile
57
+ - LICENSE
58
+ - README.md
59
+ - dk-dumpdb.gemspec
60
+ - lib/dk-dumpdb.rb
61
+ - lib/dk-dumpdb/version.rb
62
+ - log/.gitkeep
63
+ - test/helper.rb
64
+ - test/support/factory.rb
65
+ - tmp/.gitkeep
66
+ homepage: http://github.com/redding/dk-dumpdb
67
+ licenses:
68
+ - MIT
69
+ metadata: {}
70
+
71
+ post_install_message:
72
+ rdoc_options: []
73
+
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - &id005
79
+ - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: "0"
82
+ required_rubygems_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - *id005
85
+ requirements: []
86
+
87
+ rubyforge_project:
88
+ rubygems_version: 2.6.4
89
+ signing_key:
90
+ specification_version: 4
91
+ summary: Build Dk tasks to dump and restore your databases
92
+ test_files:
93
+ - test/helper.rb
94
+ - test/support/factory.rb