-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
20 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
## 1.0.0 | ||
|
||
- Drop support faraday v1 | ||
- Rename gem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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") | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |