Sha256: 7d7c903543130408ab9b015a2ce03e31e3287a7b7eccc3673f99a463dea7fba0

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "movingsign_api"
  spec.version       = MovingsignApi::VERSION
  spec.authors       = ["Eric Webb"]
  spec.email         = ["opensource@collectivegenius.net"]
  spec.description   = "MovingSign Communication Protocol V2.1 Implementation in Ruby"
  spec.summary       = "MovingSign Communication Protocol V2.1 Implementation in Ruby"
  spec.homepage      = ""
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
      .reject { |path| path.match /\A\.idea\//  }     # Ignore .idea/ IntelliJ project directory
      .reject { |path| path.match /\A[^\/]+\.iml/ }   # Ignore *.iml IntelliJ module file
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.3"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec", "~> 2.14"
  spec.add_development_dependency "yard", "0.8.7.3"
  spec.add_development_dependency "wwtd"

  spec.add_runtime_dependency 'serialport', '~> 1.3'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
movingsign_api-0.0.1 movingsign_api.gemspec