-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverilog.gemspec
More file actions
24 lines (19 loc) · 794 Bytes
/
verilog.gemspec
File metadata and controls
24 lines (19 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
NAME="verilog"
require File.join( File.dirname(__FILE__), 'lib', NAME )
spec = Gem::Specification.new do |s|
s.name = NAME
s.version = Verilog::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'Helpers for working with verilog files'
s.homepage = "http://amaras-tech.co.uk/software/#{NAME}"
s.authors = "Morgan Prior"
s.email = "#{NAME}_gem@amaras-tech.co.uk"
s.description = %{File helpers with specific functions for Verilog HDL}
s.files = [Dir.glob("LICENSE.rtf")]
s.files += Dir.glob("README.md")
s.files += Dir.glob("HISTORY.md")
s.files += Dir.glob("Rakefile")
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("spec/**/*")
s.has_rdoc = false
end