noe 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
File without changes
@@ -1,3 +1,21 @@
1
+ # 1.3.0 / 2011-02-03
2
+
3
+ * Bug fixes
4
+
5
+ * Fixed a bug in Hash merging when overriding boolean values
6
+ * Fixed .gitignore of default ruby template not bundled with noe's gem, leading to incomplete templates
7
+ instantiations
8
+
9
+ * Default ruby skeleton
10
+
11
+ * Enhanced the way library version is handled. A !{upper}::Version module is now generated from
12
+ the noespec (and is kept safe-overridable by default). !{upper}::VERSION is kept and is set by
13
+ that module to the correct value. As a side effect, the .gemspec can now be built even if
14
+ dependencies are not met.
15
+ * Added the ability of the template to be tested with rubygems-test
16
+ * spec/spec_helper.rb is not safe-override by default anymore
17
+ * Fixed a bug that led 'rake -T' to ignore debug_mail
18
+
1
19
  # 1.2.0 / 2011-01-17
2
20
 
3
21
  * Broken things
@@ -24,7 +42,7 @@
24
42
  on rubygems.org when using the whole README.md file for project description.
25
43
  * Enhanced 'rake package/gem' to be configurable from .noespec under variables/rake_tasks/gem
26
44
  * Enhanced 'rake unit_test' to be configurable from .noespec under variables/rake_tasks/unit_test
27
- * Enhanced 'rake spec_test' to be configurable from .noespec under variables/rake_tasks/unit_test
45
+ * Enhanced 'rake spec_test' to be configurable from .noespec under variables/rake_tasks/spec_test
28
46
  * Enhanced 'rake yard' to be configurable from .noespec under variables/rake_tasks/yard
29
47
  * Added 'rake debug_mail' which is configurable from .noespec under variables/rake_tasks/debug_mail
30
48
  * lib/__lower__/loader.rb only use plain requires instead of a more complex algorithm. This follows
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- noe (1.2.0)
4
+ noe (1.3.0)
5
5
  highline (~> 1.6.0)
6
6
  quickl (~> 0.2.0)
7
7
  wlang (~> 0.10.1)
@@ -31,9 +31,7 @@ PLATFORMS
31
31
  DEPENDENCIES
32
32
  bluecloth (~> 2.0.9)
33
33
  bundler (~> 1.0)
34
- highline (~> 1.6.0)
35
34
  noe!
36
- quickl (~> 0.2.0)
37
35
  rake (~> 0.8.7)
38
36
  rspec (~> 2.4.0)
39
37
  wlang (~> 0.10.1)
@@ -1,3 +1,4 @@
1
+ .gemtest
1
2
  bin/**/*
2
3
  CHANGELOG.md
3
4
  Gemfile
@@ -12,4 +13,6 @@ README.md
12
13
  spec/**/*
13
14
  tasks/**/*
14
15
  test/**/*
15
- templates/**/*
16
+ templates/**/*
17
+ templates/ruby/src/.gemtest
18
+ templates/ruby/src/.gitignore
data/lib/noe.rb CHANGED
@@ -1,11 +1,9 @@
1
1
  module Noe
2
2
 
3
- # Noe's version
4
- VERSION = "1.2.0".freeze
5
-
6
3
  class Error < StandardError; end
7
4
 
8
5
  end # module Noe
6
+ require 'noe/version'
9
7
  require 'noe/loader'
10
8
  require 'yaml'
11
9
  require 'fileutils'
@@ -16,15 +16,18 @@ class Hash
16
16
  end
17
17
 
18
18
  # Makes a fully recursive merge
19
- def noe_merge(right)
19
+ def noe_merge(right, stack = "")
20
20
  self.merge(right) do |key,oldval,newval|
21
21
  if oldval.nil? or newval.nil?
22
22
  newval
23
+ elsif [true, false].include?(oldval) &&
24
+ [true, false].include?(newval)
25
+ newval
23
26
  elsif oldval.class != newval.class
24
- raise Noe::Error, "Conflict on #{key} has to be resolved manually, sorry.\n"\
27
+ raise Noe::Error, "Conflict on #{stack} has to be resolved manually, sorry.\n"\
25
28
  "#{oldval} (#{oldval.class}) vs. #{newval} (#{newval.class})"
