-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathroxy.gemspec
20 lines (15 loc) · 872 Bytes
/
roxy.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |s|
s.name = "roxy"
s.version = "0.2.1"
s.date = "2008-11-22"
s.summary = "A Ruby library for quickly creating proxy objects."
s.email = "[email protected]"
s.homepage = "http://github.com/yfactorial/roxy"
s.description = "A Ruby library for quickly creating proxy objects."
s.authors = ["Ryan Daigle"]
s.has_rdoc = true
s.rdoc_options = ['--main', 'README.textile']
s.rdoc_options << '--inline-source' << '--charset=UTF-8'
s.extra_rdoc_files = ['README.textile', 'Rakefile', 'LICENSE', 'CHANGELOG']
s.files = %w(README.textile Rakefile LICENSE CHANGELOG init.rb lib lib/roxy lib/roxy.rb lib/roxy/moxie.rb lib/roxy/proxy.rb spec spec/abstract_spec.rb spec/proxy_spec.rb spec/roxy_spec.rb spec/family_person_spec.rb spec/fixtures spec/fixtures/person.rb spec/fixtures/family_person.rb)
end