beeiq_api 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 649c9f1f558edda455bbfe8e7d77ea486aae492f
4
+ data.tar.gz: 2748537350476a7afe4e4d64c3c97af72c264893
5
+ SHA512:
6
+ metadata.gz: 77b9eaf32121895f500822ee9534b18eacaf40391506d637b217468f54c8f24bf9feea7113a020b4509599b05ce29d4073fddd6ff6033ec776bd7c51188dece4
7
+ data.tar.gz: 229fc90ad84859d2d7d36dbbad4eb76f37d63d2c0b8727d4c60f59906394166299498cd68d89a2a5d62d2224bfa739501908d281aa682c64d3d04bf0de6a46f2
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.4.2
7
+ before_install: gem install bundler -v 2.0.1
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at huyhung1994@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in beeiq_api.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,63 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ beeiq_api (0.1.0)
5
+ rest-client (~> 2.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ addressable (2.6.0)
11
+ public_suffix (>= 2.0.2, < 4.0)
12
+ crack (0.4.3)
13
+ safe_yaml (~> 1.0.0)
14
+ diff-lcs (1.3)
15
+ domain_name (0.5.20180417)
16
+ unf (>= 0.0.5, < 1.0.0)
17
+ hashdiff (0.3.8)
18
+ http-cookie (1.0.3)
19
+ domain_name (~> 0.5)
20
+ mime-types (3.2.2)
21
+ mime-types-data (~> 3.2015)
22
+ mime-types-data (3.2018.0812)
23
+ netrc (0.11.0)
24
+ public_suffix (3.0.3)
25
+ rake (10.5.0)
26
+ rest-client (2.0.2)
27
+ http-cookie (>= 1.0.2, < 2.0)
28
+ mime-types (>= 1.16, < 4.0)
29
+ netrc (~> 0.8)
30
+ rspec (3.8.0)
31
+ rspec-core (~> 3.8.0)
32
+ rspec-expectations (~> 3.8.0)
33
+ rspec-mocks (~> 3.8.0)
34
+ rspec-core (3.8.0)
35
+ rspec-support (~> 3.8.0)
36
+ rspec-expectations (3.8.2)
37
+ diff-lcs (>= 1.2.0, < 2.0)
38
+ rspec-support (~> 3.8.0)
39
+ rspec-mocks (3.8.0)
40
+ diff-lcs (>= 1.2.0, < 2.0)
41
+ rspec-support (~> 3.8.0)
42
+ rspec-support (3.8.0)
43
+ safe_yaml (1.0.4)
44
+ unf (0.1.4)
45
+ unf_ext
46
+ unf_ext (0.0.7.5)
47
+ webmock (3.5.1)
48
+ addressable (>= 2.3.6)
49
+ crack (>= 0.3.2)
50
+ hashdiff
51
+
52
+ PLATFORMS
53
+ ruby
54
+
55
+ DEPENDENCIES
56
+ beeiq_api!
57
+ bundler (~> 2.0)
58
+ rake (~> 10.0)
59
+ rspec (~> 3.0)
60
+ webmock (~> 3.5)
61
+
62
+ BUNDLED WITH
63
+ 2.0.1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Huy Hùng
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.
data/README.md ADDED
@@ -0,0 +1,75 @@
1
+ ## Beeiq
2
+
3
+ ## Installation
4
+
5
+ Add this line to your application's Gemfile:
6
+
7
+ ```ruby
8
+ gem 'beeiq_api'
9
+ ```
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install beeiq_api
18
+
19
+ ## Usage
20
+
21
+ #### Configuration
22
+
23
+ **Ruby**
24
+ ```ruby
25
+ client = BeeiqAPI::Client.new(webhook_url, sender_email)
26
+ ```
27
+
28
+ **Rails**
29
+ ```ruby
30
+ # in file: config/initialize/beeiq.rb
31
+ BeeiqAPI.configure do |config|
32
+ config.webhook_url = 'https://github.com'
33
+ config.sender_email = 'huyhung1994@gmail.com'
34
+ end
35
+
36
+ client = BeeiqAPI::Client.new
37
+ ```
38
+
39
+ #### **Create ticket**
40
+ Create ticket and create contact/lead
41
+ ```ruby
42
+ data = {
43
+ # ticket info
44
+ title: 'title of ticket',
45
+ body: 'body of ticket', # required
46
+ tag: 'webhook',
47
+
48
+ # for create contact/lead
49
+ contact_type: 'customer', # [lead, customer] default is customer
50
+ name: 'name of contact',
51
+ email: 'email@github.com',
52
+ phone: '01234567890'
53
+ }
54
+
55
+ client.create_ticket(data)
56
+ ```
57
+
58
+ ## Contributing
59
+
60
+ Bug reports and pull requests are welcome on GitHub at https://github.com/hungdh0x5e/beeiq. 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.
61
+
62
+ ## License
63
+
64
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
65
+
66
+ ## Code of Conduct
67
+
68
+ Everyone interacting in the Beeiq project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/hungdh0x5e/beeiq/blob/master/CODE_OF_CONDUCT.md).
69
+
70
+ ## TODO:
71
+
72
+ - [x] add-ticket: thêm Ticket
73
+ - [ ] add-contact: tạo Contact
74
+ - [ ] update-contact: cập nhật Contact
75
+ - [ ] add-note: thêm Ghi chú
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/beeiq_api.gemspec ADDED
@@ -0,0 +1,31 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "beeiq_api/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "beeiq_api"
8
+ spec.version = BeeiqAPI::VERSION
9
+ spec.authors = ["Huy Hùng"]
10
+ spec.email = ["huyhung1994@gmail.com"]
11
+
12
+ spec.summary = "BeeIQ REST API Client"
13
+ spec.description = "Ruby wrapper for the REST API at https://www.beeiq.com. Documentation at https://guide.antbuddy.com/kb/instructions-to-enter-data-into-beeiq-data-platform"
14
+ spec.homepage = "https://github.com/hungdh0x5e/beeiq_api"
15
+ spec.license = "MIT"
16
+
17
+ # Specify which files should be added to the gem when it is released.
18
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
19
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
20
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
+ end
22
+ spec.bindir = "exe"
23
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
+ spec.require_paths = ["lib"]
25
+
26
+ spec.add_development_dependency "bundler", "~> 2.0"
27
+ spec.add_development_dependency "rake", "~> 10.0"
28
+ spec.add_development_dependency "rspec", "~> 3.0"
29
+ spec.add_development_dependency "webmock", "~> 3.5"
30
+ spec.add_runtime_dependency "rest-client", "~> 2.0"
31
+ end
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "beeiq_api"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,51 @@
1
+ module BeeiqAPI
2
+ module Config
3
+ module ActionType
4
+ ADD_CONTACT = 'add-contact'.freeze
5
+ UPDATE_CONTACT = 'update-contact'.freeze
6
+ ADD_NOTE = 'add-note'.freeze
7
+ ADD_DEAL = 'add-deal'.freeze
8
+ ADD_TICKET = 'add-ticket'.freeze
9
+ end
10
+
11
+ module ContactType
12
+ LEAD = 'lead'.freeze
13
+ CUSTOMER = 'customer'.freeze
14
+ end
15
+
16
+ module Gender
17
+ MALE = 0
18
+ FEMALE = 1
19
+ OTHER = 2
20
+ end
21
+
22
+ module EmailType
23
+ WORK = 'Work'.freeze
24
+ HOME = 'Home'.freeze
25
+ MOBILE = 'Mobile'.freeze
26
+ OTHER = 'Other'.freeze
27
+ end
28
+
29
+ module PhoneType
30
+ WORK = 'Work'.freeze
31
+ HOME = 'Home'.freeze
32
+ MOBILE = 'Mobile'.freeze
33
+ OTHER = 'Other'.freeze
34
+ end
35
+
36
+ module AddressType
37
+ WORK = 'Work'.freeze
38
+ HOME = 'Home'.freeze
39
+ OTHER = 'Other'.freeze
40
+ end
41
+
42
+ module ImType
43
+ SKYPE = 'Skype'.freeze
44
+ FACEBOOK = 'Facebook'.freeze
45
+ YAHOO = 'Yahoo'.freeze
46
+ VIBER = 'Viber'.freeze
47
+ HANGOUTS = 'Hangouts'.freeze
48
+ OTHER = 'Other'.freeze
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,47 @@
1
+ module BeeiqAPI
2
+ class Response
3
+ attr_accessor :response
4
+
5
+ def initialize(response)
6
+ @response = response
7
+ end
8
+
9
+ def body
10
+ if success?
11
+ { success: true }
12
+ else
13
+ format_hash(JSON.parse(response.body, :quirks_mode => true))
14
+ end
15
+ end
16
+
17
+ def raw_body
18
+ response.body
19
+ end
20
+
21
+ def success?
22
+ [200, 204].include? response.code
23
+ end
24
+
25
+ def code
26
+ response.code
27
+ end
28
+
29
+ def headers
30
+ response.headers
31
+ end
32
+
33
+ private
34
+
35
+ def format_hash(h)
36
+ if h.kind_of? Hash
37
+ Hash[
38
+ h.map do |k, v|
39
+ [k.respond_to?(:to_sym) ? k.to_sym : k, format_hash(v)]
40
+ end
41
+ ]
42
+ else
43
+ h
44
+ end
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,51 @@
1
+ module BeeiqAPI
2
+ class Ticket
3
+ attr_accessor :contact_type
4
+ attr_accessor :title
5
+ attr_accessor :body
6
+ attr_accessor :email
7
+ attr_accessor :phone
8
+ attr_accessor :name
9
+ attr_accessor :passport
10
+ attr_accessor :contact_id
11
+ attr_accessor :group_name
12
+ attr_accessor :sla_name
13
+ attr_accessor :channel
14
+ attr_accessor :tag
15
+
16
+ def initialize(options = {})
17
+ @contactType = options[:contact_type] || Config::ContactType::CUSTOMER
18
+ @title = options[:title]
19
+ @body = options[:body]
20
+ @email = options[:email]
21
+ @phone = options[:phone]
22
+ @name = options[:name]
23
+ @passport = options[:passport]
24
+ @contact_id = options[:contact_id]
25
+ @group_name = options[:group_name]
26
+ @sla_name = options[:sla_name]
27
+ @channel = options[:channel]
28
+ @tag = options[:tag]
29
+
30
+ raise ArgumentError, 'body is required' if @body.to_s.empty?
31
+ end
32
+
33
+ def payload
34
+ data = {
35
+ contactType: @contact_type,
36
+ title: @title,
37
+ body: @body,
38
+ email: @email,
39
+ phone: @phone,
40
+ name: @name,
41
+ passport: @passport,
42
+ contactId: @contact_id,
43
+ groupName: @group_name,
44
+ slaName: @sla_name,
45
+ channel: @channel,
46
+ tag: @tag
47
+ }
48
+ data.delete_if { |k, v| v.nil? || v.empty? }
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,3 @@
1
+ module BeeiqAPI
2
+ VERSION = "0.1.0"
3
+ end
data/lib/beeiq_api.rb ADDED
@@ -0,0 +1,73 @@
1
+ require "beeiq_api/version"
2
+ require "beeiq_api/config"
3
+ require "beeiq_api/response"
4
+ require "beeiq_api/ticket"
5
+ require 'configuration'
6
+ require 'rest-client'
7
+ require 'json'
8
+
9
+ module BeeiqAPI
10
+ class Error < StandardError; end
11
+
12
+ class Client
13
+ attr_reader :webhook_url
14
+ attr_reader :sender_email
15
+
16
+ def initialize(webhook_url = nil, sender_email = nil)
17
+ webhook_url ||= BeeiqAPI.configuration.webhook_url
18
+ sender_email ||= BeeiqAPI.configuration.sender_email
19
+
20
+ raise ArgumentError, 'Missing webhook url' if webhook_url.to_s.empty?
21
+ raise ArgumentError, 'Missing sender_email' if sender_email.to_s.empty?
22
+
23
+ @webhook_url = webhook_url
24
+ @sender_email = sender_email
25
+ end
26
+
27
+ def create_ticket(data = {})
28
+ create_many_ticket([data])
29
+ end
30
+
31
+ def create_many_ticket(data = [])
32
+ payload = build_payload(Config::ActionType::ADD_TICKET, data)
33
+ process(:post, payload)
34
+ end
35
+
36
+ def build_payload(action, data)
37
+ payload =
38
+ case action
39
+ when Config::ActionType::ADD_TICKET
40
+ build_ticket_payload(data)
41
+ end
42
+
43
+ {
44
+ senderUser: @sender_email,
45
+ data: payload
46
+ }
47
+ end
48
+
49
+ def build_ticket_payload(data)
50
+ data.map do |item|
51
+ ticket = BeeiqAPI::Ticket.new item
52
+ {
53
+ actionType: Config::ActionType::ADD_TICKET,
54
+ data: ticket.payload
55
+ }
56
+ end
57
+ end
58
+
59
+ private
60
+
61
+ def process(verb, data=nil)
62
+ begin
63
+ BeeiqAPI::Response.new ::RestClient::Request.execute(method: verb,
64
+ url: @webhook_url,
65
+ headers: { 'Content-Type': 'application/json' },
66
+ payload: data.to_json,
67
+ timeout: 10)
68
+ rescue ::RestClient::ExceptionWithResponse => e
69
+ BeeiqAPI::Response.new e.response
70
+ end
71
+ end
72
+ end
73
+ end
@@ -0,0 +1,22 @@
1
+ module BeeiqAPI
2
+ class << self
3
+ attr_accessor :configuration
4
+ end
5
+
6
+ def self.configure
7
+ self.configuration ||= Configuration.new
8
+ yield(configuration)
9
+ end
10
+
11
+ class Configuration
12
+ # The API key for your project.
13
+ attr_accessor :webhook_url
14
+ # The email sender in BeeIQ platform
15
+ attr_accessor :sender_email
16
+
17
+ def initialize
18
+ @webhook_url= nil
19
+ @sender_email = nil
20
+ end
21
+ end
22
+ end
metadata ADDED
@@ -0,0 +1,133 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: beeiq_api
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Huy Hùng
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-01-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: webmock
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.5'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.5'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rest-client
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.0'
83
+ description: Ruby wrapper for the REST API at https://www.beeiq.com. Documentation
84
+ at https://guide.antbuddy.com/kb/instructions-to-enter-data-into-beeiq-data-platform
85
+ email:
86
+ - huyhung1994@gmail.com
87
+ executables: []
88
+ extensions: []
89
+ extra_rdoc_files: []
90
+ files:
91
+ - ".gitignore"
92
+ - ".rspec"
93
+ - ".travis.yml"
94
+ - CODE_OF_CONDUCT.md
95
+ - Gemfile
96
+ - Gemfile.lock
97
+ - LICENSE.txt
98
+ - README.md
99
+ - Rakefile
100
+ - beeiq_api.gemspec
101
+ - bin/console
102
+ - bin/setup
103
+ - lib/beeiq_api.rb
104
+ - lib/beeiq_api/config.rb
105
+ - lib/beeiq_api/response.rb
106
+ - lib/beeiq_api/ticket.rb
107
+ - lib/beeiq_api/version.rb
108
+ - lib/configuration.rb
109
+ homepage: https://github.com/hungdh0x5e/beeiq_api
110
+ licenses:
111
+ - MIT
112
+ metadata: {}
113
+ post_install_message:
114
+ rdoc_options: []
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ requirements: []
128
+ rubyforge_project:
129
+ rubygems_version: 2.6.13
130
+ signing_key:
131
+ specification_version: 4
132
+ summary: BeeIQ REST API Client
133
+ test_files: []