whereby-ruby 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f70dcd8168e805bb76fbcc4f524e6722214e582caa17a2c9b7516a4ec4040ae
4
- data.tar.gz: 2d8051611c860c2771c2c87604e8880c2eb45c0a3de02c064810b890901f1ffb
3
+ metadata.gz: 9855721503efc20f105aef1039daec4e4bd78342097b385459c3f178a2c6d7f2
4
+ data.tar.gz: 33584783c746b352b37bcff4338b144df7f7baf071f2590abbb3b6f00aa1a582
5
5
  SHA512:
6
- metadata.gz: 821d191e85b6f6da0bfd1d52844d10f0f1d47970e33e94e256c6a71581153ee632aea62b43747f0f61099e54cb691b3622d9c576e746d8308474c892638864cc
7
- data.tar.gz: 769d2fded4b33b120cc47dbbd99179881ac2bd2518ef3ce3a2b34e18dcda790cd86102dd52037cb0a9a7ff2ec95df1e3ccfbbe3473131ff91c0f3c781607d414
6
+ metadata.gz: 4a7c178ca9a840a1142a69fabde7a64926a2487f4361a4986092a29dec6504190357fb7dfd11c39bbc742345bd554484664809184724d9f2c6f7cac88693102d
7
+ data.tar.gz: 5d45a3122767abda0469278a2df275f459cf963b4f8c5c0f39319c7b99349d88e8163ecd3f1f5f8a7e3b915e9685902d7bef901613553a4be88cd7b1d499357a
@@ -1,8 +1,8 @@
1
- name: Push Wrapper to Ruby Gems
1
+ name: Push Wrapper to Ruby Gems & GPR
2
2
 
3
3
  on:
4
4
  push:
5
- branches: [ master ]
5
+ tags: 'v*'
6
6
 
7
7
  jobs:
8
8
  build:
data/README.md CHANGED
@@ -23,6 +23,7 @@ Or install it yourself as:
23
23
  If using Rails put the following into a initializer. If just Ruby, run this before trying to use the API.
24
24
 
25
25
  ```ruby
26
+ require 'whereby'
26
27
  Whereby.configure do |config|
27
28
  config.api_key = 'YOUR_KEY_HERE'
28
29
  end
@@ -1,3 +1,3 @@
1
1
  module Whereby
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: whereby-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Kittilsen Henriksen
@@ -36,7 +36,6 @@ files:
36
36
  - CODE_OF_CONDUCT.md
37
37
  - Gemfile
38
38
  - LICENSE.md
39
- - LICENSE.txt
40
39
  - README.md
41
40
  - Rakefile
42
41
  - bin/console
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2020 Daniel Kittilsen Henriksen
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.