database_syncer 0.1.0

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
+ SHA1:
3
+ metadata.gz: 72f5916b8b5bf5c9a54637858d6bb1ed1c044cc7
4
+ data.tar.gz: b19bcc1b9e4a4cd50462eb42ab6511eae8524581
5
+ SHA512:
6
+ metadata.gz: be465e9d0925a069f87aa2ed3513a020bcb2990d727110ddeab7e629597cc25a663bf56c77841a82e1d42fb86c4859fb93d72dd62330e599410c37fcc36a1a5b
7
+ data.tar.gz: 1ac541db9e289575a76c072ee7518e3b24056da489d71b60c2d7e372ece5f22d5e906aa6f81c5848e7c6cfb322f99b44b7818f1fe736286b6a4ea4cd6985b699
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in database_syncer.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Endri Gjiri
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.
data/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # DatabaseSyncer
2
+
3
+ This gem provides a rake task to simply sync the local database with the production database on Heroku. The gem in meant to be used on a Rails project.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'database_syncer'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ ## Usage
18
+
19
+ From the root of your rails run:
20
+ ```console
21
+ rake db:sync:local["postgres://..."]
22
+ ```
23
+ The "postgres://..." sting should be your Heroku DATABASE_URL and can be found by running this command:
24
+ ```console
25
+ heroku config:get DATABASE_URL -a app-name
26
+ ```
27
+ ---
28
+ You can also get these instructions by running:
29
+ ```console
30
+ rake db:sync:local
31
+ ```
32
+ Which will output:
33
+ ```console
34
+ You need to pass in the heroku_config_database_url argument to the rake task
35
+ $ heroku config:get DATABASE_URL -a app-name
36
+ copy the DATABASE_URL variable and then call the rake task again
37
+ $ rake db:sync:local["postgres://svym..."]
38
+ ```
39
+
40
+ ## License
41
+
42
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "database_syncer"
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
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'database_syncer/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'database_syncer'
8
+ spec.version = DatabaseSyncer::VERSION
9
+ spec.authors = ['Endri Gjiri']
10
+ spec.email = ['egjiri@gmail.com']
11
+
12
+ spec.summary = 'Sync the local database with production data from Heroku'
13
+ spec.description = 'Sync the local database with production data from Heroku'
14
+ spec.homepage = 'https://github.com/egjiri/database_syncer'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = 'exe'
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ['lib']
21
+
22
+ spec.add_development_dependency 'bundler', '~> 1.10'
23
+ spec.add_development_dependency 'rake', '~> 10.0'
24
+ end
@@ -0,0 +1,7 @@
1
+ module DatabaseSyncer
2
+ class Railtie < Rails::Railtie
3
+ rake_tasks do
4
+ load 'tasks/data_importer.rake'
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module DatabaseSyncer
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,5 @@
1
+ require 'database_syncer/version'
2
+
3
+ module DatabaseSyncer
4
+ require 'database_syncer/railtie'
5
+ end
@@ -0,0 +1,36 @@
1
+ namespace :db do
2
+ namespace :sync do
3
+ desc 'This task updates the local development database with the production data from Heroku'
4
+ task :local, [:heroku_config_database_url] => :environment do |_t, args|
5
+ if args[:heroku_config_database_url]
6
+ puts "Copying the latest data from the production site... [#{Time.current}]".color(:cyan)
7
+ get_remote_data(args[:heroku_config_database_url])
8
+ puts "Importing the data in the local database... [#{Time.current}]".color(:green)
9
+ set_local_data
10
+ puts 'Finished Importing the Data.'.color(:magenta)
11
+ else
12
+ puts 'You need to pass in the heroku_config_database_url argument to the rake task'.color(:red)
13
+ puts '$ heroku config:get DATABASE_URL -a app-name'.color(:white)
14
+ puts 'copy the DATABASE_URL variable and then call the rake task again'.color(:yellow)
15
+ puts '$ rake db:sync:local["postgres://svym..."]'.color(:white)
16
+ end
17
+ end
18
+
19
+ private
20
+
21
+ def get_remote_data(heroku_config_database_url)
22
+ @export_file = File.join('tmp', 'db-data-dump.sql')
23
+ db = heroku_config_database_url.match(%r{^postgres://(.*?):(.*?)@(.*?):\d*?/(.*?)$})
24
+ system "export PGPASSWORD=\"#{db[2]}\"; pg_dump -U#{db[1]} -h#{db[3]} -a -Tschema_migrations #{db[4]} > #{@export_file}"
25
+ end
26
+
27
+ def set_local_data
28
+ Rake::Task['db:drop'].invoke
29
+ Rake::Task['db:create'].invoke
30
+ Rake::Task['db:migrate'].invoke
31
+ database = Rails.configuration.database_configuration[Rails.env]['database']
32
+ system "psql -h localhost #{database} -f #{@export_file}"
33
+ `rm #{@export_file}`
34
+ end
35
+ end
36
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: database_syncer
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Endri Gjiri
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-09-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: Sync the local database with production data from Heroku
42
+ email:
43
+ - egjiri@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - bin/console
54
+ - bin/setup
55
+ - database_syncer.gemspec
56
+ - lib/database_syncer.rb
57
+ - lib/database_syncer/railtie.rb
58
+ - lib/database_syncer/version.rb
59
+ - lib/tasks/data_importer.rake
60
+ homepage: https://github.com/egjiri/database_syncer
61
+ licenses:
62
+ - MIT
63
+ metadata: {}
64
+ post_install_message:
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubyforge_project:
80
+ rubygems_version: 2.2.2
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: Sync the local database with production data from Heroku
84
+ test_files: []