@@ -2,17 +2,19 @@ $:.push File.expand_path("../lib", __FILE__)
2
2
require "lambchop/version"
3
3
4
4
Gem ::Specification . new do |s |
5
- s . name = 'lambchop'
6
- s . version = Lambchop . version
7
- s . platform = Gem ::Platform ::RUBY
8
- s . summary = "Create puppet DSL from arbitrary files."
9
- s . description = "You shouldn't have to learn Puppet's DSL just to generate a manifest for a single config file. Lambchop automates that for you."
10
- s . authors = [ "Erik M Jacobs" ]
11
-
12
- s . homepage = 'https://github.com/thoraxe/lambchop'
13
- s . files = [ "lib/lambchop.rb" , "lib/util/parser.rb" ]
14
- s . license = 'GPL-3.0'
15
- s . require_path = 'lib'
5
+ s . name = 'lambchop'
6
+ s . version = Lambchop . version
7
+ s . platform = Gem ::Platform ::RUBY
8
+ s . summary = "Create puppet DSL from arbitrary files."
9
+ s . description = "You shouldn't have to learn Puppet's DSL just to generate a manifest for a single config file. Lambchop automates that for you."
10
+ s . authors = [ "Erik M Jacobs" ]
11
+
12
+ s . homepage = 'https://github.com/thoraxe/lambchop'
13
+ s . files = Dir [ '{lib,test}/**/*' , 'README*' ]
14
+ s . test_files = Dir [ 'test/**/*' ]
15
+ s . extra_rdoc_files = Dir [ 'README*' ]
16
+ s . license = 'GPL-3.0'
17
+ s . require_path = 'lib'
16
18
s . add_development_dependency "rspec"
17
19
s . add_development_dependency "rake"
18
20
end
0 commit comments