rails-backup-migrate 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG ADDED
@@ -0,0 +1,8 @@
1
+ *0.0.7 (2011-07-17)*
2
+
3
+ * Removed wildcard path when using `tar` to load database files as this required an option for GnuTar but not on BSD Tar. [Matt Connolly]
4
+
5
+ *0.0.6 (2011-06-29)*
6
+
7
+ * Initial public release [Matt Connolly]
8
+
@@ -1,3 +1,3 @@
1
1
  module RailsBackupMigrate
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
@@ -87,7 +87,7 @@ namespace :site do
87
87
  Dir::chdir RailsBackupMigrate.temp_dir
88
88
  # extract the yml files
89
89
  options = RailsBackupMigrate::VERBOSE ? '-xvzf' : '-xzf'
90
- `tar #{options} #{RailsBackupMigrate.backup_file} 'db/backup/*.yml'`
90
+ `tar #{options} #{RailsBackupMigrate.backup_file} 'db/backup'`
91
91
  RailsBackupMigrate.restore_db_from_yml
92
92
  end
93
93
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-backup-migrate
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 6
10
- version: 0.0.6
9
+ - 7
10
+ version: 0.0.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matt Connolly
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-07-01 00:00:00 +10:00
18
+ date: 2011-07-17 00:00:00 +10:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -44,6 +44,7 @@ extra_rdoc_files: []
44
44
 
45
45
  files:
46
46
  - .gitignore
47
+ - CHANGELOG
47
48
  - Gemfile
48
49
  - LICENSE
49
50
  - README.textile