djanowski / joe

Thor tasks for dealing with gem packaging and releasing to RubyForge.

This URL has Read+Write access

joe / sample.gemspec.erb
100644 27 lines (22 sloc) 0.505 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Read about everything you can do with your gemspec:
# http://rubygems.org/read/chapter/20
Gem::Specification.new do |s|
  s.name = ""
  s.version = "0.0.1"
  s.summary = ""
  s.date = ""
  s.authors = ""
  s.email = ""
  s.homepage = ""
 
  s.files = <%= Dir[
    "LICENSE",
    "README*",
    "Rakefile",
    "Thorfile",
    "lib/**/*.rb",
    "test/**/*.*"
  ].inspect %>
 
  s.require_paths = ['lib']
 
  # s.add_dependency("gem name", "gem version")
 
  s.has_rdoc = false
end