mysql_backup 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.textile +2 -3
- data/Rakefile +1 -0
- data/VERSION +1 -1
- metadata +11 -3
- data/README.rdoc +0 -18
data/README.textile
CHANGED
@@ -6,8 +6,7 @@ h2. Installation
|
|
6
6
|
|
7
7
|
<pre>
|
8
8
|
<code>
|
9
|
-
$ gem
|
10
|
-
$ sudo gem install christianhellsten-mysql-backup
|
9
|
+
$ sudo gem install mysql_backup —source http://gemcutter.org
|
11
10
|
</code>
|
12
11
|
</pre>
|
13
12
|
|
@@ -17,7 +16,7 @@ You can also grab the source code and install with rake:
|
|
17
16
|
$ cd /usr/local/src
|
18
17
|
$ git clone git://github.com/christianhellsten/mysql-backup.git
|
19
18
|
$ cd mysql-backup
|
20
|
-
$ sudo rake
|
19
|
+
$ sudo rake install
|
21
20
|
</code>
|
22
21
|
</pre>
|
23
22
|
|
data/Rakefile
CHANGED
@@ -11,6 +11,7 @@ begin
|
|
11
11
|
gem.homepage = "http://github.com/christianhellsten/mysql-backup"
|
12
12
|
gem.authors = ["Christian Hellsten"]
|
13
13
|
gem.add_dependency "sequel", ">= 0"
|
14
|
+
gem.add_dependency "highline", ">= 0"
|
14
15
|
gem.files = FileList["[A-Z]*", "{bin,lib,test}/**/*"]
|
15
16
|
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
16
17
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mysql_backup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Hellsten
|
@@ -22,6 +22,16 @@ dependencies:
|
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: "0"
|
24
24
|
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: highline
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: "0"
|
34
|
+
version:
|
25
35
|
- !ruby/object:Gem::Dependency
|
26
36
|
name: thoughtbot-shoulda
|
27
37
|
type: :development
|
@@ -41,11 +51,9 @@ extensions: []
|
|
41
51
|
|
42
52
|
extra_rdoc_files:
|
43
53
|
- LICENSE
|
44
|
-
- README.rdoc
|
45
54
|
- README.textile
|
46
55
|
files:
|
47
56
|
- LICENSE
|
48
|
-
- README.rdoc
|
49
57
|
- README.textile
|
50
58
|
- Rakefile
|
51
59
|
- VERSION
|
data/README.rdoc
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
= mysql_backup
|
2
|
-
|
3
|
-
Description goes here.
|
4
|
-
|
5
|
-
== Note on Patches/Pull Requests
|
6
|
-
|
7
|
-
* Fork the project.
|
8
|
-
* Make your feature addition or bug fix.
|
9
|
-
* Add tests for it. This is important so I don't break it in a
|
10
|
-
future version unintentionally.
|
11
|
-
* Commit, do not mess with rakefile, version, or history.
|
12
|
-
(if you want to have your own version, that is fine but
|
13
|
-
bump version in a commit by itself I can ignore when I pull)
|
14
|
-
* Send me a pull request. Bonus points for topic branches.
|
15
|
-
|
16
|
-
== Copyright
|
17
|
-
|
18
|
-
Copyright (c) 2009 Christian Hellsten. See LICENSE for details.
|