From 87839bbbea5f99c171ee0725b350f4fdf28c54b5 Mon Sep 17 00:00:00 2001 From: viletyy Date: Thu, 5 May 2022 16:17:54 +0800 Subject: [PATCH] generate gem --- .github/workflows/main.yml | 27 ++++++++++++ .standard.yml | 2 + CHANGELOG.md | 5 +++ CODE_OF_CONDUCT.md | 84 +++++++++++++++++++++++++++++++++++++ Gemfile | 13 +++--- Gemfile.lock | 39 +++++++++++++++-- LICENSE.txt | 21 ++++++++++ README.md | 53 +++++++++++++---------- Rakefile | 6 +++ bin/giteaclient | 11 ++++- bin/setup | 8 ++++ gitea-client.gemspec | 37 ++++++++++++++++ lib/gitea/version.rb | 8 ++-- pkg/gitea-client-0.1.0.gem | Bin 0 -> 12800 bytes 14 files changed, 279 insertions(+), 35 deletions(-) create mode 100644 .github/workflows/main.yml create mode 100644 .standard.yml create mode 100644 CHANGELOG.md create mode 100644 CODE_OF_CONDUCT.md create mode 100644 LICENSE.txt create mode 100644 Rakefile mode change 100644 => 100755 bin/giteaclient create mode 100755 bin/setup create mode 100644 gitea-client.gemspec create mode 100644 pkg/gitea-client-0.1.0.gem diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..4b388e4 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,27 @@ +name: Ruby + +on: + push: + branches: + - master + + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + ruby: + - 2.7.2 + + steps: + - uses: actions/checkout@v2 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + bundler-cache: true + - name: Run the default task + run: bundle exec rake diff --git a/.standard.yml b/.standard.yml new file mode 100644 index 0000000..9e88fbb --- /dev/null +++ b/.standard.yml @@ -0,0 +1,2 @@ +# For available configuration options, see: +# https://github.com/testdouble/standard diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..62f334c --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +## [Unreleased] + +## [0.1.0] - 2022-05-05 + +- Initial release diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..1ee673d --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,84 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience +* Focusing on what is best not just for us as individuals, but for the overall community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or + advances of any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email + address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at yystopf@163.com. All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series of actions. + +**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, +available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. + +Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see the FAQ at +https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. diff --git a/Gemfile b/Gemfile index a8b8ace..e2833f2 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,10 @@ -source "https://rubygems.org" +source 'https://gems.ruby-china.com' + +# Specify your gem's dependencies in gitea-client.gemspec +gemspec + +gem "rake", "~> 13.0" + +gem "standard", "~> 1.3" gem 'rest-client' - -group :test do - gem 'rake' -end \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 43b8992..aa082f6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,6 +1,12 @@ -GEM - remote: https://rubygems.org/ +PATH + remote: . specs: + gitea-client (0.1.0) + +GEM + remote: https://gems.ruby-china.com/ + specs: + ast (2.4.2) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) http-accept (1.7.0) @@ -10,22 +16,49 @@ GEM mime-types-data (~> 3.2015) mime-types-data (3.2022.0105) netrc (0.11.0) + parallel (1.22.1) + parser (3.1.2.0) + ast (~> 2.4.1) + rainbow (3.1.1) rake (13.0.6) + regexp_parser (2.3.1) rest-client (2.1.0) http-accept (>= 1.7.0, < 2.0) http-cookie (>= 1.0.2, < 2.0) mime-types (>= 1.16, < 4.0) netrc (~> 0.8) + rexml (3.2.5) + rubocop (1.28.2) + parallel (~> 1.10) + parser (>= 3.1.0.0) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml + rubocop-ast (>= 1.17.0, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 3.0) + rubocop-ast (1.17.0) + parser (>= 3.1.1.0) + rubocop-performance (1.13.3) + rubocop (>= 1.7.0, < 2.0) + rubocop-ast (>= 0.4.0) + ruby-progressbar (1.11.0) + standard (1.11.0) + rubocop (= 1.28.2) + rubocop-performance (= 1.13.3) unf (0.1.4) unf_ext unf_ext (0.0.8.1) + unicode-display_width (2.1.0) PLATFORMS x86_64-darwin-20 DEPENDENCIES - rake + gitea-client! + rake (~> 13.0) rest-client + standard (~> 1.3) BUNDLED WITH 2.2.19 diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..c64edcd --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2022 viletyy + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md index 3639bed..5f18653 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,26 @@ - -# GiteaClient +# Gitea::Client -[![GiteaClient](https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/viletyy/gitea-client) +Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/gitea`. To experiment with that code, run `bin/console` for an interactive prompt. -Gitea Api 库 +TODO: Delete this and the text above, and describe your gem -## 内容列表 +## Installation -- [GiteaClient](#giteaclient) - - [内容列表](#内容列表) - - [使用说明](#使用说明) - - [如何贡献](#如何贡献) - - [使用许可](#使用许可) +Add this line to your application's Gemfile: -## 使用说明 +```ruby +gem 'gitea-client' +``` + +And then execute: + + $ bundle install + +Or install it yourself as: + + $ gem install gitea-client + +## Usage ```ruby require 'gitea-client' @@ -31,11 +31,20 @@ client.get_users_search({query: {q: 'viletyy'}}) ``` -## 如何贡献 +## Development -非常欢迎你的加入![提一个 Issue](https://github.com/viletyy/gitea-client/issues/new) 或者提交一个 Pull Request。 +After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment. +To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org). -## 使用许可 +## Contributing -[MIT]() © ViletYy +Bug reports and pull requests are welcome on GitHub at https://github.com/viletyy/gitea-client. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/viletyy/gitea-client/blob/master/CODE_OF_CONDUCT.md). + +## License + +The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). + +## Code of Conduct + +Everyone interacting in the Gitea::Client project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/viletyy/gitea-client/blob/master/CODE_OF_CONDUCT.md). diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..12e5882 --- /dev/null +++ b/Rakefile @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +require "bundler/gem_tasks" +require "standard/rake" + +task default: :standard diff --git a/bin/giteaclient b/bin/giteaclient old mode 100644 new mode 100755 index 2aa218c..0bef0f1 --- a/bin/giteaclient +++ b/bin/giteaclient @@ -1,8 +1,17 @@ #!/usr/bin/env ruby +# frozen_string_literal: true +require "bundler/setup" require 'rest-client' require './lib/gitea/api' require './lib/gitea/version' +# You can add fixtures and/or initialization code here to make experimenting +# with your gem easier. You can also use a different console, if you like. + +# (If you use this, don't forget to add pry to your Gemfile!) +# require "pry" +# Pry.start + require "irb" -IRB.start \ No newline at end of file +IRB.start(__FILE__) diff --git a/bin/setup b/bin/setup new file mode 100755 index 0000000..dce67d8 --- /dev/null +++ b/bin/setup @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +set -euo pipefail +IFS=$'\n\t' +set -vx + +bundle install + +# Do any other automated setup that you need to do here diff --git a/gitea-client.gemspec b/gitea-client.gemspec new file mode 100644 index 0000000..972e214 --- /dev/null +++ b/gitea-client.gemspec @@ -0,0 +1,37 @@ +# frozen_string_literal: true + +require_relative "lib/gitea/version" + +Gem::Specification.new do |spec| + spec.name = "gitea-client" + spec.version = Gitea::VERSION + spec.authors = ["viletyy"] + spec.email = ["yystopf@163.com"] + + spec.summary = "Gitea API 库" + spec.description = "" + spec.homepage = "https://github.com/viletyy/gitea-client" + spec.license = "MIT" + spec.required_ruby_version = ">= 2.6.0" + + spec.metadata["homepage_uri"] = spec.homepage + spec.metadata["source_code_uri"] = "https://github.com/viletyy/gitea-client" + spec.metadata["changelog_uri"] = "https://github.com/viletyy/gitea-client" + + # Specify which files should be added to the gem when it is released. + # The `git ls-files -z` loads the files in the RubyGem that have been added into git. + spec.files = Dir.chdir(File.expand_path(__dir__)) do + `git ls-files -z`.split("\x0").reject do |f| + (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}) + end + end + spec.bindir = "exe" + spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } + spec.require_paths = ["lib"] + + # Uncomment to register a new dependency of your gem + # spec.add_dependency "example-gem", "~> 1.0" + + # For more information and examples about making a new gem, checkout our + # guide at: https://bundler.io/guides/creating_gem.html +end diff --git a/lib/gitea/version.rb b/lib/gitea/version.rb index ae2e573..faa3a8a 100644 --- a/lib/gitea/version.rb +++ b/lib/gitea/version.rb @@ -1,5 +1,5 @@ +# frozen_string_literal: true + module Gitea - - VERSION = "0.0.1" - -end \ No newline at end of file + VERSION = "0.1.0" +end diff --git a/pkg/gitea-client-0.1.0.gem b/pkg/gitea-client-0.1.0.gem new file mode 100644 index 0000000000000000000000000000000000000000..bfbe860c1eb50a4a0fd9ca0d92a64e9575daf063 GIT binary patch literal 12800 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⋘jM#Sh zL_2a!Ml{F2;_pMGAO=aQnOZX2tV$b+`K!y78Mr(#@m?FPm+UJYyoyQz@hnCgsgT!+ zQlMcJ9PeWf7htPVX(G7U%kIZ!a+megfj%eE*E$2{14m-ENuSgoNYcf8ZrS;$^E#1U z0N#nx>Nt8Se*3=R{L-Y8JaKY+b}#LsPjOgimQhC=mLVd?F^;Y48oUJ*#DqbcZ^$*WneFou@Y95E}RTeE)m-Mwx3rv9o zu>$U0+9A8UFdVnN6#z(q1?Sj$ek}JdpL>>6hQo`T+Jq+DvruY}J0G___es7YIl*5X z#JQjq`19RI6eh|7%rEQp^T2yE6!MxicA5r#oL=*&Jp4i$p*N1GnLH$}q5?8pzro=b zQTA(MK*vl1qYIB6oqBN=r$A$?aSEy)TSBUjAJuM@d5gAjAklPfzB;zQnSq$Aylj=w{oe5XeMw@<1 zoKvz-W^^#mpGAoS$F9ulu;eJtnZP3lR<`*)en>c>R2p)uWq3q)m{GH>*B2Z$e8G=$ ze0M83$A4hg1%DSx3xrh|9a%l;YsT~KFsEcA$~EibHPOhI3(X_BU!z)o;V&)Pt}IIX za*RHjQ}M*NJtEjCCWA?etbx^6v{lCyMJqx$u?azY6EK zpe-BrQnNv}^*ot}B7N+KB4mEH?}VNWs^m%CD|22_xW3>oGQTPc2^$1?Xl3_q0rTaZ zPqG;^iz4_lo0_9XpB6IZ9^N9cm(Q^1?V(4ov26hn_ae1C;8I9XXH$QZAoLv57YY`i zLx1m;XL>RbXB#DGTbjHxP&+a|dU5Rgl%42W%I}mG=;|cp>1vsjZlnsqn|+r*s`a|C zu@3V>6M%#v$TW*7X1>Wuc{vu0#l4}zE0YFRTPT$%X+HU+l0L?i?C5O_Op}eldCD-+ z_BP@$zzWphzPdia=~HJAUyMt0D_9}9oN~vy#^`V6T68BaT0Vp_YgFo1|DZs zt&G9ymtvq%ef?<22EJlt?cLKmrFTwtj4FA(&wRHqZ^lhL`;7r3UK!3c#pbf+4ZqRr zVp6!NV-^yg3D4_+*=a>C>8N=f8@3sQ*v5Am>^xqU%Ek2ApbCi6r=hHLuL`b7hBybL zj5n7PPV8o1W)Jf%KF%%XCZ=A@x~xE}dtaF9ndeASG} zc9B``hktP8enq5@^%i)&Zs~judSJ6pb_&oOfP&Z86Y8NnB&1WfP)Ywwlc0^!c=E`D zlfyLiPV$B0U#u2NovJyyV~t4g;|T9{@;Ju)%Sh74_;T9N+>8va59h07~x$y82t8lA}SY zgD#bx-SDg2_%b}S45X&^;$J^12i=^2MFJkff`YErDE!}YA^i^r4Ti6mshL~Q z1IXJU;jf3^V&obx%B~e9AGCK0wUxHs&PKfYXI*5=d|HLhAHvp%IM?OhxrT z@5}VCA#5`j?@Uu98qY4%Y(bjQAYn5mcVbG~Hy)l2x;v;N^DdM$89J34oNbCSJAH`I zF$aB!q`$-ZuCUF@E!9tfhlNv#qI8QsV>|w32!EsOoXSJF&d?)DLzi|o52V6kV)*$I+e!tGhI)DeF{BvouH)I^8;TwaJqw8hq3-s@j$? zQl|we1(F53vxiiX-KdjJo;J_=Egp4dD!o32ECXW+i#QM&H}ajtF*$1Ku5Qh>Y#8gb>&~D9bydN9FqM+U-PoZG<;y z-fDtyCgS$O?bg@Ft@wkx>&L_he@&UKcHs(3(%-_HQ~*&z`{`vWV+?mwjt8;RBX8&> zj6(bR-@ffRbVprXydHG|GYa<)u`h3+e^D@?P2iae9yLmsYo@5g@OS;l{D5T9A*8OH^tpoFrJXO zgFYKzd!dCI9gr4;x+XOBQTkNwCfI4EafE6_OLlbqFIvn|kQZ890l9<&Cm%XVnff9U zg6Rlx@BOk4*@v0fo#37IV#XmQCX?u&QVZhv_i5ncbwU(3iY_i73>$x%AWOwxuNN@< hw(kope7*%};s1ks{;%+*f3NXx3;f#x|8H5~KL87-*s}lt literal 0 HcmV?d00001