-
Notifications
You must be signed in to change notification settings - Fork 2
/
aliyun-rails.gemspec
32 lines (24 loc) · 1.38 KB
/
aliyun-rails.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
# frozen_string_literal: true
require_relative "lib/aliyun/version"
Gem::Specification.new do |spec|
spec.name = "aliyun-rails"
spec.version = Aliyun::VERSION
spec.authors = ["WENWU.YAN"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/ciscolive/aliyun-rails"
spec.summary = "非阿里云官方SDK,本GEM主要实现RAILS项目轻松调用 ** aliyun ** 相关接口"
spec.description = "支持 Rails 轻松访问阿里云服务,例如:弹性云主机(ECS)、负载均衡(SLB)、云监控(CloudMonitor)等。当前已支持短信服务、语音服务,可以直接调用!"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.6.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/ciscolive/aliyun-rails"
spec.metadata["changelog_uri"] = "https://github.com/ciscolive/aliyun-rails/blob/main/README.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "LICENSE.txt", "Rakefile", "README.md"]
end
spec.add_dependency "activesupport", ">= 3.0.0"
spec.add_dependency "faraday", ">= 0.15.4"
end