add: rest client require

This commit is contained in:
viletyy 2022-05-05 17:23:41 +08:00
parent 2eeb42cf79
commit 638ee27fb0
4 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
PATH
remote: .
specs:
gitea-client (0.2.0)
gitea-client (0.2.1)
GEM
remote: https://gems.ruby-china.com/

View File

@ -2,7 +2,6 @@
# frozen_string_literal: true
require "bundler/setup"
require 'rest-client'
require 'gitea-client'
# You can add fixtures and/or initialization code here to make experimenting
@ -13,4 +12,4 @@ require 'gitea-client'
# Pry.start
require "irb"
IRB.start(__FILE__)
IRB.start(__FILE__)

View File

@ -1,2 +1,3 @@
require 'rest-client'
require_relative "gitea/version"
require_relative "gitea/api"

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Gitea
VERSION = "0.2.0"
VERSION = "0.3.0"
end