26
29
  elsif oldval.respond_to?(:noe_merge)
27
- oldval.noe_merge(newval)
30
+ oldval.noe_merge(newval, "#{stack}/#{key}")
28
31
  else
29
32
  newval
30
33
  end
@@ -0,0 +1,14 @@
1
+ module Noe
2
+ module Version
3
+
4
+ MAJOR = 1
5
+ MINOR = 3
6
+ TINY = 0
7
+
8
+ def self.to_s
9
+ [ MAJOR, MINOR, TINY ].join('.')
10
+ end
11
+
12
+ end
13
+ VERSION = Version.to_s
14
+ end
@@ -1,8 +1,8 @@
1
1
  # We require your library, mainly to have access to the VERSION number.
2
2
  # Feel free to set $version manually.
3
3
  $LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
4
- require "noe"
5
- $version = Noe::VERSION.dup
4
+ require "noe/version"
5
+ $version = Noe::Version.to_s
6
6
 
7
7
  #
8
8
  # This is your Gem specification. Default values are provided so that your library
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
27
27
  #
28
28
  # The description should be more detailed than the summary. For example,
29
29
  # you might wish to copy the entire README into the description.
30
- s.description = "Noe is a tool that generates project skeletons from predefined templates. A template is designed for a specific product (a ruby library, a static or dynamic web site, ...). Noe instantiates templates and helps you maintaining your product via meta-information provided by a .noespec yaml file. In contrast to other tools, Noe is not specific to certain kinds of products. Writing your own template is possible and even simple!"
30
+ s.description = "Noe is a tool that generates project skeletons from predefined templates. A template is designed for a specific product (a ruby library, a static or dynamic web site, ...). Noe instantiates templates and helps you maintaining your product via meta-information provided by a .noespec yaml file. In contrast to other tools, Noe is not specific to certain kinds of products. Even if Noe comes bundled with a default template to develop gem libraries, writing your own template is possible and even simple!"
31
31
 
32
32
  # The URL of this gem home page (optional)
33
33
  s.homepage = "http://github.com/blambeau/noe"
@@ -80,11 +80,10 @@ Gem::Specification.new do |s|
80
80
  # of the project. Entries of the manifest are interpreted as Dir[...]
81
81
  # patterns so that lazy people may use wilcards like lib/**/*
82
82
  #
83
- here = File.dirname(__FILE__)
83
+ here = File.expand_path(File.dirname(__FILE__))
84
84
  s.files = File.readlines(File.join(here, 'Manifest.txt')).
85
- inject([]){|files, pattern|
86
- files + Dir[File.join(here, pattern.strip)]
87
- }
85
+ inject([]){|files, pattern| files + Dir[File.join(here, pattern.strip)]}.
86
+ collect{|x| x[(1+here.size)..-1]}
88
87
 
89
88
  # Test files included in this gem.
90
89
  #
@@ -1,19 +1,20 @@
1
1
  template-info:
2
2
  name: ruby
3
- version: 1.2.0
3
+ version: 1.3.0
4
4
  author: Bernard Lambeau <blambeau@gmail.com>
5
5
  variables:
6
6
  lower: noe
7
7
  upper: Noe
8
- version: 1.2.0
8
+ version: 1.3.0
9
9
  summary:
10
10
  Noe is a simple, general-purpose and extensible skeleton generator from project templates
11
11
  description:
12
12
  Noe is a tool that generates project skeletons from predefined templates. A template is designed
13
13
  for a specific product (a ruby library, a static or dynamic web site, ...). Noe instantiates
14
14
  templates and helps you maintaining your product via meta-information provided by a .noespec yaml
15
- file. In contrast to other tools, Noe is not specific to certain kinds of products. Writing your
16
- own template is possible and even simple!
15
+ file. In contrast to other tools, Noe is not specific to certain kinds of products. Even if Noe
16
+ comes bundled with a default template to develop gem libraries, writing your own template is
17
+ possible and even simple!
17
18
  authors:
