gem-newgem 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/gem_newgem/newgem/configuration.rb +2 -5
- data/lib/gem_newgem/platform.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b564d89e0284402d25f8da7e7e4f7f0b7bdf9ab
|
4
|
+
data.tar.gz: dabf91632dedceee77e381c06f61e0d2e4f56d2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e16de24d26117615d9d53d64bb79b5d841f9f3ff56a2fdeb51f7d43a1947900411609a9582fae500d3beadce0a928b08360272e879d5f8b9bd2d2b92db5244a
|
7
|
+
data.tar.gz: 9fcfe4462cdc06dd44eaa64e19f96fea56753db9d611c6536f9a9c9793b1ea3496c52c3a34e64801ae27a27c2e50733883757d5138b05e222a97b21b3cf7078b
|
data/README.md
CHANGED
@@ -105,7 +105,7 @@ INFO: Make branch tracking automatic
|
|
105
105
|
+ Show configurations found banner, then pause, then continue the bootstrap.
|
106
106
|
+ Add yaml configuration file.
|
107
107
|
+ Add support to install templates from git like [Ore][Ore custom templates] does.
|
108
|
-
+ Add more templates
|
108
|
+
+ Add more templates.
|
109
109
|
+ Add more integration with Bundler tasks: 'bundler/gem_tasks'
|
110
110
|
+ Then add more integration with [RubyGems API][].
|
111
111
|
|
@@ -6,7 +6,7 @@ module GemNewgem
|
|
6
6
|
include Singleton
|
7
7
|
|
8
8
|
def templates_base_dir
|
9
|
-
"
|
9
|
+
"#{Dir.home}/.newgem-templates/"
|
10
10
|
end
|
11
11
|
|
12
12
|
def default_template
|
@@ -26,10 +26,7 @@ module GemNewgem
|
|
26
26
|
end
|
27
27
|
|
28
28
|
def option_template_desc
|
29
|
-
|
30
|
-
Use TEMPLATE instead of `default` template
|
31
|
-
By default, all templates are looked at #{templates_base_dir}
|
32
|
-
DESC
|
29
|
+
"Use TEMPLATE instead of `default`. All templates are looked at #{templates_base_dir}"
|
33
30
|
end
|
34
31
|
|
35
32
|
end
|
data/lib/gem_newgem/platform.rb
CHANGED