-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathzodiac.gemspec
29 lines (25 loc) · 1.18 KB
/
zodiac.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
26
27
28
29
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'zodiac/version'
Gem::Specification.new do |s|
s.name = 'zodiac'
s.version = Zodiac::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Vsevolod Romashov']
s.email = ['[email protected]']
s.homepage = 'http://7even.github.com/zodiac'
s.summary = %q{Zodiac sign calculator for any date}
s.description = %q{Adds methods for getting a zodiac sign from any Date/Time object containing a date of birth, and can also extend ActiveRecord::Base adding some handy instance and class methods (for searching by a given zodiac sign and more).}
s.add_dependency 'funtimes'
s.add_dependency 'i18n'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'activerecord', '~> 3'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'pry'
s.add_development_dependency 'awesome_print'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
end