Sha256: 95f0d5502cfc0e248ca1b74740c23d96c6751d3b3d76851c995bea132d4d9dca

Contents?: true

Size: 1.31 KB

Versions: 3

Compression:

Stored size: 1.31 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ecic/version'

Gem::Specification.new do |spec|
  spec.name          = "ecic"
  spec.version       = Ecic::VERSION
  spec.authors       = ["Torben Fox Jacobsen"]
  spec.email         = ["ecic@ic-factory.com"]
  spec.licenses       = ['LGPL-3.0']
  spec.summary       = %q{Easy-IC : provides a framework for ASIC and FPGA projects that favors convention over configuration.}
  spec.description   = %q{This gem allows you to easily create a new ASIC/FPGA project with a file structure and support tools that ensures consistency between your projects and gets you up to speed in no time. To create a new project simply type 'ecic new PATH'.}
  spec.homepage      = "https://github.com/ic-factory/ecic"

  spec.files         = `git ls-files`.split($/)
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_dependency "thor"
  spec.add_dependency "colorize"
  spec.add_dependency "rake"
  spec.add_dependency "activesupport"

  spec.add_development_dependency "bundler"
  spec.add_development_dependency "byebug"
  spec.add_development_dependency "rspec"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ecic-0.2.1 ecic.gemspec
ecic-0.2.0 ecic.gemspec
ecic-0.1.0 ecic.gemspec