noe 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gemtest +0 -0
- data/CHANGELOG.md +19 -1
- data/Gemfile.lock +1 -3
- data/Manifest.txt +4 -1
- data/lib/noe.rb +1 -3
- data/lib/noe/ext/hash.rb +6 -3
- data/lib/noe/version.rb +14 -0
- data/noe.gemspec +6 -7
- data/noe.noespec +5 -4
- data/tasks/debug_mail.rake +1 -0
- data/tasks/unit_test.rake +2 -1
- data/templates/ruby/CHANGELOG.md +10 -0
- data/templates/ruby/noespec.yaml +8 -2
- data/templates/ruby/short.yaml +1 -1
- data/templates/ruby/src/.gemtest +0 -0
- data/templates/ruby/src/.gitignore +6 -0
- data/templates/ruby/src/Manifest.txt +1 -0
- data/templates/ruby/src/__lower__.gemspec +5 -6
- data/templates/ruby/src/lib/__lower__.rb +1 -2
- data/templates/ruby/src/lib/__lower__/version.rb +14 -0
- data/templates/ruby/src/tasks/debug_mail.rake +1 -0
- data/templates/ruby/src/tasks/unit_test.rake +2 -1
- metadata +99 -104
data/.gemtest
ADDED
File without changes
|
data/CHANGELOG.md
CHANGED
@@ -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/
|
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
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
noe (1.
|
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)
|
data/Manifest.txt
CHANGED
data/lib/noe.rb
CHANGED
data/lib/noe/ext/hash.rb
CHANGED
@@ -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 #{
|
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
|
data/lib/noe/version.rb
ADDED
data/noe.gemspec
CHANGED
@@ -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::
|
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.
|
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
|
-
|
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
|
#
|
data/noe.noespec
CHANGED
@@ -1,19 +1,20 @@
|
|
1
1
|
template-info:
|
2
2
|
name: ruby
|
3
|
-
version: 1.
|
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.
|
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.
|
16
|
-
|
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:
|
data/tasks/debug_mail.rake
CHANGED
data/tasks/unit_test.rake
CHANGED
@@ -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
|
|
data/templates/ruby/CHANGELOG.md
CHANGED
@@ -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
|
data/templates/ruby/noespec.yaml
CHANGED
@@ -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.
|
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:
|
103
|
+
safe-override: false
|
98
104
|
tasks/debug_mail.rake:
|
99
105
|
description: configuration file for 'rake debug_mail'
|
100
106
|
safe-override: true
|
data/templates/ruby/short.yaml
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
# Don't remove this entry!
|
5
5
|
template-info:
|
6
6
|
name: "!{template_name}"
|
7
|
-
version: 1.
|
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
|
@@ -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
|
5
|
-
$version = !{upper}::
|
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
|
-
|
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
|
#
|
@@ -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
|
@@ -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:
|
4
|
+
hash: 27
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
|
-
-
|
8
|
+
- 3
|
9
9
|
- 0
|
10
|
-
version: 1.
|
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-
|
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
|
-
|
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
|
-
|
37
|
-
|
34
|
+
name: rake
|
35
|
+
version_requirements: *id001
|
38
36
|
prerelease: false
|
39
|
-
|
37
|
+
- !ruby/object:Gem::Dependency
|
40
38
|
type: :development
|
41
|
-
|
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
|
-
|
52
|
-
|
49
|
+
name: bundler
|
50
|
+
version_requirements: *id002
|
53
51
|
prerelease: false
|
54
|
-
|
52
|
+
- !ruby/object:Gem::Dependency
|
55
53
|
type: :development
|
56
|
-
|
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
|
-
|
68
|
-
|
65
|
+
name: rspec
|
66
|
+
version_requirements: *id003
|
69
67
|
prerelease: false
|
70
|
-
|
68
|
+
- !ruby/object:Gem::Dependency
|
71
69
|
type: :development
|
72
|
-
|
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
|
-
|
84
|
-
|
81
|
+
name: yard
|
82
|
+
version_requirements: *id004
|
85
83
|
prerelease: false
|
86
|
-
|
84
|
+
- !ruby/object:Gem::Dependency
|
87
85
|
type: :development
|
88
|
-
|
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
|
-
|
100
|
-
|
97
|
+
name: bluecloth
|
98
|
+
version_requirements: *id005
|
101
99
|
prerelease: false
|
102
|
-
|
100
|
+
- !ruby/object:Gem::Dependency
|
103
101
|
type: :development
|
104
|
-
|
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
|
-
|
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
|
-
|
132
|
-
|
129
|
+
name: wlang
|
130
|
+
version_requirements: *id007
|
133
131
|
prerelease: false
|
134
|
-
|
132
|
+
- !ruby/object:Gem::Dependency
|
135
133
|
type: :runtime
|
136
|
-
|
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
|
-
|
148
|
-
|
145
|
+
name: quickl
|
146
|
+
version_requirements: *id008
|
149
147
|
prerelease: false
|
150
|
-
|
148
|
+
- !ruby/object:Gem::Dependency
|
151
149
|
type: :runtime
|
152
|
-
|
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
|
-
|
164
|
-
|
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
|
-
-
|
177
|
-
-
|
178
|
-
-
|
179
|
-
-
|
180
|
-
-
|
181
|
-
-
|
182
|
-
-
|
183
|
-
-
|
184
|
-
-
|
185
|
-
-
|
186
|
-
-
|
187
|
-
-
|
188
|
-
-
|
189
|
-
-
|
190
|
-
-
|
191
|
-
-
|
192
|
-
-
|
193
|
-
-
|
194
|
-
-
|
195
|
-
-
|
196
|
-
-
|
197
|
-
-
|
198
|
-
-
|
199
|
-
-
|
200
|
-
-
|
201
|
-
-
|
202
|
-
-
|
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
|
-
-
|
241
|
-
-
|
242
|
-
-
|
243
|
-
-
|
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.
|
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
|