generator_extensions 0.3.0 → 0.3.1
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/Rakefile +6 -1
- data/VERSION +1 -1
- data/generator_extensions.gemspec +6 -2
- metadata +7 -2
data/Rakefile
CHANGED
|
@@ -6,7 +6,12 @@ begin
|
|
|
6
6
|
Jeweler::Tasks.new do |gemspec|
|
|
7
7
|
gemspec.name = "generator_extensions"
|
|
8
8
|
gemspec.summary = 'Functions that make it easier to write a Rails generator.'
|
|
9
|
-
gemspec.description =
|
|
9
|
+
gemspec.description = <<EOD
|
|
10
|
+
Generators can be a bit of a pain to write. This little gem smooths out
|
|
11
|
+
some rough edges, by letting you mirror an entire directory in one line,
|
|
12
|
+
and providing convenience functions to add entire blocks of code
|
|
13
|
+
to pre-existing configuration files.
|
|
14
|
+
EOD
|
|
10
15
|
gemspec.email = 'heymarcel@gmail.com'
|
|
11
16
|
gemspec.homepage = 'http://github.com/heymarcel/generator_extensions'
|
|
12
17
|
gemspec.authors = ['Marcel Levy']
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.1
|
|
@@ -5,12 +5,16 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{generator_extensions}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Marcel Levy"]
|
|
12
12
|
s.date = %q{2009-12-22}
|
|
13
|
-
s.description = %q{
|
|
13
|
+
s.description = %q{Generators can be a bit of a pain to write. This little gem smooths out
|
|
14
|
+
some rough edges, by letting you mirror an entire directory in one line,
|
|
15
|
+
and providing convenience functions to add entire blocks of code
|
|
16
|
+
to pre-existing configuration files.
|
|
17
|
+
}
|
|
14
18
|
s.email = %q{heymarcel@gmail.com}
|
|
15
19
|
s.extra_rdoc_files = [
|
|
16
20
|
"LICENSE",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: generator_extensions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marcel Levy
|
|
@@ -13,7 +13,12 @@ date: 2009-12-22 00:00:00 -08:00
|
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
16
|
-
description:
|
|
16
|
+
description: |
|
|
17
|
+
Generators can be a bit of a pain to write. This little gem smooths out
|
|
18
|
+
some rough edges, by letting you mirror an entire directory in one line,
|
|
19
|
+
and providing convenience functions to add entire blocks of code
|
|
20
|
+
to pre-existing configuration files.
|
|
21
|
+
|
|
17
22
|
email: heymarcel@gmail.com
|
|
18
23
|
executables: []
|
|
19
24
|
|