gap 0.0.13 → 0.0.14
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 +6 -1
- data/lib/gap.rb +1 -1
- metadata +1 -1
data/README
CHANGED
@@ -5,6 +5,8 @@ gap
|
|
5
5
|
1 gap のインストール
|
6
6
|
|
7
7
|
gem install gap
|
8
|
+
gem install capistrano
|
9
|
+
gem install capistrano_colors
|
8
10
|
|
9
11
|
2 homeのrootに.caprcファイルを作り、設定
|
10
12
|
|
@@ -25,7 +27,7 @@ global: #グローバルな環境変
|
|
25
27
|
application: zebra #アプリケーション名
|
26
28
|
repository: "ssh://sc02//var/apps/dev/hoge" #リポジトリのuri
|
27
29
|
rvm_god_string: 1.9.2@god #godのgemset
|
28
|
-
rvm_ruby_string: 1.8.7@
|
30
|
+
rvm_ruby_string: 1.8.7@hoge #appのgemset
|
29
31
|
|
30
32
|
local
|
31
33
|
rails:
|
@@ -56,6 +58,9 @@ dev
|
|
56
58
|
alpha:
|
57
59
|
role:
|
58
60
|
web: "sc02.galileoscope.com"
|
61
|
+
set:
|
62
|
+
rvm_ruby_string: 1.8.7@hoge
|
63
|
+
repository: "/var/apps/dev/hoge"
|
59
64
|
rails:
|
60
65
|
set:
|
61
66
|
god: true #プロセスをgodで監視
|
data/lib/gap.rb
CHANGED