powerup 0.0.2 → 0.0.3

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.
data/README.md CHANGED
@@ -15,6 +15,8 @@ run `rake pow:remove` to remove your application from pow
15
15
 
16
16
  run `rake pow:restart` to restart your application
17
17
 
18
+ rub `rake pow:open` to open your application in a browser
19
+
18
20
  Copyright
19
21
  ---------
20
22
  Copyright (c) 2011 Jan-Oliver Jahner See LICENSE for further details.
@@ -11,8 +11,8 @@ end
11
11
  namespace :pow do
12
12
  task :check_for_pow do
13
13
  unless File.exists?(POW_PATH)
14
- puts "error: pow not found!"
15
- puts "install with 'curl get.pow.cx | sh'"
14
+ puts "error: '#{POW_PATH}' not found!"
15
+ puts "install pow with 'curl get.pow.cx | sh'"
16
16
 
17
17
  exit(false)
18
18
  end
@@ -20,7 +20,7 @@ namespace :pow do
20
20
 
21
21
  desc "Add application to pow"
22
22
  task :add => :check_for_pow do
23
- puts "Add '#{APP_NAME}' to pow ..."
23
+ puts "Add '#{APP_NAME}' to pow"
24
24
  exec_with_explain "ln -s #{APP_PATH} #{POW_PATH}"
25
25
  end
26
26
 
@@ -38,7 +38,7 @@ namespace :pow do
38
38
 
39
39
  desc "Open application in browser"
40
40
  task :open => :check_for_pow do
41
- puts "Open'#{APP_NAME}' in browser ..."
41
+ puts "Open '#{APP_NAME}'"
42
42
  exec_with_explain "open http://#{APP_NAME}.dev"
43
43
  end
44
44
  end
@@ -1,3 +1,3 @@
1
1
  module Powerup
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: powerup
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jan-Oliver Jahner