dump_db 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: '081ef4a25ea208de8c0ab33b22fe4692c4d9d992'
4
- data.tar.gz: 9e83b131cb080dd6f4c0a89c5b060e0f761bc3be
3
+ metadata.gz: 19a6ebb9869c9e8f05edae7c7822a80bdd5f71dd
4
+ data.tar.gz: 3a1c8d28b2adec89d6d925e34614701e6585f6c4
5
5
  SHA512:
6
- metadata.gz: 2e7e890b803d433f509d116ffcf828b75bb420190c58f7b287394cb36fca82be1c605b9602c6d49c5d18916c174cb60b76a28fd0ef7cefd8422356433127f055
7
- data.tar.gz: fdcba9c66a867b0e7d545d05428097c8404b057afe8ecebac0d1abb6b5033046a0976bc768e14ffd2f4fa40e3a3f134a087b7cfa2d443bf0cccb362dbcac3740
6
+ metadata.gz: ec338429668a33c42564c8126f6d129f3d8700256dc1f2e094fba44d71bdc7a24fd59451f38e64d201873278c3bd80ed0a39ede635aad8541159f5f87d00e3f0
7
+ data.tar.gz: 553064552ede0e35b3da8880c4eaac2d8acae9f597bf117654676510532f1345f0ef4a11c165070264171cf035ee3ead144b9c20286d3bb0c5243605728d2915
data/.gitignore CHANGED
@@ -9,4 +9,5 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
- .iead/*
12
+ .idea/*
13
+
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dump_db (0.1.0)
4
+ dump_db (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+ require 'dump_db'
3
+
4
+ DumpDb::Application.new
5
+
@@ -1,5 +1,16 @@
1
- require "dump_db/version"
1
+ require 'rake'
2
+
3
+ require 'dump_db/version'
4
+ require 'dump_db/application'
2
5
 
3
6
  module DumpDb
4
7
  # Your code goes here...
8
+ class Application < Rake::Application
9
+
10
+ def initialize
11
+ puts "DumpDB::Application"
12
+ super
13
+ end
14
+
15
+ end
5
16
  end
@@ -0,0 +1,3 @@
1
+ module DumpDb
2
+
3
+ end
@@ -1,3 +1,3 @@
1
1
  module DumpDb
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dump_db
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - JJ
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-07-12 00:00:00.000000000 Z
11
+ date: 2018-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -69,9 +69,11 @@ files:
69
69
  - README.md
70
70
  - Rakefile
71
71
  - bin/console
72
+ - bin/ddump
72
73
  - bin/setup
73
74
  - dump_db.gemspec
74
75
  - lib/dump_db.rb
76
+ - lib/dump_db/application.rb
75
77
  - lib/dump_db/version.rb
76
78
  homepage: https://github.com/virgil0116/dump_db.
77
79
  licenses: