forked from nickyp/actionwebservice
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathactionwebservice.gemspec
31 lines (27 loc) · 1.49 KB
/
actionwebservice.gemspec
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
## --------------------------------------------------------------------------------
## NOTE:
## This file is not really used at the moment - the *REAL* copy is inside
## the Rakefile and invoked via 'rake package'
## --------------------------------------------------------------------------------
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'dps-actionwebservice'
s.summary = "Web service support for Action Pack."
s.description = %q{Adds WSDL/SOAP and XML-RPC web service support to Action Pack}
s.version = "3.0.5.#{Time.now.strftime('%Y%m%d%H%M%S')}"
s.author = "Laurence A. Lee, Leon Breedt, Kent Sibilev"
s.homepage = "http://wiki.github.com/rubyjedi/actionwebservice/"
s.add_dependency('activesupport', '~> 3.0.5')
s.add_dependency('actionpack', '~> 3.0.5')
s.add_dependency('activerecord', '~> 3.0.5')
s.has_rdoc = true
s.requirements << 'none'
s.require_path = 'lib'
s.autorequire = 'actionwebservice'
s.files = [ "Rakefile", "setup.rb", "README", "TODO", "CHANGELOG", "MIT-LICENSE" ]
s.files = s.files + Dir.glob( "examples/**/*" ).delete_if { |item| item.match( /\.(svn|git)/ ) }
s.files = s.files + Dir.glob( "lib/**/*" ).delete_if { |item| item.match( /\.(svn|git)/ ) }
s.files = s.files + Dir.glob( "test/**/*" ).delete_if { |item| item.match( /\.(svn|git)/ ) }
s.files = s.files + Dir.glob( "generators/**/*" ).delete_if { |item| item.match( /\.(svn|git)/ ) }
end