local_dump 0.0.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: eefe0864360d9620213add979a09517009b35dcb5bfd03463eb9d757a9b2794c
4
+ data.tar.gz: 21a6a2d00cb9765c2a7284fda83b8265fc55fc38be6ef92cad8ca0b911c0afba
5
+ SHA512:
6
+ metadata.gz: cdb8a2dbc785ebc411eee4ab74a48c28034a471b241465b6b053451eb2b15da9ffbfe2085abb8643579e929aab97cfb5f4b74dc29b02ff9df1e428e40dbf8021
7
+ data.tar.gz: a8a9226b13a284e572f751350440b3c9ed0619b806ac763974ffe9133f2b66c9a3d6da7daea39d953bd223d9448e770c8d5d3d55f763c8f7dcd0d3baabe24516
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,21 @@
1
+ AllCops:
2
+ DisplayCopNames: true
3
+ DisplayStyleGuide: true
4
+ StyleGuideCopsOnly: true
5
+ TargetRubyVersion: 2.5
6
+
7
+ Metrics/LineLength:
8
+ Max: 120
9
+
10
+ Documentation:
11
+ Enabled: false
12
+
13
+ FrozenStringLiteralComment:
14
+ Enabled: false
15
+
16
+ Style/FileName:
17
+ Enabled: false
18
+
19
+ Metrics/ModuleLength:
20
+ Exclude:
21
+ - spec/**/*_spec.rb
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in local_dump.gemspec
4
+ gemspec
@@ -0,0 +1,174 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ local_dump (0.0.0)
5
+ rails (>= 4.2.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (6.0.0)
11
+ actionpack (= 6.0.0)
12
+ nio4r (~> 2.0)
13
+ websocket-driver (>= 0.6.1)
14
+ actionmailbox (6.0.0)
15
+ actionpack (= 6.0.0)
16
+ activejob (= 6.0.0)
17
+ activerecord (= 6.0.0)
18
+ activestorage (= 6.0.0)
19
+ activesupport (= 6.0.0)
20
+ mail (>= 2.7.1)
21
+ actionmailer (6.0.0)
22
+ actionpack (= 6.0.0)
23
+ actionview (= 6.0.0)
24
+ activejob (= 6.0.0)
25
+ mail (~> 2.5, >= 2.5.4)
26
+ rails-dom-testing (~> 2.0)
27
+ actionpack (6.0.0)
28
+ actionview (= 6.0.0)
29
+ activesupport (= 6.0.0)
30
+ rack (~> 2.0)
31
+ rack-test (>= 0.6.3)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
34
+ actiontext (6.0.0)
35
+ actionpack (= 6.0.0)
36
+ activerecord (= 6.0.0)
37
+ activestorage (= 6.0.0)
38
+ activesupport (= 6.0.0)
39
+ nokogiri (>= 1.8.5)
40
+ actionview (6.0.0)
41
+ activesupport (= 6.0.0)
42
+ builder (~> 3.1)
43
+ erubi (~> 1.4)
44
+ rails-dom-testing (~> 2.0)
45
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
46
+ activejob (6.0.0)
47
+ activesupport (= 6.0.0)
48
+ globalid (>= 0.3.6)
49
+ activemodel (6.0.0)
50
+ activesupport (= 6.0.0)
51
+ activerecord (6.0.0)
52
+ activemodel (= 6.0.0)
53
+ activesupport (= 6.0.0)
54
+ activestorage (6.0.0)
55
+ actionpack (= 6.0.0)
56
+ activejob (= 6.0.0)
57
+ activerecord (= 6.0.0)
58
+ marcel (~> 0.3.1)
59
+ activesupport (6.0.0)
60
+ concurrent-ruby (~> 1.0, >= 1.0.2)
61
+ i18n (>= 0.7, < 2)
62
+ minitest (~> 5.1)
63
+ tzinfo (~> 1.1)
64
+ zeitwerk (~> 2.1, >= 2.1.8)
65
+ ast (2.4.0)
66
+ builder (3.2.3)
67
+ concurrent-ruby (1.1.5)
68
+ crass (1.0.5)
69
+ diff-lcs (1.3)
70
+ erubi (1.9.0)
71
+ globalid (0.4.2)
72
+ activesupport (>= 4.2.0)
73
+ i18n (1.7.0)
74
+ concurrent-ruby (~> 1.0)
75
+ jaro_winkler (1.5.3)
76
+ loofah (2.3.0)
77
+ crass (~> 1.0.2)
78
+ nokogiri (>= 1.5.9)
79
+ mail (2.7.1)
80
+ mini_mime (>= 0.1.1)
81
+ marcel (0.3.3)
82
+ mimemagic (~> 0.3.2)
83
+ method_source (0.9.2)
84
+ mimemagic (0.3.3)
85
+ mini_mime (1.0.2)
86
+ mini_portile2 (2.4.0)
87
+ minitest (5.12.2)
88
+ nio4r (2.5.2)
89
+ nokogiri (1.10.4)
90
+ mini_portile2 (~> 2.4.0)
91
+ parallel (1.18.0)
92
+ parser (2.6.5.0)
93
+ ast (~> 2.4.0)
94
+ rack (2.0.7)
95
+ rack-test (1.1.0)
96
+ rack (>= 1.0, < 3)
97
+ rails (6.0.0)
98
+ actioncable (= 6.0.0)
99
+ actionmailbox (= 6.0.0)
100
+ actionmailer (= 6.0.0)
101
+ actionpack (= 6.0.0)
102
+ actiontext (= 6.0.0)
103
+ actionview (= 6.0.0)
104
+ activejob (= 6.0.0)
105
+ activemodel (= 6.0.0)
106
+ activerecord (= 6.0.0)
107
+ activestorage (= 6.0.0)
108
+ activesupport (= 6.0.0)
109
+ bundler (>= 1.3.0)
110
+ railties (= 6.0.0)
111
+ sprockets-rails (>= 2.0.0)
112
+ rails-dom-testing (2.0.3)
113
+ activesupport (>= 4.2.0)
114
+ nokogiri (>= 1.6)
115
+ rails-html-sanitizer (1.3.0)
116
+ loofah (~> 2.3)
117
+ railties (6.0.0)
118
+ actionpack (= 6.0.0)
119
+ activesupport (= 6.0.0)
120
+ method_source
121
+ rake (>= 0.8.7)
122
+ thor (>= 0.20.3, < 2.0)
123
+ rainbow (3.0.0)
124
+ rake (10.5.0)
125
+ rspec (3.9.0)
126
+ rspec-core (~> 3.9.0)
127
+ rspec-expectations (~> 3.9.0)
128
+ rspec-mocks (~> 3.9.0)
129
+ rspec-core (3.9.0)
130
+ rspec-support (~> 3.9.0)
131
+ rspec-expectations (3.9.0)
132
+ diff-lcs (>= 1.2.0, < 2.0)
133
+ rspec-support (~> 3.9.0)
134
+ rspec-mocks (3.9.0)
135
+ diff-lcs (>= 1.2.0, < 2.0)
136
+ rspec-support (~> 3.9.0)
137
+ rspec-support (3.9.0)
138
+ rubocop (0.75.1)
139
+ jaro_winkler (~> 1.5.1)
140
+ parallel (~> 1.10)
141
+ parser (>= 2.6)
142
+ rainbow (>= 2.2.2, < 4.0)
143
+ ruby-progressbar (~> 1.7)
144
+ unicode-display_width (>= 1.4.0, < 1.7)
145
+ ruby-progressbar (1.10.1)
146
+ sprockets (4.0.0)
147
+ concurrent-ruby (~> 1.0)
148
+ rack (> 1, < 3)
149
+ sprockets-rails (3.2.1)
150
+ actionpack (>= 4.0)
151
+ activesupport (>= 4.0)
152
+ sprockets (>= 3.0.0)
153
+ thor (0.20.3)
154
+ thread_safe (0.3.6)
155
+ tzinfo (1.2.5)
156
+ thread_safe (~> 0.1)
157
+ unicode-display_width (1.6.0)
158
+ websocket-driver (0.7.1)
159
+ websocket-extensions (>= 0.1.0)
160
+ websocket-extensions (0.1.4)
161
+ zeitwerk (2.2.0)
162
+
163
+ PLATFORMS
164
+ ruby
165
+
166
+ DEPENDENCIES
167
+ bundler
168
+ local_dump!
169
+ rake
170
+ rspec
171
+ rubocop
172
+
173
+ BUNDLED WITH
174
+ 2.0.1
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Kirill Shevchenko
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,39 @@
1
+ # local_dump
2
+
3
+ Rake tasks for Dump and Restore PostgreSQL database in Rails (based on pg_dump/pg_restore)
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile and then execute `bundle install`
8
+
9
+ ```ruby
10
+ gem 'local_dump'
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ Dump the database, which will be created in `db/dump/` with name `db-app-name_my-dump-name.psql`
16
+
17
+ ```ruby
18
+ bundle exec rake local:db:dump'[my-dump-name]'
19
+ ```
20
+
21
+ Restore the database dump
22
+
23
+ ```ruby
24
+ bundle exec rake local:db:restore'[my-dump-name]'
25
+ ```
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/kirillshevch/local_dump.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'local_dump'
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require 'irb'
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,8 @@
1
+ require 'local_dump/version'
2
+ require 'local_dump/railtie'
3
+ require 'local_dump/connection_config'
4
+ require 'local_dump/dump_name'
5
+
6
+ module LocalDump
7
+ class Error < StandardError; end
8
+ end
@@ -0,0 +1,11 @@
1
+ module LocalDump
2
+ class ConnectionConfig
3
+ def self.call
4
+ yield Rails.application.class.parent_name.underscore,
5
+ ActiveRecord::Base.connection_config[:host] || '127.0.0.1',
6
+ ActiveRecord::Base.connection_config[:database],
7
+ ActiveRecord::Base.connection_config[:username],
8
+ ActiveRecord::Base.connection_config[:password]
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,7 @@
1
+ module LocalDump
2
+ class DumpName
3
+ def self.call(args, db)
4
+ args[:name] ? "#{db}_#{args[:name]}" : db
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,13 @@
1
+ require 'local_dump'
2
+ require 'rails'
3
+
4
+ module LocalDump
5
+ class Railtie < Rails::Railtie
6
+ railtie_name :local_dump
7
+
8
+ rake_tasks do
9
+ path = File.expand_path(__dir__)
10
+ Dir.glob("#{path}/tasks/**/*.rake").each { |f| load f }
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,19 @@
1
+ namespace :local do
2
+ namespace :db do
3
+ desc 'Dump the database'
4
+ task :dump, [:name] => [:environment] do |_, args|
5
+ cmd = nil
6
+
7
+ LocalDump::ConnectionConfig.call do |_app, host, db, user, password|
8
+ dump_name = LocalDump::DumpName.call(args, db)
9
+ dump_path = Rails.root.join('db', 'dump', "#{dump_name}.psql")
10
+ Dir.mkdir('db/dump') unless Dir.exist?('db/dump')
11
+ user_info = user ? "--username #{user}" : ''
12
+ cmd = "PGPASSWORD=#{password} pg_dump --host #{host} #{user_info} --verbose --clean --no-owner --no-acl --format=c #{db} > #{dump_path}"
13
+ end
14
+
15
+ puts cmd
16
+ exec cmd
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,18 @@
1
+ namespace :local do
2
+ namespace :db do
3
+ desc 'Restore the database dump'
4
+ task :restore, [:name] => [:environment] do |_, args|
5
+ cmd = nil
6
+ LocalDump::ConnectionConfig.call do |_app, host, db, user, password|
7
+ dump_name = LocalDump::DumpName.call(args, db)
8
+ dump_path = Rails.root.join('db', 'dump', "#{dump_name}.psql")
9
+ user_info = user ? "--username #{user}" : ''
10
+ cmd = "PGPASSWORD=#{password} pg_restore --verbose --host #{host} #{user_info} --clean --no-owner --no-acl --dbname #{db} #{dump_path}"
11
+ end
12
+ Rake::Task['db:drop'].invoke
13
+ Rake::Task['db:create'].invoke
14
+ puts cmd
15
+ exec cmd
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,3 @@
1
+ module LocalDump
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,32 @@
1
+
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'local_dump/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'local_dump'
8
+ spec.version = LocalDump::VERSION
9
+ spec.authors = ['Kirill Shevchenko']
10
+ spec.email = ['hello@kirillshevch.com']
11
+
12
+ spec.summary = 'Rake tasks for Dump and Restore PostgreSQL database in Rails'
13
+ spec.description = spec.summary
14
+ spec.homepage = 'https://github.com/kirillshevch/local_dump'
15
+ spec.license = 'MIT'
16
+
17
+ # Specify which files should be added to the gem when it is released.
18
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
19
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
20
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
+ end
22
+ spec.bindir = 'exe'
23
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
+ spec.require_paths = ['lib']
25
+
26
+ spec.add_dependency 'rails', '>= 4.2.0'
27
+
28
+ spec.add_development_dependency 'bundler'
29
+ spec.add_development_dependency 'rake'
30
+ spec.add_development_dependency 'rspec'
31
+ spec.add_development_dependency 'rubocop'
32
+ end
metadata ADDED
@@ -0,0 +1,131 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: local_dump
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Kirill Shevchenko
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-10-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 4.2.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 4.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubocop
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: Rake tasks for Dump and Restore PostgreSQL database in Rails
84
+ email:
85
+ - hello@kirillshevch.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".rspec"
92
+ - ".rubocop.yml"
93
+ - Gemfile
94
+ - Gemfile.lock
95
+ - LICENSE.txt
96
+ - README.md
97
+ - Rakefile
98
+ - bin/console
99
+ - bin/setup
100
+ - lib/local_dump.rb
101
+ - lib/local_dump/connection_config.rb
102
+ - lib/local_dump/dump_name.rb
103
+ - lib/local_dump/railtie.rb
104
+ - lib/local_dump/tasks/local/dump.rake
105
+ - lib/local_dump/tasks/local/restore.rake
106
+ - lib/local_dump/version.rb
107
+ - local_dump.gemspec
108
+ homepage: https://github.com/kirillshevch/local_dump
109
+ licenses:
110
+ - MIT
111
+ metadata: {}
112
+ post_install_message:
113
+ rdoc_options: []
114
+ require_paths:
115
+ - lib
116
+ required_ruby_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ required_rubygems_version: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ requirements: []
127
+ rubygems_version: 3.0.3
128
+ signing_key:
129
+ specification_version: 4
130
+ summary: Rake tasks for Dump and Restore PostgreSQL database in Rails
131
+ test_files: []