queenbee 1.2.0 → 1.3.0

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: 60ece24ddacceb784702c9312a8cd56275adc0e421245451900fdd2f197fb67f
4
- data.tar.gz: 239bbaffd30734f33568b1a0da6807d79745c8f0f597204715ec7fc666c7ede0
3
+ metadata.gz: ec35ec081436adddbf6ea80a83a1e20d9eda1e35bf0d1c2f94040976e5f4e9d0
4
+ data.tar.gz: ce8bad72ac6c0391d8737ecb63a046828467b70a30451e89d1b90001744a3b3d
5
5
  SHA512:
6
- metadata.gz: 5070b0bbd74c6a39a9cdcb8cc6af8140e5a5c26b6c94c7c440eaa35789a27013c55343f287625fc8072d9cb467db1c8df75157c557184d023f5a5544e4f4437c
7
- data.tar.gz: b27cb2fa91db43d6a97461a1b1e0f201d6f22ac6281708c462cb5ba6e8c7f35db30ce0a640b4f5d46f8a358e152c370c5decab12667c37c55209dd8528cfbe03
6
+ metadata.gz: 2396e77d70f3432f2b5a359d77ab6c81a7359b7c72c3fb5271b2f5008a0bbb812c48b460ced66c19467ab1588f27aa0d7e2a1b3790dd8b38ea3a981e3497f0dc
7
+ data.tar.gz: 5b2fe4cde93f5ebde93ab477c207fd88b4fc60e3118895129fec816440d5ac9efca9f03cfd87bccc9e3e5db36b395d5d15dd2a22fd0ebe5f72c199c5dff96ada
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Queenbee
2
2
 
3
- [![Build Status](https://semaphoreapp.com/api/v1/projects/7959e7f9-8fcb-4d10-85fe-79bc840b028c/262003/shields_badge.svg)](https://semaphoreapp.com/olimart/queenbee-ruby)
3
+ [![Build Status](https://semaphoreci.com/api/v1/olimart/queenbee-ruby/branches/master/badge.svg)](https://semaphoreci.com/olimart/queenbee-ruby)
4
4
 
5
5
  Simple gem for communicating with external API. Heavily inspired by stripe gem.
6
6
 
@@ -45,7 +45,7 @@ Queenbee::Order.create(
45
45
  )
46
46
  ```
47
47
 
48
- Optional attributes are avaiable for subscription-type application such as:
48
+ Optional attributes are available for subscription-type application such as:
49
49
 
50
50
  ```ruby
51
51
  subscribed_at: '2015-05-05 20:13:45',
@@ -1,3 +1,3 @@
1
1
  module Queenbee
2
- VERSION = "1.2.0"
2
+ VERSION = "1.3.0"
3
3
  end
data/lib/queenbee.rb CHANGED
@@ -30,7 +30,7 @@ require "queenbee/errors/invalid_request_error"
30
30
  require "queenbee/errors/authentication_error"
31
31
 
32
32
  module Queenbee
33
- @api_base = "https://queenbee-yafoy.herokuapp.com/api"
33
+ @api_base = "https://queenbee.yafoy.com/api"
34
34
 
35
35
  class << self
36
36
  attr_accessor :token, :api_base, :verify_ssl_certs, :api_version
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: queenbee
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Olivier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-13 00:00:00.000000000 Z
11
+ date: 2022-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -127,12 +127,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
127
127
  - !ruby/object:Gem::Version
128
128
  version: '0'
129
129
  requirements: []
130
- rubygems_version: 3.0.6
130
+ rubygems_version: 3.3.7
131
131
  signing_key:
132
132
  specification_version: 4
133
- summary: Gem to send e-commerce orders to the Queenbee central app.
133
+ summary: Ruby gem to send orders & events to Queenbee main app.
134
134
  test_files:
135
+ - test/queenbee/event_test.rb
135
136
  - test/queenbee/metrics_test.rb
136
137
  - test/queenbee/order_test.rb
137
- - test/queenbee/event_test.rb
138
138
  - test/test_helper.rb