Sha256: 592679f82e40861ff7d7d12713e1ec3a3c562772d2bb1d31c6c5d9da788d4d10
Contents?: true
Size: 1.74 KB
Versions: 6
Compression:
Stored size: 1.74 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'HDLRuby/version' Gem::Specification.new do |spec| spec.name = "HDLRuby" spec.version = HDLRuby::VERSION spec.authors = ["Lovic Gauthier"] spec.email = ["lovic@ariake-nct.ac.jp"] spec.summary = %q{HDLRuby is a library for describing and simulating digital electronic systems.} spec.description = %q{HDLRuby is a library for describing and simulating digital electronic systems. With this library it will possible to describe synthesizable hardware using all the features of the Ruby language, e.g., object orientation, duck typing, closure. This library is also usable through irb for interactive design and simulation.} spec.homepage = "https://github.com/civol/HDLRuby" spec.license = "MIT" # if spec.respond_to?(:metadata) then # spec.metadata["source_code_uri"] = "https://github.com/civol/HDLRuby" # end spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.extra_rdoc_files = ["README.md"] spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } # spec.require_paths = ["lib"] spec.require_paths = ["lib","lib/HDLRuby"] spec.extensions = %w[ext/hruby_sim/extconf.rb] spec.required_ruby_version = '>= 2.0' # spec.add_development_dependency "bundler", "~> 2.0.1" # spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "bundler", ">= 2.0.1" spec.add_development_dependency "rake", ">= 10.0" spec.add_development_dependency "rake-compiler", ">= 1.0" # spec.add_development_dependency "minitest", "~> 5.0" end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
HDLRuby-3.4.0 | HDLRuby.gemspec |
HDLRuby-3.3.4 | HDLRuby.gemspec |
HDLRuby-3.3.3 | HDLRuby.gemspec |
HDLRuby-3.3.1 | HDLRuby.gemspec |
HDLRuby-3.3.0 | HDLRuby.gemspec |
HDLRuby-3.2.0 | HDLRuby.gemspec |