Skip to content

Commit

Permalink
Update gemspec (#1472)
Browse files Browse the repository at this point in the history
* update gemspec with team as authors and new website

* fix bundler warnings

* update gemspec with summary description from repo

* update license, add changelog

* use bundler 2
  • Loading branch information
joelhawksley authored Aug 15, 2022
1 parent 21ccd88 commit d28ccb6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 GitHub
Copyright (c) 2018-present ViewComponent contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ title: Changelog

## main

* Update `gemspec` author to be ViewComponent team.

*Joel Hawksley*

* Fix bug where `ViewComponent::Compiler` wasn't required.

*Joel Hawksley*
Expand Down
11 changes: 5 additions & 6 deletions view_component.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ require "view_component/version"
Gem::Specification.new do |spec|
spec.name = "view_component"
spec.version = ViewComponent::VERSION::STRING
spec.authors = ["GitHub Open Source"]
spec.email = ["[email protected]"]
spec.author = "ViewComponent Team"

spec.summary = "View components for Rails"
spec.homepage = "https://github.com/github/view_component"
spec.summary = "A framework for building reusable, testable & encapsulated view components in Ruby on Rails."
spec.homepage = "https://viewcomponent.org"
spec.license = "MIT"

# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
Expand All @@ -34,7 +33,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "appraisal", "~> 2.4"
spec.add_development_dependency "benchmark-ips", "~> 2.8.2"
spec.add_development_dependency "better_html", "~> 1"
spec.add_development_dependency "bundler", ">= 1.15.0"
spec.add_development_dependency "bundler", "~> 2"
spec.add_development_dependency "erb_lint", "~> 0.0.37"
spec.add_development_dependency "haml", "~> 5"
spec.add_development_dependency "jbuilder", "~> 2"
Expand All @@ -48,5 +47,5 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "slim", "~> 4.0"
spec.add_development_dependency "sprockets-rails", "~> 3.2.2"
spec.add_development_dependency "yard", "~> 0.9.25"
spec.add_development_dependency "yard-activesupport-concern"
spec.add_development_dependency "yard-activesupport-concern", "~> 0.0.1"
end

0 comments on commit d28ccb6

Please sign in to comment.