18
19
  - {name: Bernard Lambeau, email: blambeau@gmail.com}
19
20
  links:
@@ -35,6 +35,7 @@ begin
35
35
  require 'wlang'
36
36
  require 'yaml'
37
37
 
38
+ desc "Debug the release announcement mail"
38
39
  task :debug_mail do
39
40
  # Check that a .noespec file exists
40
41
  noespec_file = File.expand_path('../../noe.noespec', __FILE__)
@@ -25,8 +25,8 @@
25
25
  # http://rake.rubyforge.org/classes/Rake/TestTask.html
26
26
  #
27
27
  begin
28
- desc "Lauches unit tests"
29
28
  require 'rake/testtask'
29
+ desc "Run unit tests"
30
30
  Rake::TestTask.new(:unit_test) do |t|
31
31
 
32
32
  # List of directories to added to $LOAD_PATH before running the
@@ -71,6 +71,7 @@ rescue LoadError => ex
71
71
  abort 'rspec is not available. In order to run spec, you must: gem install rspec'
72
72
  end
73
73
  ensure
74
+ desc "Run all tests"
74
75
  task :test => [:unit_test]
75
76
  end
76
77
 
@@ -1,3 +1,13 @@
1
+ # 1.3.0 / FIX ME
2
+
3
+ * Enhanced the way library version is handled. A !{upper}::Version module is now generated from
4
+ the noespec (and is kept safe-overridable by default). !{upper}::VERSION is kept and is set by
5
+ that module to the correct value. As a side effect, the .gemspec can now be built even if
6
+ dependencies are not met.
7
+ * Added the ability of the template to be tested with rubygems-test
8
+ * spec/spec_helper.rb is not safe-override by default anymore
9
+ * Fixed a bug that led 'rake -T' to ignore debug_mail
10
+
1
11
  # 1.2.0 / 2011-01-17
2
12
 
3
13
  * A 'description' variable is introduced in .noespec and made mandatory to avoid weird results
@@ -21,7 +21,7 @@ template-info:
21
21
 
22
22
  # Don't remove the name and version entries, which are ALWAYS required
23
23
  name: "!{template_name}"
24
- version: 1.1.0
24
+ version: 1.3.0
25
25
 
26
26
  # The following entries are information about the template itself and can safely
27
27
  # be removed on your own project.
@@ -70,9 +70,15 @@ template-info:
70
70
  description: Information used by Bundler, the Ruby dependency manager
71
71
  safe-override: true
72
72
  wlang-dialect: wlang/ruby
73
+ lib/.gemtest:
74
+ description: Marker for rubygems-test
75
+ safe-override: true
73
76
  lib/__lower__.rb:
74
77
  description: Main file of the ruby library
75
78
  safe-override: false
79
+ lib/__lower__/version.rb:
80
+ description: Handler for the version number for the library
81
+ safe-override: true
76
82
  lib/__lower__/loader.rb:
77
83
  description: Dependency loader for the ruby library
78
84
  safe-override: true
@@ -94,7 +100,7 @@ template-info:
94
100
  safe-override: false
95
101
  spec/spec_helper.rb:
96
102
  description: Helper for ruby spec tests
97
- safe-override: true
103
+ safe-override: false
98
104
  tasks/debug_mail.rake:
99
105
  description: configuration file for 'rake debug_mail'
100
106
  safe-override: true
@@ -4,7 +4,7 @@
4
4
  # Don't remove this entry!
5
5
  template-info:
6
6
  name: "!{template_name}"
7
- version: 1.1.0
7
+ version: 1.3.0
8
8
  links:
9
9
  source: https://github.com/blambeau/noe/tree/master/templates/ruby
10
10
  documentation: https://github.com/blambeau/noe/blob/master/templates/ruby/README.md
