forked from gocardless/business
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbusiness.gemspec
25 lines (21 loc) · 933 Bytes
/
business.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
# coding: utf-8
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "business/version"
Gem::Specification.new do |spec|
spec.name = "business"
spec.version = Business::VERSION
spec.authors = ["Harry Marr"]
spec.email = ["developers@gocardless.com"]
spec.summary = "Date calculations based on business calendars"
spec.description = "Date calculations based on business calendars"
spec.homepage = "https://github.com/gocardless/business"
spec.licenses = ["MIT"]
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.require_paths = ["lib"]
spec.add_development_dependency "gc_ruboconfig", "~> 3.6.0"
spec.add_development_dependency "rspec", "~> 3.1"
spec.add_development_dependency "rubocop", "~> 1.48.1"
spec.metadata["rubygems_mfa_required"] = "true"
end