mongo-util 0.0.3 → 0.0.4

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: f94f3651f20125bfe48640a9a4f98574701ebac4
4
- data.tar.gz: 154ffce121464f14a5d58bae6fb392eb1dacb9ce
3
+ metadata.gz: 28e1cbbcf95c8acb1c1382f94230e024baa79b47
4
+ data.tar.gz: 0c0998ad21b208c05a483431a180d1ef09d389fe
5
5
  SHA512:
6
- metadata.gz: 887e1f5f18150197502810755e8c36bacad29234a174270b3c614e04f9b9318a838a512338492d78c8af19badf0fbbe132afae969f12f328e3d8201a7bc149cb
7
- data.tar.gz: bc973d8b57bb5b5e6e08b168ec1f7ff7979a18c63b3ded1715cae2fa2ac64b18b0b0c07793eb30e081bc847bea28c8034edc5f94d903f9944bafdb09216e98d4
6
+ metadata.gz: 198e0bf942546f548a8268ea5381dc4e0daa9384c2bc7b737bdb17331db2accf5d212222a9ef1c020e907973150c22cf4b96109a6f133e3102fd5a3c6b5e94f1
7
+ data.tar.gz: fc47296640707780ebb343e33f37132551d45a611cbaf0018b87adf78350f8aa3d701d8c27593fe69aa6d6d43bf107d4c4c1300c30d927bebb1083474a78b179
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ *.gem
2
+ .DS_STORE
@@ -1,5 +1,5 @@
1
1
  module Mongo
2
2
  module Util
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4"
4
4
  end
5
5
  end
data/lib/mongo/util.rb CHANGED
@@ -90,7 +90,9 @@ module Mongo
90
90
 
91
91
  def exec(cmd, options={})
92
92
  # Print commands for debugging
93
- print "Executing: '#{cmd}'\n"
93
+ print "\n=======================================\n"
94
+ print "| Executing: '#{cmd}'\n"
95
+ print "=======================================\n\n"
94
96
  options[:return_output] ? `#{cmd}` : system(cmd)
95
97
  end
96
98
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongo-util
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Finn-Lenanrt Heemeyer
@@ -31,6 +31,7 @@ executables: []
31
31
  extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
+ - .gitignore
34
35
  - MIT-LICENSE
35
36
  - README.md
36
37
  - lib/mongo/util.rb