File without changes
@@ -0,0 +1,6 @@
1
+ coverage/*
2
+ *.DS_Store
3
+ pkg
4
+ doc/api
5
+ .yardoc
6
+ .bundle
@@ -1,5 +1,6 @@
1
1
  !{lower}.gemspec
2
2
  !{lower}.noespec
3
+ .gemtest
3
4
  CHANGELOG.md
4
5
  Gemfile
5
6
  Gemfile.lock
@@ -1,8 +1,8 @@
1
1
  # We require your library, mainly to have access to the VERSION number.
2
2
  # Feel free to set $version manually.
3
3
  $LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
4
- require +{lower}
5
- $version = !{upper}::VERSION.dup
4
+ require "!{lower}/version"
5
+ $version = !{upper}::Version.to_s
6
6
 
7
7
  #
8
8
  # This is your Gem specification. Default values are provided so that your library
@@ -80,11 +80,10 @@ Gem::Specification.new do |s|
80
80
  # of the project. Entries of the manifest are interpreted as Dir[...]
81
81
  # patterns so that lazy people may use wilcards like lib/**/*
82
82
  #
83
- here = File.dirname(__FILE__)
83
+ here = File.expand_path(File.dirname(__FILE__))
84
84
  s.files = File.readlines(File.join(here, 'Manifest.txt')).
85
- inject([]){|files, pattern|
86
- files + Dir[File.join(here, pattern.strip)]
87
- }
85
+ inject([]){|files, pattern| files + Dir[File.join(here, pattern.strip)]}.
86
+ collect{|x| x[(1+here.size)..-1]}
88
87
 
89
88
  # Test files included in this gem.
90
89
  #
@@ -3,7 +3,6 @@
3
3
  #
4
4
  module !{upper}
5
5
 
6
- VERSION = "!{version}".freeze
7
-
8
6
  end # module !{upper}
7
+ require "!{lower}/version"
9
8
  require "!{lower}/loader"
@@ -0,0 +1,14 @@
1
+ module !{upper}
2
+ module Version
3
+
4
+ MAJOR = +{version.split('.')[0].to_i}
5
+ MINOR = +{version.split('.')[1].to_i}
6
+ TINY = +{version.split('.')[2].to_i}
7
+
8
+ def self.to_s
9
+ [ MAJOR, MINOR, TINY ].join('.')
10
+ end
11
+
12
+ end
13
+ VERSION = Version.to_s
14
+ end
@@ -35,6 +35,7 @@ begin
35
35
  require 'wlang'
36
36
  require 'yaml'
37
37
 
38
+ desc "Debug the release announcement mail"
38
39
  task :debug_mail do
39
40
  # Check that a .noespec file exists
40
41
  noespec_file = File.expand_path('../../!{lower}.noespec', __FILE__)
@@ -25,8 +25,8 @@
25
25
  # http://rake.rubyforge.org/classes/Rake/TestTask.html
26
26
  #
27
27
  begin
28
- desc "Lauches unit tests"
29
28
  require 'rake/testtask'
29
+ desc "Run unit tests"
30
30
  Rake::TestTask.new(:unit_test) do |t|
31
31
 
32
32
  # List of directories to added to $LOAD_PATH before running the
@@ -71,6 +71,7 @@ rescue LoadError => ex
71
71
  abort 'rspec is not available. In order to run spec, you must: gem install rspec'
72
72
  end
73
73
  ensure
74
+ desc "Run all tests"
74
75
  task :test => [:unit_test]
75
76
  end
76
77
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: noe
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
- - 2
8
+ - 3
9
9
  - 0
10
- version: 1.2.0
10
+ version: 1.3.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Bernard Lambeau
@@ -15,14 +15,12 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-01-17 00:00:00 +01:00
18
+ date: 2011-02-03 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
- prerelease: false
23
- name: rake
24
22
  type: :development
25
- version_requirements: &id001 !ruby/object:Gem::Requirement
23
+ requirement: &id001 !ruby/object:Gem::Requirement
26
24
  none: false
27
25
  requirements:
28
26
  - - ~>
@@ -33,12 +31,12 @@ dependencies:
33
31
  - 8
34
32
  - 7
35
33
  version: 0.8.7
36
- requirement: *id001
37
- - !ruby/object:Gem::Dependency
34
+ name: rake
35
+ version_requirements: *id001
38
36
  prerelease: false
39
- name: bundler
37
+ - !ruby/object:Gem::Dependency
40
38
  type: :development
