Sha256: dfc94367d35599ed7ebf5bfc8d6aa39354b0dd114494dfc496217ed8e6c07a30

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'calc_sun'
  spec.version       = CalcSun::VERSION
  spec.author        = 'Douglas Allen'
  spec.email         = ['kb9agt@gmail.com']
  spec.summary       = 'Calculates Sun Times ea. rise, noon, set'
  spec.description   = 'supply the date yyyy-mm-dd, latitude decimal, and
                        longitude decimal in the calls to each method
                        rise(date, lat, lon),
                        noon(date, lat, lon), and
                        set(date, lat, lon)'
  spec.homepage      = 'https://github.com/DouglasAllen/calc_sun'
  spec.license       = 'MIT'
  require 'English'
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  require 'rake'
  spec.extensions << 'ext/calc_sun/extconf.rb' << 'ext/side_time/extconf.rb'
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']
  spec.platform = Gem::Platform::RUBY
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
calc_sun-1.2.7 calc_sun.gemspec