-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfileboost.gemspec
More file actions
32 lines (26 loc) · 1.51 KB
/
fileboost.gemspec
File metadata and controls
32 lines (26 loc) · 1.51 KB
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
require_relative "lib/fileboost/version"
Gem::Specification.new do |spec|
spec.name = "fileboost"
spec.version = Fileboost::VERSION
spec.authors = [ "bilal budhani" ]
spec.email = [ "bilal@bilalbudhani.com" ]
spec.homepage = "https://github.com/Fileboost/fileboost-ruby"
spec.summary = "Rails gem for Fileboost.dev image optimization with ActiveStorage"
spec.description = "Fileboost provides drop-in replacement Rails image helpers with automatic optimization through the Fileboost.dev service. Works exclusively with ActiveStorage objects, features HMAC authentication, and comprehensive transformation support."
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/Fileboost/fileboost-ruby"
spec.metadata["changelog_uri"] = "https://github.com/Fileboost/fileboost-ruby/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.required_ruby_version = ">= 3.0"
spec.add_runtime_dependency "activestorage", ">= 7"
spec.add_development_dependency "appraisal", "~> 2.5"
spec.add_development_dependency "bundler", ">= 2.1", "< 2.7"
spec.add_development_dependency "combustion", "~> 1"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rails", ">= 7"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rspec-rails", "~> 6.0"
end