toktokkie 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 41c42b1d85b4238c87ffe412a4449728117471095f76f5e0da7587bced060ea2
4
- data.tar.gz: 12bb44e3e55d15fff3e312083009c05cb98693f4778e8744af562da163325e84
3
+ metadata.gz: 58026c55ca03901fb8195f2d5ecb00712b8bed7aa916388ae5d355937421025c
4
+ data.tar.gz: bf04df3592d7625ebb3b4b222d4ad3f8d2b9b0f9fba7900b3cf9e8ced7fb1e19
5
5
  SHA512:
6
- metadata.gz: 715970dbfc859e4584ecf1a9f9731c247f2894a607a8560e1c0c6fcb09c75475b24c13fa7e405136619030326eeba512591eda505f25e293aed45f01326bbb2e
7
- data.tar.gz: 69a6a729ab0af802ed04bfdd949f080164739a477b123dd8ce8aa8c5608243b4a6a919b97bdc49860c9937434c3d5cbfea4fa39846d223e11b4db1d03c47ec93
6
+ metadata.gz: 54c6e65b73bf7267f4f9c89b9c620b85226fd320303bf445cc5e0164922df1f3d5391d3162cdc66e57412c01e5b34ee25e57238659caeb1c5aaff12bd7bb6c07
7
+ data.tar.gz: b0c05b843c1308c8a598a1b0d7fcdf5b7fcdb7e0713b459a58338a580cc43f7cfbc107f5ee21c9c58c0eaf67555670b429bb597790332943911db907dbecc374
data/CHANGELOG.md CHANGED
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
- ## [0.0.1] - 2023-01-18
10
+ ## [0.0.2] - 2023-02-05
11
+ - Updated the readme instructions and remove console outputs
11
12
 
13
+ ## [0.0.1] - 2023-01-18
12
14
  - Initial experimental release
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- toktokkie (0.0.1)
4
+ toktokkie (0.0.2)
5
5
  faraday (~> 2.7.3)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -3,11 +3,11 @@
3
3
  ## Installation
4
4
  Install the gem and add to the application's Gemfile by executing:
5
5
 
6
- $ bundle add toktokkie_rb
6
+ $ bundle add toktokkie
7
7
 
8
8
  If bundler is not being used to manage dependencies, install the gem by executing:
9
9
 
10
- $ gem install toktokkie_rb
10
+ $ gem install toktokkie
11
11
 
12
12
  ## Configuration
13
13
  ```ruby
@@ -23,7 +23,7 @@ client = Toktokkie.client
23
23
  client.create_event(
24
24
  # required
25
25
  payload: {
26
- title: "New commenct",
26
+ title: "New comment",
27
27
  body: "Charles commented on your blog post!",
28
28
  action: {
29
29
  "text": "View comment",
@@ -48,7 +48,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
48
48
 
49
49
  ## Contributing
50
50
 
51
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/toktokkie.
51
+ Bug reports and pull requests are welcome on GitHub at https://github.com/TokTokkieOrg/toktokkie_rb.
52
52
 
53
53
  ## License
54
54
 
@@ -10,7 +10,6 @@ module Toktokkie
10
10
 
11
11
  def usable?
12
12
  %i[key secret url].none? do |setting|
13
- puts "setting #{setting} #{send(setting)}"
14
13
  blank?(send(setting))
15
14
  end
16
15
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Toktokkie
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: toktokkie
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christopher Spring
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday