@@ -17,10 +17,11 @@ Gem::Specification.new do |spec|
1717 spec . version = OAuth ::Version ::VERSION
1818 spec . license = "MIT"
1919
20- spec . authors = [ "Pelle Braendgaard" , "Blaine Cook" , "Larry Halff" , "Jesse Clark" , "Jon Crosby" ,
21- "Seth Fitzsimmons" , "Matt Sanford" , "Aaron Quint" , "Peter Boling" ]
22- 23- spec . summary = "OAuth Core Ruby implementation"
20+ spec . authors = [ "Pelle Braendgaard" , "Blaine Cook" , "Larry Halff" , "Jesse Clark" , "Jon Crosby" ,
21+ "Seth Fitzsimmons" , "Matt Sanford" , "Aaron Quint" , "Peter Boling" ]
22+ 23+ spec . summary = "OAuth 1.0 Core Ruby implementation"
24+ spec . description = "A Ruby wrapper for the original OAuth 1.0 spec."
2425
2526 spec . homepage = "https://gitlab.com/oauth-xx/oauth"
2627 spec . metadata [ "homepage_uri" ] = spec . homepage
@@ -33,25 +34,37 @@ Gem::Specification.new do |spec|
3334 spec . metadata [ "funding_uri" ] = "https://liberapay.com/pboling"
3435 spec . metadata [ "rubygems_mfa_required" ] = "true"
3536
36- spec . files = Dir . glob ( "lib/**/*.rb" ) + [ "LICENSE" , "README.md" , "CHANGELOG.md" , "CODE_OF_CONDUCT.md" , "SECURITY.md" ,
37- "CONTRIBUTING.md" ]
38- spec . extra_rdoc_files = [ "TODO" ]
37+ spec . files = Dir [
38+ "lib/**/*" ,
39+ "CHANGELOG.md" ,
40+ "CODE_OF_CONDUCT.md" ,
41+ "CONTRIBUTING.md" ,
42+ "LICENSE.txt" ,
43+ "README.md" ,
44+ "SECURITY.md" ,
45+ ]
3946
40- # This gem will work with Ruby 2.7 or greater...
4147 spec . required_ruby_version = ">= 2.7"
4248 spec . post_install_message = "
4349You have installed oauth version #{ OAuth ::Version ::VERSION } , congratulations!
4450
45- Non-commercial support for the 1.x series will end by April, 2025. Please make a plan to upgrade to the next version prior to that date.
46- The only breaking change will be dropped support for Ruby 2.7 and any other versions which will also have reached EOL by then.
47-
4851Please see:
4952• #{ spec . homepage } /-/blob/main/SECURITY.md
5053• #{ spec . homepage } /-/blob/v#{ spec . version } /CHANGELOG.md#111-2022-09-19
5154
52- Note also that I am, and this project is, in the process of leaving Github.
53- I wrote about some of the reasons here:
55+ Major updates:
56+ 1. master branch renamed to main
57+ • Update your local: git checkout master; git branch -m master main; git branch --unset-upstream; git branch -u origin/main
58+ 2. Github has been replaced with Gitlab; I wrote about some of the reasons here:
5459• https://dev.to/galtzo/im-leaving-github-50ba
60+ • Update your local: git remote set-url origin [email protected] :oauth-xx/oauth.git 61+ 3. Google Group is active (again)!
62+ • https://groups.google.com/g/oauth-ruby/c/QA_dtrXWXaE
63+ 4. Gitter Chat is active (still)!
64+ • https://gitter.im/oauth-xx/
65+ 5. Non-commercial support for the 1.x series will end by April, 2025. Please make a plan to upgrade to the next version prior to that date.
66+ Support will be dropped for Ruby 2.7 and any other Ruby versions which will also have reached EOL by then.
67+ 6. Gem releases are now cryptographically signed for security.
5568
5669If you are a human, please consider a donation as I move toward supporting myself with Open Source work:
5770• https://liberapay.com/pboling
0 commit comments