-
Notifications
You must be signed in to change notification settings - Fork 0
/
named_variant.gemspec
27 lines (22 loc) · 990 Bytes
/
named_variant.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
$LOAD_PATH.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "named_variant/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "named_variant"
spec.version = NamedVariant::VERSION
spec.authors = ["Yukito Ito"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/ykpythemind/named_variant"
spec.summary = "Named ActiveStorage's variant"
spec.description = "Make ActiveStorage's variant named and configurable"
spec.license = "MIT"
spec.files = Dir["{lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "activestorage"
spec.add_dependency "activesupport"
spec.add_development_dependency "image_processing"
spec.add_development_dependency "onkcop", "~> 0.53"
spec.add_development_dependency "rails", "~> 5.2"
spec.add_development_dependency "rspec-rails"
spec.add_development_dependency "sqlite3"
end