git-rails 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/History.txt +6 -0
- data/License.txt +27 -0
- data/Manifest.txt +2 -0
- data/README.txt +6 -31
- data/Rakefile +1 -0
- data/TODO +5 -0
- data/lib/git-rails/version.rb +1 -1
- metadata +15 -3
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
Binary file
|
data/History.txt
CHANGED
data/License.txt
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
(The MIT License)
|
2
|
+
|
3
|
+
Copyright (c) 2008 Pascal Belloncle (http://blog.nanorails.com)
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
'Software'), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
19
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
20
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
21
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
22
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
23
|
+
|
24
|
+
|
25
|
+
Some portions are
|
26
|
+
Copyright (c) 2006 Francois Beausoleil <francois@teksol.info> (from Piston code)
|
27
|
+
Copyright Cristi Balan (http://evil.che.lu, from giston/braid)
|
data/Manifest.txt
CHANGED
data/README.txt
CHANGED
@@ -8,49 +8,24 @@ Tools to help using git with rails
|
|
8
8
|
|
9
9
|
== FEATURES/PROBLEMS:
|
10
10
|
|
11
|
-
*
|
11
|
+
* create new git repository with .gitignore, linked to remote git repository
|
12
12
|
* install plugins from git source as git modules
|
13
13
|
* install plugins from svn source as git modules
|
14
14
|
|
15
15
|
== SYNOPSIS:
|
16
16
|
|
17
|
-
git-rails
|
18
|
-
git-rails install
|
19
|
-
git-rails
|
17
|
+
git-rails init {remote git repository}
|
18
|
+
git-rails install [remote plugin repository]
|
19
|
+
git-rails update plugin-name
|
20
20
|
|
21
21
|
== REQUIREMENTS:
|
22
22
|
|
23
23
|
* git
|
24
24
|
* rails 2.0.2
|
25
|
-
* hoe
|
26
|
-
* main
|
25
|
+
* hoe 1.5.0
|
26
|
+
* main 2.8.0
|
27
27
|
* rake 0.8.1
|
28
28
|
|
29
29
|
== INSTALL:
|
30
30
|
|
31
31
|
* sudo gem install git-rails
|
32
|
-
|
33
|
-
== LICENSE:
|
34
|
-
|
35
|
-
(The MIT License)
|
36
|
-
|
37
|
-
Copyright (c) 2008 Pascal Belloncle (nano RAILS)
|
38
|
-
|
39
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
40
|
-
a copy of this software and associated documentation files (the
|
41
|
-
'Software'), to deal in the Software without restriction, including
|
42
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
43
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
44
|
-
permit persons to whom the Software is furnished to do so, subject to
|
45
|
-
the following conditions:
|
46
|
-
|
47
|
-
The above copyright notice and this permission notice shall be
|
48
|
-
included in all copies or substantial portions of the Software.
|
49
|
-
|
50
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
51
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
52
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
53
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
54
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
55
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
56
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
CHANGED
@@ -12,6 +12,7 @@ Hoe.new('git-rails', GitRails::VERSION::STRING) do |p|
|
|
12
12
|
p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
|
13
13
|
p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
|
14
14
|
p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
|
15
|
+
p.extra_deps << ['main', '>= 2.8.0']
|
15
16
|
end
|
16
17
|
|
17
18
|
# vim: syntax=Ruby
|
data/TODO
ADDED
data/lib/git-rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pascal Belloncle (nano RAILS)
|
@@ -30,9 +30,18 @@ cert_chain:
|
|
30
30
|
TCvXyw==
|
31
31
|
-----END CERTIFICATE-----
|
32
32
|
|
33
|
-
date: 2008-02-
|
33
|
+
date: 2008-02-05 00:00:00 -08:00
|
34
34
|
default_executable:
|
35
35
|
dependencies:
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: main
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 2.8.0
|
44
|
+
version:
|
36
45
|
- !ruby/object:Gem::Dependency
|
37
46
|
name: hoe
|
38
47
|
version_requirement:
|
@@ -42,7 +51,7 @@ dependencies:
|
|
42
51
|
- !ruby/object:Gem::Version
|
43
52
|
version: 1.5.0
|
44
53
|
version:
|
45
|
-
description: "== DESCRIPTION: Tools to help using git with rails == FEATURES/PROBLEMS: *
|
54
|
+
description: "== DESCRIPTION: Tools to help using git with rails == FEATURES/PROBLEMS: * create new git repository with .gitignore, linked to remote git repository * install plugins from git source as git modules * install plugins from svn source as git modules"
|
46
55
|
email: psq@nanorails.com
|
47
56
|
executables:
|
48
57
|
- git-rails
|
@@ -50,13 +59,16 @@ extensions: []
|
|
50
59
|
|
51
60
|
extra_rdoc_files:
|
52
61
|
- History.txt
|
62
|
+
- License.txt
|
53
63
|
- Manifest.txt
|
54
64
|
- README.txt
|
55
65
|
files:
|
56
66
|
- History.txt
|
67
|
+
- License.txt
|
57
68
|
- Manifest.txt
|
58
69
|
- README.txt
|
59
70
|
- Rakefile
|
71
|
+
- TODO
|
60
72
|
- bin/git-rails
|
61
73
|
- lib/git-rails/commands.rb
|
62
74
|
- lib/git-rails/commands/init.rb
|
metadata.gz.sig
CHANGED
Binary file
|