Skip to content

Commit

Permalink
Update CI, README, License (#1)
Browse files Browse the repository at this point in the history
* Remove unused CI

* update LICENSE, README

* update github actions
  • Loading branch information
hkobayash authored Apr 17, 2024
1 parent b217e74 commit a587ec2
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 385 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- os: windows-latest
ruby: truffleruby-head
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
Expand All @@ -31,6 +31,6 @@ jobs:
- name: Run test
run: bundle exec rake
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4
with:
file: ./coverage/.resultset.json
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2019 emsk
Copyright (c) 2024 Elastic Infra

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
19 changes: 7 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
# BacklogKit

[![Gem Version](https://badge.fury.io/rb/backlog_kit.svg)](https://badge.fury.io/rb/backlog_kit)
[![Build Status](https://github.com/emsk/backlog_kit/actions/workflows/build.yml/badge.svg)](https://github.com/emsk/backlog_kit/actions/workflows/build.yml)
[![Build Status](https://travis-ci.org/emsk/backlog_kit.svg?branch=main)](https://travis-ci.org/emsk/backlog_kit)
[![Build status](https://ci.appveyor.com/api/projects/status/no4jqaoimctfsejj?svg=true)](https://ci.appveyor.com/project/emsk/backlog-kit)
[![Build Status](https://dev.azure.com/emsk/backlog_kit/_apis/build/status/emsk.backlog_kit?branchName=main)](https://dev.azure.com/emsk/backlog_kit/_build/latest?definitionId=1&branchName=main)
[![Codecov](https://codecov.io/gh/emsk/backlog_kit/branch/main/graph/badge.svg)](https://codecov.io/gh/emsk/backlog_kit)
[![Code Climate](https://codeclimate.com/github/emsk/backlog_kit/badges/gpa.svg)](https://codeclimate.com/github/emsk/backlog_kit)
[![Inline docs](https://inch-ci.org/github/emsk/backlog_kit.svg?branch=main)](https://inch-ci.org/github/emsk/backlog_kit)
[![Build Status](https://github.com/elastic-infra/backlog_kit/actions/workflows/build.yml/badge.svg)](https://github.com/elastic-infra/backlog_kit/actions/workflows/build.yml)
[![Codecov](https://codecov.io/gh/elastic-infra/backlog_kit/branch/main/graph/badge.svg)](https://codecov.io/gh/elastic-infra/backlog_kit)
[![Code Climate](https://codeclimate.com/github/elastic-infra/backlog_kit/badges/gpa.svg)](https://codeclimate.com/github/elastic-infra/backlog_kit)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)

Ruby wrapper for the Nulab's Backlog API.
Expand Down Expand Up @@ -36,7 +31,7 @@ Or install it yourself as:
require 'backlog_kit'

client = BacklogKit::Client.new(
space_id: 'emsk',
space_id: 'elastic-infra',
api_key: '1234567890abcdefghij1234567890abcdefghij1234567890abcdefghij1234'
)

Expand Down Expand Up @@ -67,7 +62,7 @@ client.delete('groups/3712') # DELETE

```ruby
client = BacklogKit::Client.new(
space_id: 'emsk',
space_id: 'elastic-infra',
api_key: '1234567890abcdefghij1234567890abcdefghij1234567890abcdefghij1234'
)
```
Expand All @@ -76,7 +71,7 @@ client = BacklogKit::Client.new(

```ruby
client = BacklogKit::Client.new(
space_id: 'emsk',
space_id: 'elastic-infra',
api_key: nil, # api_key should be nil
access_token: 'abcdefghij1234567890abcdefghij1234567890abcdefghij1234567890abcd'
)
Expand Down Expand Up @@ -119,7 +114,7 @@ BacklogKit's API documentation is [here](https://www.rubydoc.info/gems/backlog_k

## Contributing

1. Fork it ( https://github.com/emsk/backlog_kit/fork )
1. Fork it ( https://github.com/elastic-infra/backlog_kit/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
Expand Down
34 changes: 0 additions & 34 deletions appveyor.yml

This file was deleted.

33 changes: 0 additions & 33 deletions azure-pipelines-templates/steps-macos.yml

This file was deleted.

40 changes: 0 additions & 40 deletions azure-pipelines-templates/steps-ubuntu.yml

This file was deleted.

16 changes: 0 additions & 16 deletions azure-pipelines-templates/steps-windows.yml

This file was deleted.

Loading

0 comments on commit a587ec2

Please sign in to comment.