-
Notifications
You must be signed in to change notification settings - Fork 7
/
alchemy-dragonfly-s3.gemspec
41 lines (34 loc) · 1.37 KB
/
alchemy-dragonfly-s3.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
35
36
37
38
39
40
41
# frozen_string_literal: true
$:.push File.expand_path("lib", __dir__)
require "alchemy/dragonfly/s3/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "alchemy-dragonfly-s3"
s.version = Alchemy::Dragonfly::S3::VERSION
s.authors = ["Thomas von Deyen"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/AlchemyCMS/alchemy-dragonfly-s3"
s.summary = "AlchemyCMS Dragonfly S3."
s.description = "AlchemyCMS Integration for the Dragonfly S3 datastore."
s.license = "MIT"
s.metadata = {
"source_code_uri" => "https://github.com/AlchemyCMS/alchemy-dragonfly-s3",
"changelog_uri" => "https://github.com/AlchemyCMS/alchemy-dragonfly-s3/blob/main/CHANGELOG.md",
"bug_tracker_uri" => "https://github.com/AlchemyCMS/alchemy-dragonfly-s3/issues",
"github_repo" => "https://github.com/AlchemyCMS/alchemy-dragonfly-s3",
}
s.files = Dir[
"app/**/*",
"lib/**/*",
"alchemy-dragonfly-s3.gemspec",
"CHANGELOG.md",
"MIT-LICENSE",
"README.md",
]
s.add_dependency "alchemy_cms", [">= 7.0.0-a", "< 8"]
s.add_dependency "dragonfly-s3_data_store", "~> 1.3"
s.add_development_dependency "rspec-rails", "~> 4.0"
s.add_development_dependency "factory_bot_rails", "~> 6.0"
s.add_development_dependency "github_changelog_generator"
s.add_development_dependency "simplecov", "~> 0.17"
end