-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove documentation from the gem to reduce gem size by 50%
- Loading branch information
1 parent
2412336
commit 24bc83f
Showing
2 changed files
with
6 additions
and
2 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
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 |
---|---|---|
|
@@ -4,15 +4,15 @@ Gem::Specification.new do |s| | |
s.name = 'rodauth' | ||
s.version = Rodauth.version | ||
s.platform = Gem::Platform::RUBY | ||
s.extra_rdoc_files = ["README.rdoc", "CHANGELOG", "MIT-LICENSE"] + Dir["doc/*.rdoc"] + Dir['doc/release_notes/*.txt'] | ||
s.extra_rdoc_files = ["MIT-LICENSE"] | ||
s.rdoc_options += ["--quiet", "--line-numbers", "--inline-source", '--title', "Rodauth: Ruby's Most Advanced Authentication Framework", '--main', 'README.rdoc'] | ||
s.license = "MIT" | ||
s.summary = "Authentication and Account Management Framework for Rack Applications" | ||
s.author = "Jeremy Evans" | ||
s.email = "[email protected]" | ||
s.homepage = "https://rodauth.jeremyevans.net" | ||
s.required_ruby_version = ">= 1.9.2" | ||
s.files = %w(MIT-LICENSE CHANGELOG README.rdoc) + Dir["dict/*.txt"] + Dir["doc/**/*.rdoc"] + Dir['doc/release_notes/*.txt'] + Dir["lib/**/*.rb"] + Dir["templates/*.str"] + Dir["javascript/*.js"] | ||
s.files = %w(MIT-LICENSE) + Dir["dict/*.txt"] + Dir["lib/**/*.rb"] + Dir["templates/*.str"] + Dir["javascript/*.js"] | ||
s.metadata = { | ||
'bug_tracker_uri' => 'https://github.com/jeremyevans/rodauth/issues', | ||
'changelog_uri' => 'https://rodauth.jeremyevans.net/rdoc/files/CHANGELOG.html', | ||
|