41
- version_requirements: &id002 !ruby/object:Gem::Requirement
39
+ requirement: &id002 !ruby/object:Gem::Requirement
42
40
  none: false
43
41
  requirements:
44
42
  - - ~>
@@ -48,12 +46,12 @@ dependencies:
48
46
  - 1
49
47
  - 0
50
48
  version: "1.0"
51
- requirement: *id002
52
- - !ruby/object:Gem::Dependency
49
+ name: bundler
50
+ version_requirements: *id002
53
51
  prerelease: false
54
- name: rspec
52
+ - !ruby/object:Gem::Dependency
55
53
  type: :development
56
- version_requirements: &id003 !ruby/object:Gem::Requirement
54
+ requirement: &id003 !ruby/object:Gem::Requirement
57
55
  none: false
58
56
  requirements:
59
57
  - - ~>
@@ -64,12 +62,12 @@ dependencies:
64
62
  - 4
65
63
  - 0
66
64
  version: 2.4.0
67
- requirement: *id003
68
- - !ruby/object:Gem::Dependency
65
+ name: rspec
66
+ version_requirements: *id003
69
67
  prerelease: false
70
- name: yard
68
+ - !ruby/object:Gem::Dependency
71
69
  type: :development
72
- version_requirements: &id004 !ruby/object:Gem::Requirement
70
+ requirement: &id004 !ruby/object:Gem::Requirement
73
71
  none: false
74
72
  requirements:
75
73
  - - ~>
@@ -80,12 +78,12 @@ dependencies:
80
78
  - 6
81
79
  - 4
82
80
  version: 0.6.4
83
- requirement: *id004
84
- - !ruby/object:Gem::Dependency
81
+ name: yard
82
+ version_requirements: *id004
85
83
  prerelease: false
86
- name: bluecloth
84
+ - !ruby/object:Gem::Dependency
87
85
  type: :development
88
- version_requirements: &id005 !ruby/object:Gem::Requirement
86
+ requirement: &id005 !ruby/object:Gem::Requirement
89
87
  none: false
90
88
  requirements:
91
89
  - - ~>
@@ -96,12 +94,12 @@ dependencies:
96
94
  - 0
97
95
  - 9
98
96
  version: 2.0.9
99
- requirement: *id005
100
- - !ruby/object:Gem::Dependency
97
+ name: bluecloth
98
+ version_requirements: *id005
101
99
  prerelease: false
102
- name: wlang
100
+ - !ruby/object:Gem::Dependency
103
101
  type: :development
104
- version_requirements: &id006 !ruby/object:Gem::Requirement
102
+ requirement: &id006 !ruby/object:Gem::Requirement
105
103
  none: false
106
104
  requirements:
107
105
  - - ~>
@@ -112,12 +110,12 @@ dependencies:
112
110
  - 10
113
111
  - 1
114
112
  version: 0.10.1
115
- requirement: *id006
116
- - !ruby/object:Gem::Dependency
117
- prerelease: false
118
113
  name: wlang
114
+ version_requirements: *id006
115
+ prerelease: false
116
+ - !ruby/object:Gem::Dependency
119
117
  type: :runtime
120
- version_requirements: &id007 !ruby/object:Gem::Requirement
118
+ requirement: &id007 !ruby/object:Gem::Requirement
121
119
  none: false
122
120
  requirements:
123
121
  - - ~>
@@ -128,12 +126,12 @@ dependencies:
128
126
  - 10
129
127
  - 1
130
128
  version: 0.10.1
131
- requirement: *id007
132
- - !ruby/object:Gem::Dependency
129
+ name: wlang
130
+ version_requirements: *id007
133
131
  prerelease: false
134
- name: quickl
132
+ - !ruby/object:Gem::Dependency
135
133
  type: :runtime
136
- version_requirements: &id008 !ruby/object:Gem::Requirement
134
+ requirement: &id008 !ruby/object:Gem::Requirement
137
135
  none: false
138
136
  requirements:
139
137
  - - ~>
@@ -144,12 +142,12 @@ dependencies:
144
142
  - 2
145
143
  - 0
146
144
  version: 0.2.0
