backy 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e3d662757c9b73f8cf156945547b608b96993cdd
4
+ data.tar.gz: 93f3649a406db4467a4ac83a227ee8ffb1fddfff
5
+ SHA512:
6
+ metadata.gz: e9d34a7ee808c652a4a968bf58cd90e0bec50ff2f8a4d651440b4ed502a05a3adfa8bd7c574d90bf0d135df1c0c29061fa0ad0dad22e898853cadaf4202685ad
7
+ data.tar.gz: 01eb7d92fe866e8653db4e8c4e03e5b366d6029fe812500c68ef70e5b51e1c9805e1d358f24fc27dabb24565a852de73f462367e3c93a64a8c832396263276be
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in test.gemspec
4
+ gemspec
5
+ gem 'pry'
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 TODO: Write your name
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.
@@ -0,0 +1,37 @@
1
+ # Backy
2
+
3
+ Simple and sweet database backup.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'backy'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install test
18
+
19
+ ## Usage
20
+
21
+ Simply run
22
+
23
+ $ rake backy:dump
24
+
25
+ to dump your database into db/backy.sql file.
26
+
27
+ To retrieve database from the file run
28
+
29
+ $ rake backy:load
30
+
31
+ ## Contributing
32
+
33
+ 1. Fork it ( http://github.com/<my-github-username>/test/fork )
34
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
35
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
36
+ 4. Push to the branch (`git push origin my-new-feature`)
37
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'backy/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "backy"
8
+ spec.version = Test::VERSION
9
+ spec.authors = ["Konrad Strojny"]
10
+ spec.email = ["kocasp@gmail.com"]
11
+ spec.summary = %q{Simple and quick database backup.}
12
+ spec.description = %q{Backup your databse (PostgreSQL or MySQL) with rake task. Handles capistrano.}
13
+ spec.homepage = "http://www.sology.eu"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.5"
22
+ spec.add_development_dependency 'rake', '~> 0'
23
+ end
@@ -0,0 +1,6 @@
1
+ require "capistrano"
2
+ require File.expand_path("#{File.dirname(__FILE__)}/recipes/recipes")
3
+
4
+ module MyPlugin
5
+ require 'backy/railtie' if defined?(Rails)
6
+ end
@@ -0,0 +1,11 @@
1
+ require 'backy'
2
+ require 'rails'
3
+ module Backy
4
+ class Railtie < Rails::Railtie
5
+ railtie_name :backy
6
+
7
+ rake_tasks do
8
+ load "tasks/backy.rake"
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,3 @@
1
+ module Test
2
+ VERSION = "0.0.2"
3
+ end
@@ -0,0 +1,69 @@
1
+ namespace :backy do
2
+
3
+ config = Rails.configuration.database_configuration
4
+ @host = config[Rails.env]["host"]
5
+ @database = config[Rails.env]["database"]
6
+ @username = config[Rails.env]["username"]
7
+ @password = config[Rails.env]["password"]
8
+
9
+ desc 'dumps database into db/backy.sql file'
10
+
11
+ task :dump => :environment do
12
+ case ActiveRecord::Base.connection.adapter_name
13
+ when "PostgreSQL"
14
+ postgresql_dump
15
+ when "Mysql2"
16
+ mysql2_dump
17
+ else
18
+ abort("only PostgreSQL, Mysql2 compatible")
19
+ end
20
+
21
+ end
22
+
23
+ desc 'recovers database from db/backy.sql file'
24
+ task :load => :environment do
25
+
26
+ case ActiveRecord::Base.connection.adapter_name
27
+ when "PostgreSQL"
28
+ postgresql_load
29
+ when "Mysql2"
30
+ mysql2_load
31
+ else
32
+ abort("only PostgreSQL, Mysql2 compatible")
33
+ end
34
+
35
+ end
36
+
37
+ def postgresql_load
38
+ puts "adapter: #{ActiveRecord::Base.connection.adapter_name}"
39
+ puts "invoking db:drop ..."
40
+ Rake::Task["db:drop"].invoke
41
+ puts "invoking db:create ..."
42
+ Rake::Task["db:create"].invoke
43
+ puts "loading db/backy.sql ..."
44
+ system( "export PGPASSWORD=#{@password}" )
45
+ system( "rails db < db/backy.sql" )
46
+ system( "unset PGPASSWORD" )
47
+ end
48
+
49
+ def postgresql_dump
50
+ puts "adapter: #{ActiveRecord::Base.connection.adapter_name}"
51
+ puts "invoking pg_dump ..."
52
+ system( "export PGPASSWORD=#{@password}" )
53
+ system( "pg_dump -U'#{@username}' --no-password --file='db/backy.sql' #{@database}" )
54
+ system( "unset PGPASSWORD" )
55
+ end
56
+
57
+ def mysql2_load
58
+ puts "adapter: #{ActiveRecord::Base.connection.adapter_name}"
59
+ puts "loading db/backy.sql ..."
60
+ system( "mysql -u'#{@username}' -p'#{@password}' '#{@database}' < db/backy.sql" )
61
+ end
62
+
63
+ def mysql2_dump
64
+ puts "adapter: #{ActiveRecord::Base.connection.adapter_name}"
65
+ puts "invoking mysqldump ..."
66
+ system( "mysqldump -u'#{@username}' -p'#{@password}' '#{@database}' > db/backy.sql" )
67
+ end
68
+
69
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: backy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Konrad Strojny
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-03-27 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.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
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
+ description: Backup your databse (PostgreSQL or MySQL) with rake task. Handles capistrano.
42
+ email:
43
+ - kocasp@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
+ - backy.gemspec
54
+ - lib/backy.rb
55
+ - lib/backy/railtie.rb
56
+ - lib/backy/version.rb
57
+ - lib/tasks/backy.rake
58
+ homepage: http://www.sology.eu
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.2.2
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: Simple and quick database backup.
82
+ test_files: []