gap 0.0.15 → 0.0.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README +3 -3
  2. data/lib/gap/tasks.rb +1 -1
  3. data/lib/gap.rb +1 -1
  4. metadata +1 -1
data/README CHANGED
@@ -25,7 +25,7 @@ set :scm_username, "hoge" #リポジトリサーバへ
25
25
  global: #グローバルな環境変数設定
26
26
  set: #変数を定義
27
27
  application: zebra #アプリケーション名
28
- repository: "ssh://sc02//var/apps/dev/hoge" #リポジトリのuri
28
+ repository: "ssh://xxxx//var/apps/dev/hoge" #リポジトリのuri
29
29
  rvm_god_string: 1.9.2@god #godのgemset
30
30
  rvm_ruby_string: 1.8.7@hoge #appのgemset
31
31
 
@@ -43,7 +43,7 @@ local
43
43
 
44
44
  dev
45
45
  role:
46
- web: "sc02.galileoscope.com" #deploy先を指定
46
+ web: "xxxx" #deploy先を指定
47
47
  rails:
48
48
  task:
49
49
  start: rails server #gap dev rails start
@@ -57,7 +57,7 @@ dev
57
57
 
58
58
  alpha:
59
59
  role:
60
- web: "sc02.galileoscope.com"
60
+ web: "xxxx"
61
61
  set:
62
62
  rvm_ruby_string: 1.8.7@hoge
63
63
  repository: "/var/apps/dev/hoge"
data/lib/gap/tasks.rb CHANGED
@@ -60,7 +60,7 @@ module Gap
60
60
  when "set"
61
61
  v.each { |attr, val| set attr, val } if v
62
62
  when "task"
63
- if god
63
+ if fetch :god
64
64
 
65
65
  task(attr) do
66
66
  namespace :god do
data/lib/gap.rb CHANGED
@@ -2,5 +2,5 @@ $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
4
  module Gap
5
- VERSION = '0.0.15'
5
+ VERSION = '0.0.16'
6
6
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: gap
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.15
5
+ version: 0.0.16
6
6
  platform: ruby
7
7
  authors:
8
8
  - Takashi Yaguchi