Sha256: 911e2e374741eb4d04fa3d2d009038d855790e3c8fb9f893c694d3578c59617c

Contents?: true

Size: 1.86 KB

Versions: 6

Compression:

Stored size: 1.86 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "engineer_calculator/version"

Gem::Specification.new do |spec|
  spec.name          = "engineer_calculator"
  spec.version       = Engineer::VERSION
  spec.authors       = ["Azeroyear"]
  spec.email         = ["eastazy@gmail.com"]

  spec.summary       = %q{This gem can calculate the calculation which included unit.}
  spec.description   = %q{This gem can calculate the calculation which included unit.}
  spec.homepage      = "https://github.com/AZeroyear/engineering_calculator"
  spec.license       = "MIT"

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  # if spec.respond_to?(:metadata)
  #   spec.metadata["allowed_push_host"] = "Set to 'http://mygemserver.com'"
  #
  #   spec.metadata["homepage_uri"] = spec.homepage
  #   spec.metadata["source_code_uri"] = "https://github.com/AZeroyear/engineering_calculator"
  #   spec.metadata["changelog_uri"] = "https://github.com/AZeroyear/engineering_calculator"
  # else
  #   raise "RubyGems 2.0 or newer is required to protect against " \
  #     "public gem pushes."
  # end

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.16"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
engineer_calculator-2.0.2 engineering_calculator.gemspec
engineer_calculator-2.0.1 engineering_calculator.gemspec
engineer_calculator-2.0.0 engineering_calculator.gemspec
engineer_calculator-1.1.0 engineering_calculator.gemspec
engineer_calculator-1.0.1 engineering_calculator.gemspec
engineer_calculator-1.0.0 engineering_calculator.gemspec