Sha256: 556d28718fe7cdfe4cd9e85cbb9425315862b8e373b661bdfe7b9b7ab7d80863
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 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' 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.6 | calc_sun.gemspec |