strap 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -114,7 +114,7 @@ he shared got me thinking. Thanks Carl! https://bitbucket.org/cwcrawley/eeci-tal
114
114
  ## To-do
115
115
 
116
116
  * Add some more tests for CLI commands
117
- * Figure out a way to mock file system actions in tests, the files don't actually have to be created
117
+ * Figure out a way to mock file system actions in tests, so the files don't actually have to be created
118
118
  * Test in environments other than Mac OSX.
119
119
 
120
120
  ## Contributing
data/lib/strap/config.rb CHANGED
@@ -1,5 +1,3 @@
1
- require 'debugger'
2
-
3
1
  module Strap
4
2
 
5
3
  class Config
data/lib/strap/core.rb CHANGED
@@ -92,7 +92,7 @@ module Strap
92
92
  output "- Database already exists", :error
93
93
  else
94
94
  mysql.query("CREATE DATABASE #{db_name}")
95
- mysql.list_dbs.include?(db_name) ? output("Database created") : output("Error creating database", :error)
95
+ mysql.list_dbs.include?(db_name) ? output("- Database created") : output("- Error creating database", :error)
96
96
  end
97
97
  end
98
98
 
data/lib/strap/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Strap
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: strap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-11 00:00:00.000000000 Z
12
+ date: 2012-11-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake