tandaco 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: 3d5d540ad8aed74fe3116efcff21d7e467bae41b
4
+ data.tar.gz: 9ec6d7c51bd0f70ef48e48fb6b0ba4d531fa322e
5
+ SHA512:
6
+ metadata.gz: dcdf19cd2edf3abfcbe123d2330e51934be2e4426632d9084ac146f26db56494f4994c1489009aaf38ca3b7935305f453796a354aca62cf9add555969ac80b0e
7
+ data.tar.gz: '04038ca22a7fb27033a7bd7d0448390c76e1994bbef95055cbdef4ecde53d516ceb44492f415742c2ea1b7bec8a91eb16ace02b0e17c29fa57a2804f51d9809e'
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.2
5
+ before_install: gem install bundler -v 1.15.4
@@ -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 me@armanjon.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,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in tandaco.gemspec
6
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Arman Jon Villalobos
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,49 @@
1
+ ## Tandaco
2
+ Ruby gem that wraps the [Tanda](https://tanda.co) API.
3
+
4
+ ## Installation
5
+ Add to your Gemfile
6
+ ```
7
+ gem 'tandaco'
8
+ ```
9
+
10
+ ## Usage
11
+ Before making any calls you must first generate a token. Instructions on how to
12
+ get that [is
13
+ here](https://my.tanda.co/api/v2/documentation#header-authentication-(authorization-code)).
14
+
15
+ ```ruby
16
+ client = Tandaco.new(token: token)
17
+
18
+ # fetch all users
19
+ client.get_all_users
20
+ ```
21
+
22
+ ## Documentation
23
+ ### Users
24
+ ```ruby
25
+ client = Tandaco.new(token: token)
26
+
27
+ # Fetch all users in your organization
28
+ client.get_all_users
29
+ ```
30
+
31
+ ## Contributing
32
+ 1. Read [api_client_base-ruby](https://github.com/imacchiato/api_client_base-ruby) as I'm using it for gem
33
+ framework.
34
+ 2. Fork this repository.
35
+ 3. Implement your feature or bug fix.
36
+ 4. Add, commit, and push your changes.
37
+ 5. Submit a pull request.
38
+
39
+ ## Thanks
40
+
41
+ **tandaco** © 2017+, Arman Jon Villalobos. Released under the [MIT] License.<br>
42
+ Authored and maintained by Arman Jon Villalobos with help from contributors ([list][contributors]).
43
+
44
+ > [armanjon.com](http://armanjon.com) &nbsp;&middot;&nbsp;
45
+ > GitHub [@iamarmanjon](https://github.com/iamarmanjon) &nbsp;&middot;&nbsp;
46
+ > Twitter [@iamarmanjon](https://twitter.com/iamarmanjon)
47
+
48
+ [MIT]: http://mit-license.org/
49
+ [contributors]: http://github.com/iamarmanjon/tandaco/contributors
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/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "tandaco"
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
data/lib/tandaco.rb ADDED
@@ -0,0 +1,21 @@
1
+ require 'api_client_base'
2
+ require 'json'
3
+ require 'pry'
4
+ require 'tandaco/client'
5
+ require 'tandaco/models/base_model'
6
+ require 'tandaco/models/user'
7
+ require 'tandaco/requests/base_request'
8
+ require 'tandaco/requests/get_all_users_request'
9
+ require 'tandaco/responses/base_response'
10
+ require 'tandaco/responses/get_all_users_response'
11
+ require 'tandaco/version'
12
+ require 'typhoeus'
13
+
14
+ module Tandaco
15
+ include APIClientBase::Base.module
16
+
17
+ with_configuration do
18
+ has :host, classes: String, default: 'https://my.tanda.co'
19
+ has :token, classes: String
20
+ end
21
+ end
@@ -0,0 +1,15 @@
1
+ module Tandaco
2
+ class Client
3
+ include APIClientBase::Client.module(default_opts: :default_opts)
4
+ attribute :host, String
5
+ attribute :token, String
6
+
7
+ api_action :get_all_users
8
+
9
+ private
10
+
11
+ def default_opts
12
+ { host: host, token: token }
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,5 @@
1
+ module Tandaco
2
+ class BaseModel
3
+ include Virtus.model
4
+ end
5
+ end
@@ -0,0 +1,27 @@
1
+ module Tandaco
2
+ class User < BaseModel
3
+ attribute :active, Boolean
4
+ attribute :award_tag_ids, Array
5
+ attribute :award_template_id, String
6
+ attribute :created_at, Integer
7
+ attribute :date_of_birth, String
8
+ attribute :department_ids, Array
9
+ attribute :email, String
10
+ attribute :employee_id, String
11
+ attribute :employment_start_date, String
12
+ attribute :id, Integer
13
+ attribute :managed_department_ids, Array
14
+ attribute :name, String
15
+ attribute :normalized_phone, String
16
+ attribute :part_time_fixed_hours, Float
17
+ attribute :passcode, String
18
+ attribute :photo, String
19
+ attribute :preferred_hours, String
20
+ attribute :qualifications, Array
21
+ attribute :report_department_id, String
22
+ attribute :time_zone, String
23
+ attribute :updated_at, Integer
24
+ attribute :user_levels, Array
25
+ attribute :utc_offset, Integer
26
+ end
27
+ end
@@ -0,0 +1,17 @@
1
+ module Tandaco
2
+ class BaseRequest
3
+ include APIClientBase::Request.module(default_opts: :default_opts)
4
+ attribute :token, String
5
+
6
+ private
7
+
8
+ def headers
9
+ auth = "Bearer #{default_opts[:token]}"
10
+ { 'Cache-Control' => 'no-cache', 'Authorization' => auth }
11
+ end
12
+
13
+ def default_opts
14
+ { token: token }
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,10 @@
1
+ module Tandaco
2
+ class GetAllUsersRequest < BaseRequest
3
+
4
+ private
5
+
6
+ def path
7
+ '/api/v2/users'
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,12 @@
1
+ module Tandaco
2
+ class BaseResponse
3
+ include APIClientBase::Response.module
4
+ attribute :body, String, lazy: true, default: :default_body
5
+
6
+ private
7
+
8
+ def default_body
9
+ JSON.parse(raw_response.body)
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,11 @@
1
+ module Tandaco
2
+ class GetAllUsersResponse < BaseResponse
3
+ attribute :users, Array[Tandaco::User], default: :default_users
4
+
5
+ private
6
+
7
+ def default_users
8
+ body.map { |user| Tandaco::User.new(user) }
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,3 @@
1
+ module Tandaco
2
+ VERSION = "0.1.0"
3
+ end
data/tandaco.gemspec ADDED
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'tandaco/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'tandaco'
8
+ spec.version = Tandaco::VERSION
9
+ spec.authors = ['Arman Jon Villalobos']
10
+ spec.email = ['me@armanjon.com']
11
+
12
+ spec.summary = 'Ruby wrapper for Tanda.co api'
13
+ spec.license = 'MIT'
14
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
15
+ f.match(%r{^(test|spec|features)/})
16
+ end
17
+ spec.bindir = 'exe'
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_development_dependency 'bundler', '~> 1.15'
22
+ spec.add_development_dependency 'factory_girl', '~> 4.8'
23
+ spec.add_development_dependency 'pry', '~> 0.11'
24
+ spec.add_development_dependency 'rake', '~> 10.0'
25
+ spec.add_development_dependency 'rspec', '~> 3.0'
26
+ spec.add_development_dependency 'vcr', '~> 3.0'
27
+ spec.add_development_dependency 'webmock', '~> 3.0'
28
+
29
+ spec.add_dependency 'api_client_base', '~> 1.0'
30
+ spec.add_dependency 'typhoeus', '~> 1.0'
31
+ end
metadata ADDED
@@ -0,0 +1,190 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tandaco
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Arman Jon Villalobos
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-10-03 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: '1.15'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.15'
27
+ - !ruby/object:Gem::Dependency
28
+ name: factory_girl
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '4.8'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '4.8'
41
+ - !ruby/object:Gem::Dependency
42
+ name: pry
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.11'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.11'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: vcr
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '3.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: webmock
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '3.0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '3.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: api_client_base
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '1.0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '1.0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: typhoeus
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '1.0'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '1.0'
139
+ description:
140
+ email:
141
+ - me@armanjon.com
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - ".gitignore"
147
+ - ".rspec"
148
+ - ".travis.yml"
149
+ - CODE_OF_CONDUCT.md
150
+ - Gemfile
151
+ - LICENSE.txt
152
+ - README.md
153
+ - Rakefile
154
+ - bin/console
155
+ - bin/setup
156
+ - lib/tandaco.rb
157
+ - lib/tandaco/client.rb
158
+ - lib/tandaco/models/base_model.rb
159
+ - lib/tandaco/models/user.rb
160
+ - lib/tandaco/requests/base_request.rb
161
+ - lib/tandaco/requests/get_all_users_request.rb
162
+ - lib/tandaco/responses/base_response.rb
163
+ - lib/tandaco/responses/get_all_users_response.rb
164
+ - lib/tandaco/version.rb
165
+ - tandaco.gemspec
166
+ homepage:
167
+ licenses:
168
+ - MIT
169
+ metadata: {}
170
+ post_install_message:
171
+ rdoc_options: []
172
+ require_paths:
173
+ - lib
174
+ required_ruby_version: !ruby/object:Gem::Requirement
175
+ requirements:
176
+ - - ">="
177
+ - !ruby/object:Gem::Version
178
+ version: '0'
179
+ required_rubygems_version: !ruby/object:Gem::Requirement
180
+ requirements:
181
+ - - ">="
182
+ - !ruby/object:Gem::Version
183
+ version: '0'
184
+ requirements: []
185
+ rubyforge_project:
186
+ rubygems_version: 2.6.13
187
+ signing_key:
188
+ specification_version: 4
189
+ summary: Ruby wrapper for Tanda.co api
190
+ test_files: []