-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfestive_errors.gemspec
22 lines (18 loc) · 1.04 KB
/
festive_errors.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require_relative "lib/festive_errors/version"
Gem::Specification.new do |spec|
spec.name = "festive_errors"
spec.version = FestiveErrors::VERSION
spec.authors = ["Joshua Wood"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/honeybadger-io/festive_errors"
spec.summary = "Add some year-round holiday cheer to the Rails error page."
spec.description = "Festive Errors is a Rails gem that spices up the Rails error page with fun holiday themes. We all like to do a little coding around the holidays. Get into the holiday spirit with Festive Errors!"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/honeybadger-io/festive_errors"
spec.metadata["changelog_uri"] = "https://github.com/honeybadger-io/festive_errors/blob/master/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md", "CHANGELOG.md"]
end
spec.add_dependency "rails", ">= 7.0.0"
end