-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathorigen_sim.gemspec
30 lines (26 loc) · 1.29 KB
/
origen_sim.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
# coding: utf-8
config = File.expand_path('../config', __FILE__)
require "#{config}/version"
Gem::Specification.new do |spec|
spec.name = "origen_sim"
spec.version = OrigenSim::VERSION
spec.authors = ["Stephen McGinty"]
spec.email = ["[email protected]"]
spec.summary = "Plugin that provides a testbench environment to simulate Origen test patterns"
#spec.homepage = "http://origen-sdk.org/origen_sim"
spec.required_ruby_version = '>= 2'
spec.required_rubygems_version = '>= 1.8.11'
# Only the files that are hit by these wildcards will be included in the
# packaged gem, the default should hit everything in most cases but this will
# need to be added to if you have any custom directories
spec.files = Dir["lib/**/*.rb", "templates/**/*", "config/**/*.rb",
"bin/*", "lib/tasks/**/*.rake", "pattern/**/*.rb",
"program/**/*.rb", "ext/**/*"
]
spec.executables = []
spec.require_paths = ["lib"]
# Add any gems that your plugin needs to run within a host application
spec.add_runtime_dependency "origen", ">= 0.44.0"
spec.add_runtime_dependency "origen_testers", ">= 0.21.0"
spec.add_runtime_dependency "origen_verilog", ">= 0.6.2"
end