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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bed2c1b5a49108febd12c6c186552a240efbfd09
4
- data.tar.gz: efc50ff4566068f77058e3222625766bd90ee0cd
3
+ metadata.gz: 1b564d89e0284402d25f8da7e7e4f7f0b7bdf9ab
4
+ data.tar.gz: dabf91632dedceee77e381c06f61e0d2e4f56d2b
5
5
  SHA512:
6
- metadata.gz: de014ea0d552e25f2411e7651695a24258ffa688ba5459b3b65e9b0b8225fabe1db5289c9dfe2ab32affe43e39d73b4368c6610e648bc38598e258f6ee609703
7
- data.tar.gz: 7f5947324951919be443d01d68589af0a4c4a1af9658ad0f05a15693086c0a18d45b5954e08bc1a93d73361ce0bf99315f836a32cae48af537d0abe33e6c9d04
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 to [templates][] directory.
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
- "~/.newgem-templates/"
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
- <<-DESC.gsub(/^\s*/, '')
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
@@ -1,4 +1,4 @@
1
1
  module GemNewgem
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  SUMMARY = %q{RubyGems plugin to generate a new gem skeleton based customizable templates.}
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem-newgem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leo Gallucci