eventline 0.1.0 → 0.3.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: 56cd182c51702104d9373178ba4ccf90b980d347a599c25ba7355558aa971f7a
4
- data.tar.gz: 99b125a4950034ee3e9c0e7a154c142a35d2ea90e984b0800ca859c31363624e
3
+ metadata.gz: 29d384e2063de76490047cdd503393e44f5950bf49f8d4c02d2aacae7729e426
4
+ data.tar.gz: f4fcff6449243772efdf11f2b0b4cde389a901668b32abaf2ec28ba587cbdcfe
5
5
  SHA512:
6
- metadata.gz: '0778b80c81259626f335a5cbcf021960a55e37d118d6fa34fcfc70741bae4ab3172df81226d2dc31bbc6ab31f985defa9cb2546d98806c0609d7be42ad342b05'
7
- data.tar.gz: 3f31538d02f8779c2436a23bbacf0e5f5252d7a9a483c0e0046fae6e6ab2fd152db51512774897524f27a0939fe0093ade72c3620d0c4c459b46e8ba97e14855
6
+ metadata.gz: 030abaf5a3ff62d8f0817249da30d022d94d5d6c2c6a33c98c0efc18c37b3c74a6f4a15abed361660b944eeca0014256b5d8bf5e9a8b23de2b5184a987b496fd
7
+ data.tar.gz: 0d4795af642f8f7c1b40e4bcf4c28029b710660e1562eb7321cf9053472cb85c858263dc0f3f87bba00f6f443f815c92aa5f115c23ee463cb168b595e0e1ea0a
data/lib/eventline.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "eventline/version"
4
3
  require "eventline/client"
5
4
  require "eventline/context"
6
5
  require "eventline/event"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eventline
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Exograd SAS
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-20 00:00:00.000000000 Z
11
+ date: 2022-07-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Eventline is a scheduling platform where you can define and run custom
14
14
  tasks in a safe environment.
@@ -24,7 +24,6 @@ files:
24
24
  - lib/eventline/context.rb
25
25
  - lib/eventline/event.rb
26
26
  - lib/eventline/organization.rb
27
- - lib/eventline/version.rb
28
27
  homepage: https://docs.eventline.net
29
28
  licenses: []
30
29
  metadata:
@@ -1,17 +0,0 @@
1
- # Copyright (c) 2021-2022 Exograd SAS.
2
- #
3
- # Permission to use, copy, modify, and/or distribute this software for any
4
- # purpose with or without fee is hereby granted, provided that the above
5
- # copyright notice and this permission notice appear in all copies.
6
- #
7
- # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8
- # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9
- # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10
- # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11
- # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12
- # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13
- # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14
-
15
- module Eventline
16
- VERSION = "0.1.0"
17
- end