forked from bullet-train-pro/bullet_train-billing-usage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bullet_train-billing-usage.gemspec
31 lines (25 loc) · 1.15 KB
/
bullet_train-billing-usage.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
require_relative "lib/bullet_train/billing/usage/version"
Gem::Specification.new do |spec|
spec.name = "bullet_train-billing-usage"
spec.version = BulletTrain::Billing::Usage::VERSION
spec.authors = ["Andrew Culver"]
spec.email = ["andrew.culver@gmail.com"]
spec.homepage = "https://github.com/bullet-train-co/bullet_train-billing-usage"
spec.summary = "Bullet Train Billing Usage"
spec.description = spec.summary
spec.license = "Nonstandard"
spec.metadata["allowed_push_host"] = "https://gem.fury.io/bullettrain"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 6.0"
spec.add_dependency "bullet_train"
spec.add_dependency "bullet_train-billing"
spec.add_dependency "verbs"
spec.add_development_dependency "pg", "~> 1.4.5"
spec.add_development_dependency "factory_bot_rails", "~> 6.2.0"
spec.add_development_dependency "standard"
end