-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add required rubygems MFA metadata to the gemspec
- Loading branch information
1 parent
632d8c1
commit fe4e66b
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ Gem::Specification.new do |spec| | |
spec.version = FiniteMachine::VERSION | ||
spec.authors = ["Piotr Murach"] | ||
spec.email = ["[email protected]"] | ||
spec.description = %q{A minimal finite state machine with a straightforward syntax. You can quickly model states, add callbacks and use object-oriented techniques to integrate with ORMs.} | ||
spec.summary = %q{A minimal finite state machine with a straightforward syntax.} | ||
spec.description = "A minimal finite state machine with a straightforward syntax. You can quickly model states, add callbacks and use object-oriented techniques to integrate with ORMs." | ||
spec.summary = "A minimal finite state machine with a straightforward syntax." | ||
spec.homepage = "https://piotrmurach.github.io/finite_machine/" | ||
spec.license = "MIT" | ||
|
||
|
@@ -17,10 +17,11 @@ Gem::Specification.new do |spec| | |
spec.metadata["changelog_uri"] = "https://github.com/piotrmurach/finite_machine/blob/master/CHANGELOG.md" | ||
spec.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/finite_machine" | ||
spec.metadata["homepage_uri"] = spec.homepage | ||
spec.metadata["rubygems_mfa_required"] = "true" | ||
spec.metadata["source_code_uri"] = "https://github.com/piotrmurach/finite_machine" | ||
end | ||
|
||
spec.files = Dir["lib/**/*"] | ||
spec.files = Dir["lib/**/*"] | ||
spec.extra_rdoc_files = ["README.md", "CHANGELOG.md", "LICENSE.txt"] | ||
spec.require_paths = ["lib"] | ||
spec.required_ruby_version = ">= 2.0.0" | ||
|