-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
time_for_a_boolean.gemspec
34 lines (29 loc) · 1.07 KB
/
time_for_a_boolean.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
30
31
32
33
34
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "time_for_a_boolean/version"
Gem::Specification.new do |spec|
spec.name = "time_for_a_boolean"
spec.version = TimeForABoolean::VERSION
spec.authors = ["Caleb Hearth"]
spec.email = ["[email protected]"]
spec.description = <<-DESCRIPTION
Use timestamp values to represent boolean data such as deleted, published,
or subscribed.
DESCRIPTION
spec.summary = "Back boolean values with timestamps"
spec.homepage = "https://github.com/calebhearth/time_for_a_boolean"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.test_files = spec.files.grep(%r{^spec/})
spec.require_paths = ["lib"]
spec.metadata = {
"funding-uri" => "https://github.com/sponsors/calebhearth"
}
spec.add_dependency "activerecord"
spec.add_dependency "railties"
spec.add_development_dependency "bundler"
spec.add_development_dependency "coveralls"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
end