judofyr / camping

the 4k pocket full-of-gags web microframework

This URL has Read+Write access

camping / camping.gemspec
100644 31 lines (30 sloc) 1.079 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
28
29
30
31
require 'rubygems'
spec = Gem::Specification.new do |s|
  s.name = 'camping'
  s.version = "1.2"
  s.platform = Gem::Platform::RUBY
  s.summary = "miniature rails for stay-at-home moms"
  s.add_dependency('activerecord')
  s.add_dependency('markaby')
  s.add_dependency('metaid')
  s.has_rdoc = true
  s.files = ['README', 'examples/**/*', 'lib/**/*', 'bin/**/*'].collect do |dirglob|
                Dir.glob(dirglob)
            end.flatten.delete_if {|item| item.include?(".svn")}
  s.extra_rdoc_files = ['README']
  s.rdoc_options << "--title" << "Camping Documentation" <<
                    "--line-numbers" <<
                    "--inline-source" <<
                    "--main" << "README" <<
                    "--exclude" << "^examples\/" <<
                    "--exclude" << "lib/camping.rb"
  s.require_path = 'lib'
  s.autorequire = 'camping'
  s.author = "why the lucky stiff"
  s.email = "why@ruby-lang.org"
  s.rubyforge_project = "camping"
  s.homepage = "http://code.whytheluckystiff.net/camping/"
end
if $0==__FILE__
  Gem::Builder.new(spec).build
end