mrdu 1.0.0 → 1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 20a024f77552f6dd1a770d73f0b1680bdc8c23da
4
- data.tar.gz: 814f334e731940127ecc95821d091c1cbd1ddd57
3
+ metadata.gz: 3f76e0279eb0255b2d71d6cd332fd5564788829e
4
+ data.tar.gz: bd5e15fc0264bf179a42e7805306597a76f97e20
5
5
  SHA512:
6
- metadata.gz: 1d7dde3aabe2a81ca981a32ed12b28ed70087ef934d803d33191dc6e1bb77daa5a1181ce2868aff3b2717870b4152b21a5320f7993282e6affa51fda06ed7fed
7
- data.tar.gz: c93bbb77cf5333557499d51f652a983c06e13979084f81cd1d0bdef7bc9dfe28e45a52bbc9ffd90292b38d0f208a1e0223ce3b997cf82d4468ab45d631e4b349
6
+ metadata.gz: 018aa7617ea3cbe31b6662ad49aedf9007b410f27c9e4a68ad3907d298a586cbdae33fd4a72679f9e72425b3db64ddbb1367791113880cc2b53d93c8cfa941f4
7
+ data.tar.gz: 2ddeda7fa75afe8d662241e9fd91a50b43c8bab575c358ea0208a19f78c2545eac582f2e792b4efdefa88f6716da4ad0ef732af7d42ece09f19e5519876d43fc
@@ -0,0 +1,20 @@
1
+ Copyright 2013 Tom Van Eyck
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,4 @@
1
+ mrdu
2
+ ====
3
+
4
+ Run MySQL off a RAM disk on Ubuntu
@@ -1,3 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
1
3
  require 'trollop'
2
4
  require 'systemu'
3
5
 
@@ -0,0 +1,16 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'mrdu'
3
+ s.version = '1.0.1'
4
+ s.date = '2013-05-21'
5
+ s.summary = "Spawn a temporary MySQL instance off a RAM disk on Ubuntu."
6
+ s.description = "Spawn a temporary MySQL instance off a RAM disk on Ubuntu."
7
+ s.authors = ["Tom Van Eyck"]
8
+ s.email = 'tomvaneyck@gmail.com'
9
+ s.homepage = 'https://github.com/vaneyckt/mrdu'
10
+
11
+ s.add_runtime_dependency 'trollop'
12
+ s.add_runtime_dependency 'systemu'
13
+
14
+ s.files = `git ls-files`.split($/)
15
+ s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
16
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mrdu
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Van Eyck
@@ -40,11 +40,15 @@ dependencies:
40
40
  version: '0'
41
41
  description: Spawn a temporary MySQL instance off a RAM disk on Ubuntu.
42
42
  email: tomvaneyck@gmail.com
43
- executables: []
43
+ executables:
44
+ - mrdu
44
45
  extensions: []
45
46
  extra_rdoc_files: []
46
47
  files:
47
- - lib/mrdu.rb
48
+ - MIT-LICENSE.txt
49
+ - README.md
50
+ - bin/mrdu
51
+ - mrdu.gemspec
48
52
  homepage: https://github.com/vaneyckt/mrdu
49
53
  licenses: []
50
54
  metadata: {}