invisible_collector 0.5.0 → 0.5.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
- SHA1:
3
- metadata.gz: e94815b0e71663bf382c660d4529423e6289349f
4
- data.tar.gz: ecf27d7b3adb5ef2b7de3859e71ead7b1d72b5dd
2
+ SHA256:
3
+ metadata.gz: 8f1d6219e45dc680ec831f1fae9566e9e5ffeee0d8e5db339ae3a22703085b00
4
+ data.tar.gz: a26415f108275748b886a4873977bf9b7232c4971930f3e848a9e8e9f32ad7c5
5
5
  SHA512:
6
- metadata.gz: 5d194d78fae74411950c6c548b50430c10d0725098027ab13be9f9f353e71a6025f11bb409e1b785c95faf7b2ca3a7b5f99805ee91c591801c9d5b9698910569
7
- data.tar.gz: ca964fad16d0849861f9c6552025238bfe85b8eac29d36d56e2007180acc71e80a13bb89af2e5434a3ad4af6dc992a3c833bcf921e46e945c8899fd93e3fe0e5
6
+ metadata.gz: fa1b1afa0a5c84edd5d167bbae6ffdeffd9e0c70145d3712c9d23d9494b75aeb6342f42adc552ca1eea255941cae258ae5717273af6b80deb6518d08ae23f375
7
+ data.tar.gz: 8a8b50a7bf271bcf4f91efc1fa154d84f59414989fea1aa44dca7321ec2b2413274f61a38ee6af89e16b0e199353936a3659c28021df6899439da0b62d3f13d1
@@ -0,0 +1,29 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: Ruby
9
+
10
+ on:
11
+ push:
12
+ branches: [ master ]
13
+ pull_request:
14
+ branches: [ master ]
15
+
16
+ jobs:
17
+ test:
18
+
19
+ runs-on: ubuntu-20.04
20
+
21
+ steps:
22
+ - uses: actions/checkout@v4
23
+ - name: Set up Ruby
24
+ uses: ruby/setup-ruby@v1
25
+ with:
26
+ ruby-version: 2.6
27
+ bundler-cache: true
28
+ - name: Run tests
29
+ run: bundle exec rake
data/README.md CHANGED
@@ -97,16 +97,6 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
97
97
 
98
98
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
99
99
 
100
- ## Contributing
101
-
102
- Bug reports and pull requests are welcome on GitHub at https://github.com/invisiblecloud/invisible-collector-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
103
-
104
- 1. Fork it ( https://github.com/invisiblecloud/invisible-collector-ruby/fork )
105
- 2. Create your feature branch (`git checkout -b my-new-feature`)
106
- 3. Commit your changes (`git commit -am 'Add some feature'`)
107
- 4. Push to the branch (`git push origin my-new-feature`)
108
- 5. Create a new Pull Request
109
-
110
100
  ## License
111
101
 
112
102
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -7,8 +7,8 @@ require 'invisible_collector/version'
7
7
  Gem::Specification.new do |spec|
8
8
  spec.name = 'invisible_collector'
9
9
  spec.version = InvisibleCollector::VERSION
10
- spec.authors = ['João Madureira']
11
- spec.email = ['jmadureira@invisiblecollector.com']
10
+ spec.authors = ['InvisibleCollector']
11
+ spec.email = ['support@invisiblecollector.com']
12
12
 
13
13
  spec.summary = 'Official Invisible Collector Gem'
14
14
  spec.description = 'Official Invisible Collector Gem used to interact with Invisible Collector API in ruby'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module InvisibleCollector
4
- VERSION = '0.5.0'
4
+ VERSION = '0.5.2'
5
5
  end
@@ -4,7 +4,7 @@ require 'faraday'
4
4
 
5
5
  module InvisibleCollector
6
6
  class Voice
7
- VOICE_API = 'https://voice.invisiblecollector.com'
7
+ VOICE_API = 'https://link.invisiblecollector.com'
8
8
 
9
9
  attr_reader :api_token
10
10
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: invisible_collector
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
- - João Madureira
7
+ - InvisibleCollector
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-09-21 00:00:00.000000000 Z
11
+ date: 2026-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -125,11 +125,12 @@ dependencies:
125
125
  description: Official Invisible Collector Gem used to interact with Invisible Collector
126
126
  API in ruby
127
127
  email:
128
- - jmadureira@invisiblecollector.com
128
+ - support@invisiblecollector.com
129
129
  executables: []
130
130
  extensions: []
131
131
  extra_rdoc_files: []
132
132
  files:
133
+ - ".github/workflows/ruby.yml"
133
134
  - ".gitignore"
134
135
  - ".rspec"
135
136
  - ".rubocop.yml"
@@ -196,8 +197,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
196
197
  - !ruby/object:Gem::Version
197
198
  version: '0'
198
199
  requirements: []
199
- rubyforge_project:
200
- rubygems_version: 2.6.14.4
200
+ rubygems_version: 3.0.3
201
201
  signing_key:
202
202
  specification_version: 4
203
203
  summary: Official Invisible Collector Gem