Skip to content

Commit

Permalink
Update simple_calendar.gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
excid3 committed Jun 24, 2024
1 parent aed6ce5 commit df588bb
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions simple_calendar.gemspec
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
$:.push File.expand_path("../lib", __FILE__)
require "simple_calendar/version"

Gem::Specification.new do |s|
s.name = "simple_calendar"
s.version = SimpleCalendar::VERSION
s.authors = ["Chris Oliver"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/excid3/simple_calendar"
s.summary = "A simple Rails calendar"
s.description = "A simple Rails calendar"
s.license = "MIT"
Gem::Specification.new do |spec|
spec.name = "simple_calendar"
spec.version = SimpleCalendar::VERSION
spec.authors = ["Chris Oliver"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/excid3/simple_calendar"
spec.summary = "A simple Rails calendar"
spec.description = "A simple Rails calendar"
spec.license = "MIT"

s.metadata = {
'changelog_uri' => https://github.com/excid3/simple_calendar/blob/main/CHANGELOG.md"
}
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/excid3/simple_calendar/blob/main/CHANGELOG.md"

s.rubyforge_project = "simple_calendar"
spec.rubyforge_project = "simple_calendar"

s.files = `git ls-files`.split("\n")
s.require_paths = ["lib"]
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end

s.add_dependency "rails", ">= 6.1"
spec.add_dependency "rails", ">= 6.1"
end

0 comments on commit df588bb

Please sign in to comment.