Skip to content

Commit fc0bbb9

Browse files
authored
Merge pull request #2 from watson-developer-cloud/develop
Merge develop into master
2 parents b682ade + 248e1e1 commit fc0bbb9

31 files changed

+2166
-2119
lines changed

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ AllCops:
7878
# is specified in the Gemfile or gems.rb file, RuboCop reads the final value
7979
# from the lock file.) If the Ruby version is still unresolved, RuboCop will
8080
# use the oldest officially supported Ruby version (currently Ruby 2.2).
81-
TargetRubyVersion: ~
81+
TargetRubyVersion: 2.3
8282
# What version of Rails is the inspected code using? If a value is specified
8383
# for TargetRailsVersion then it is used. Acceptable values are specificed
8484
# as a float (i.e. 5.1); the patch version of Rails should not be included.

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# IBM Watson Ruby SDK
22

3-
[![Build Status](https://travis-ci.org/watson-developer-cloud/ruby-sdk.svg?branch=master)](https://travis-ci.org/watson-developer-cloud/ruby-sdk)
3+
[![Build Status](https://travis-ci.org/watson-developer-cloud/ruby-sdk.svg)](https://travis-ci.org/watson-developer-cloud/ruby-sdk)
44
[![Slack](https://wdc-slack-inviter.mybluemix.net/badge.svg)](https://wdc-slack-inviter.mybluemix.net)
5-
[![codecov.io](https://codecov.io/github/watson-developer-cloud/ruby-sdk/coverage.svg?branch=master)](https://codecov.io/github/watson-developer-cloud/ruby-sdk?branch=master)
5+
[![codecov.io](https://codecov.io/github/watson-developer-cloud/ruby-sdk/coverage.svg)](https://codecov.io/github/watson-developer-cloud/ruby-sdk)
66
[![Gem Version](https://badge.fury.io/rb/ibm_watson.svg)](https://badge.fury.io/rb/ibm_watson)
7+
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
78

89
Ruby gem to quickly get started with the various [IBM Watson][wdc] services.
910

bin/console

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
23

34
require "bundler/setup"
45
require "ibm_watson"

examples/assistant_v1.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require("ibm_watson/assistant_v1")
24

35
# If using IAM

examples/discovery_v1.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require("ibm_watson/discovery_v1")
24

35
# If using IAM

examples/language_translator_v3.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require("ibm_watson/language_translator_v3")
24

35
# If using IAM

examples/natural_language_classifier_v1.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require("ibm_watson/natural_language_classifier_v1")
24

35
# If using IAM

examples/natural_language_understanding_v1.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require("ibm_watson/natural_language_understanding_v1")
24

35
# If using IAM

examples/personality_insights_v3.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require("ibm_watson/personality_insights_v3")
24

35
# The example returns a JSON response whose content is the same as that in

examples/speech_to_text_v1.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require("ibm_watson/speech_to_text_v1")
24
require("ibm_watson/recognize_callback")
35

0 commit comments

Comments
 (0)