File: gemspec

package info (click to toggle)
libyadis-ruby 0.3.4-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 440 kB
  • ctags: 372
  • sloc: ruby: 2,122; sh: 12; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 823 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'rubygems'

SPEC = Gem::Specification.new do |s|
  s.name = `cat admin/library-name`.strip
  s.version = `darcs changes --tags= | awk '$1 == "tagged" { print $2 }' | head -n 1`.strip
  s.author = 'Brian Ellin (JanRain, Inc), Eugene Eric Kim (Blue Oxen Associates)'
  s.email = 'brian@janrian.com, eekim@blueoxen.com'
  s.homepage = 'http://www.openidenabled.com/yadis/libraries/ruby'
  s.platform = Gem::Platform::RUBY
  s.summary = 'A library for performing Yadis service discovery'
  files = Dir.glob("{examples,lib,test}/**/*")
  s.files = files.delete_if {|f| f.include?('_darcs') || f.include?('admin')}
  s.require_path = 'lib'
  s.autorequire  = 'yadis'
  s.test_file = 'test/runtests.rb'
  s.has_rdoc = true
  s.extra_rdoc_files = ['README','INSTALL','COPYING']
  s.rdoc_options << '--main' << 'README'
end