147
- requirement: *id008
148
- - !ruby/object:Gem::Dependency
145
+ name: quickl
146
+ version_requirements: *id008
149
147
  prerelease: false
150
- name: highline
148
+ - !ruby/object:Gem::Dependency
151
149
  type: :runtime
152
- version_requirements: &id009 !ruby/object:Gem::Requirement
150
+ requirement: &id009 !ruby/object:Gem::Requirement
153
151
  none: false
154
152
  requirements:
155
153
  - - ~>
@@ -160,8 +158,10 @@ dependencies:
160
158
  - 6
161
159
  - 0
162
160
  version: 1.6.0
163
- requirement: *id009
164
- description: Noe is a tool that generates project skeletons from predefined templates. A template is designed for a specific product (a ruby library, a static or dynamic web site, ...). Noe instantiates templates and helps you maintaining your product via meta-information provided by a .noespec yaml file. In contrast to other tools, Noe is not specific to certain kinds of products. Writing your own template is possible and even simple!
161
+ name: highline
162
+ version_requirements: *id009
163
+ prerelease: false
164
+ description: Noe is a tool that generates project skeletons from predefined templates. A template is designed for a specific product (a ruby library, a static or dynamic web site, ...). Noe instantiates templates and helps you maintaining your product via meta-information provided by a .noespec yaml file. In contrast to other tools, Noe is not specific to certain kinds of products. Even if Noe comes bundled with a default template to develop gem libraries, writing your own template is possible and even simple!
165
165
  email:
166
166
  - blambeau@gmail.com
167
167
  executables:
@@ -173,74 +173,69 @@ extra_rdoc_files:
173
173
  - CHANGELOG.md
174
174
  - LICENCE.md
175
175
  files:
176
- - ./bin/noe
177
- - ./CHANGELOG.md
178
- - ./Gemfile
179
- - ./Gemfile.lock
180
- - ./lib/noe/commons.rb
181
- - ./lib/noe/config.rb
182
- - ./lib/noe/config.yaml
183
- - ./lib/noe/ext/array.rb
184
- - ./lib/noe/ext/hash.rb
185
- - ./lib/noe/go.rb
186
- - ./lib/noe/help.rb
187
- - ./lib/noe/install.rb
188
- - ./lib/noe/list.rb
189
- - ./lib/noe/loader.rb
190
- - ./lib/noe/main.rb
191
- - ./lib/noe/prepare.rb
192
- - ./lib/noe/show_spec.rb
193
- - ./lib/noe/template.rb
194
- - ./lib/noe.rb
195
- - ./LICENCE.md
196
- - ./Manifest.txt
197
- - ./noe.gemspec
198
- - ./noe.noespec
199
- - ./Rakefile
200
- - ./README.md
201
- - ./spec/ext/hash/methodize_spec.rb
202
- - ./spec/noe_spec.rb
203
- - ./spec/spec_helper.rb
204
- - ./spec/template/entry/infer_wlang_dialect_spec.rb
205
- - ./spec/template/entry/relocate_spec.rb
206
- - ./spec/template/entry/rename_one_spec.rb
207
- - ./tasks/debug_mail.rake
208
- - ./tasks/debug_mail.txt
209
- - ./tasks/gem.rake
210
- - ./tasks/spec_test.rake
211
- - ./tasks/unit_test.rake
212
- - ./tasks/yard.rake
213
- - ./templates/ruby/CHANGELOG.md
214
- - ./templates/ruby/noespec.yaml
215
- - ./templates/ruby/README.md
216
- - ./templates/ruby/short.yaml
217
- - ./templates/ruby/src/__lower__.gemspec
218
- - ./templates/ruby/src/CHANGELOG.md
219
- - ./templates/ruby/src/Gemfile
220
- - ./templates/ruby/src/lib/__lower__/loader.rb
221
- - ./templates/ruby/src/lib/__lower__.rb
222
- - ./templates/ruby/src/LICENCE.md
223
- - ./templates/ruby/src/Manifest.txt
224
- - ./templates/ruby/src/Rakefile
225
- - ./templates/ruby/src/README.md
226
- - ./templates/ruby/src/spec/__lower___spec.rb
227
- - ./templates/ruby/src/spec/spec_helper.rb
228
- - ./templates/ruby/src/tasks/debug_mail.rake
229
- - ./templates/ruby/src/tasks/debug_mail.txt
230
- - ./templates/ruby/src/tasks/gem.rake
231
- - ./templates/ruby/src/tasks/spec_test.rake
232
- - ./templates/ruby/src/tasks/unit_test.rake
233
- - ./templates/ruby/src/tasks/yard.rake
176
+ - .gemtest
177
+ - bin/noe
178
+ - CHANGELOG.md
179
+ - Gemfile
180
+ - Gemfile.lock
181
+ - lib/noe/commons.rb
182
+ - lib/noe/config.rb
183
+ - lib/noe/config.yaml
184
+ - lib/noe/ext/array.rb
185
+ - lib/noe/ext/hash.rb
186
+ - lib/noe/go.rb
187
+ - lib/noe/help.rb
188
+ - lib/noe/install.rb
189
+ - lib/noe/list.rb
190
+ - lib/noe/loader.rb
191
+ - lib/noe/main.rb
192
+ - lib/noe/prepare.rb
193
+ - lib/noe/show_spec.rb
194
+ - lib/noe/template.rb
195
+ - lib/noe/version.rb
196
+ - lib/noe.rb
197
+ - LICENCE.md
198
+ - Manifest.txt
199
+ - noe.gemspec
200
+ - noe.noespec
201
+ - Rakefile
202
+ - README.md
234
203
  - spec/ext/hash/methodize_spec.rb
