Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
aki77 committed Jun 22, 2022
1 parent 4dc8434 commit 30fdb48
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## 1.0.0

- Drop support faraday v1
- Rename gem
20 changes: 14 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,31 @@
# kintone
# kintone_rb

A Ruby gem for communicating with the [kintone](https://kintone.cybozu.com/us/) REST API

forked from [jue58/kintone](https://github.com/jue58/kintone)

## Requirements

- ruby 2.1.0 or later
- ruby 2.7.0 or later

## Installation

gem install kintone
Add this line to your application's Gemfile:

```ruby
gem 'kintone_rb', github: 'SonicGarden/kintone_rb'
```

or execute `bundle install` command after you insert the following into Gemfile
And then execute:

gem 'kintone'
```
$ bundle
```

## Usage

```ruby
require 'kintone'
require 'kintone_rb'

# Use password authentication
api = Kintone::Api.new("example.cybozu.com", "Administrator", "cybozu")
Expand Down
8 changes: 4 additions & 4 deletions kintone.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'kintone/version'

Gem::Specification.new do |spec|
spec.name = 'kintone'
spec.name = 'kintone_rb'
spec.version = Kintone::VERSION
spec.authors = ['Rikiya Kawakami']
spec.email = ['[email protected]']
spec.authors = ['aki77']
spec.email = ['[email protected]']
spec.summary = 'kintone API client for Ruby.'
spec.description = 'kintone API client for Ruby.'
spec.homepage = 'https://github.com/jue58/kintone'
spec.homepage = 'https://github.com/SonicGarden/kintone_rb'
spec.license = 'MIT'

spec.files = `git ls-files -z`.split("\x0")
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require 'rubygems'
require 'kintone'
require 'kintone_rb'
require 'webmock/rspec'
require 'rspec-parameterized'

0 comments on commit 30fdb48

Please sign in to comment.