-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathhoroscope.gemspec
25 lines (22 loc) · 1.06 KB
/
horoscope.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'horoscope/version'
Gem::Specification.new do |gem|
gem.name = 'horoscope'
gem.version = Horoscope::VERSION
gem.authors = ['bragboy']
gem.email = ['[email protected]']
gem.description = %q{Calculate the horoscope of a person given the birth date and time}
gem.summary = %q{Calculate the accurate horoscope of a person using Vedic Horoscope technique given the birth time and birth place of the subject.}
gem.homepage = 'https://github.com/bragboy/horoscope'
gem.license = 'MIT'
gem.add_development_dependency 'rspec', '~>3.3'
gem.add_development_dependency 'pry-byebug', '~>3.3'
gem.add_dependency 'rmagick', '~>2.15'
gem.add_dependency 'erubis', '~>2.7'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
end