-
Notifications
You must be signed in to change notification settings - Fork 130
/
line-bot-api.gemspec
26 lines (21 loc) · 1.08 KB
/
line-bot-api.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'line/bot/api/version'
Gem::Specification.new do |spec|
spec.name = "line-bot-api"
spec.version = Line::Bot::API::VERSION
spec.authors = ["LINE Corporation"]
spec.description = "Line::Bot::API - SDK of the LINE Messaging API for Ruby"
spec.summary = "SDK of the LINE Messaging API"
spec.homepage = "https://github.com/line/line-bot-sdk-ruby"
spec.license = "Apache-2.0"
spec.files = %w(CONTRIBUTING.md LICENSE README.md line-bot-api.gemspec) + Dir['lib/**/*.rb']
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.4.0'
spec.add_development_dependency "addressable", "~> 2.3"
spec.add_development_dependency 'rake', "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "webmock", "~> 3.8"
end