public
Rubygem
Description: gem tool to use git modules to manage your plugins. The original authors copy is here: http://github.com/jxl/git-rails/tree
Homepage: https://rubyforge.org/projects/git-rails
Clone URL: git://github.com/jasherai/git-rails.git
Search Repo:
Documentation update

Update some documentation to show the use of paths for submodules.
jasherai (author)
Thu Mar 13 05:12:04 -0700 2008
commit  99a16c554206f8fd63cf59b0eb241e167fa8c81f
tree    af8c80f6a029aa87932f609c7d7438e4d197960d
parent  5970fa9cf351421a507c2d002ac3853712ea1c8a
...
1
2
 
...
1
2
3
0
@@ -1,2 +1,3 @@
0
 pkg
0
 email.txt
0
+.todo*
...
16
17
18
19
20
 
 
21
22
23
...
16
17
18
 
 
19
20
21
22
23
0
@@ -16,8 +16,8 @@ Tools to help using git with rails
0
 == SYNOPSIS:
0
 
0
   git-rails init {remote git repository}
0
- git-rails install [remote plugin repository]
0
- git-rails update plugin-name
0
+ git-rails install <remote plugin repository> [plugin name||path]
0
+ git-rails update <plugin-name||path>
0
 
0
 == REQUIREMENTS:
0
 
...
54
55
56
57
 
 
58
59
60
61
62
 
63
64
65
...
72
73
74
 
75
76
77
78
 
79
80
81
...
54
55
56
 
57
58
59
60
61
62
63
64
65
66
67
...
74
75
76
77
78
79
80
81
82
83
84
85
0
@@ -54,12 +54,14 @@ Main {
0
 
0
   mode(:install){
0
     description <<-txt
0
- installs a plugin from a remote git repository
0
+ installs a plugin from a remote git repository as a git submodule.
0
+ installs to a path if provided e.g. vendor/rails
0
 
0
     txt
0
 
0
     examples <<-txt
0
       . git-rails install git://gitorious.org/rur/mainline.git plugin-name
0
+ . git-rails install git://github.com/koz/rails.git vendor/rails
0
     txt
0
 
0
     mixin :argument_remote, :argument_plugin_name
0
@@ -72,10 +74,12 @@ Main {
0
   mode(:update){
0
     description <<-txt
0
       updates a plugin from original source
0
+ updates a submodule as declared by the path
0
     txt
0
 
0
     examples <<-txt
0
       . git-rails update plugin-name
0
+ . git-rails update vendor/plugin
0
     txt
0
 
0
     mixin :argument_plugin_name

Comments

    No one has commented yet.