235
204
  - spec/noe_spec.rb
236
205
  - spec/spec_helper.rb
237
206
  - spec/template/entry/infer_wlang_dialect_spec.rb
238
207
  - spec/template/entry/relocate_spec.rb
239
208
  - spec/template/entry/rename_one_spec.rb
240
- - bin/noe
241
- - README.md
242
- - CHANGELOG.md
243
- - LICENCE.md
209
+ - tasks/debug_mail.rake
210
+ - tasks/debug_mail.txt
211
+ - tasks/gem.rake
212
+ - tasks/spec_test.rake
213
+ - tasks/unit_test.rake
214
+ - tasks/yard.rake
215
+ - templates/ruby/CHANGELOG.md
216
+ - templates/ruby/noespec.yaml
217
+ - templates/ruby/README.md
218
+ - templates/ruby/short.yaml
219
+ - templates/ruby/src/__lower__.gemspec
220
+ - templates/ruby/src/CHANGELOG.md
221
+ - templates/ruby/src/Gemfile
222
+ - templates/ruby/src/lib/__lower__/loader.rb
223
+ - templates/ruby/src/lib/__lower__/version.rb
224
+ - templates/ruby/src/lib/__lower__.rb
225
+ - templates/ruby/src/LICENCE.md
226
+ - templates/ruby/src/Manifest.txt
227
+ - templates/ruby/src/Rakefile
228
+ - templates/ruby/src/README.md
229
+ - templates/ruby/src/spec/__lower___spec.rb
230
+ - templates/ruby/src/spec/spec_helper.rb
231
+ - templates/ruby/src/tasks/debug_mail.rake
232
+ - templates/ruby/src/tasks/debug_mail.txt
233
+ - templates/ruby/src/tasks/gem.rake
234
+ - templates/ruby/src/tasks/spec_test.rake
235
+ - templates/ruby/src/tasks/unit_test.rake
236
+ - templates/ruby/src/tasks/yard.rake
237
+ - templates/ruby/src/.gemtest
238
+ - templates/ruby/src/.gitignore
244
239
  has_rdoc: true
245
240
  homepage: http://github.com/blambeau/noe
246
241
  licenses: []
@@ -279,7 +274,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
279
274
  requirements: []
280
275
 
281
276
  rubyforge_project:
282
- rubygems_version: 1.4.2
277
+ rubygems_version: 1.5.0
283
278
  signing_key:
284
279
  specification_version: 3
285
280
  summary: Noe is a simple, general-purpose and extensible skeleton generator from project templates