rallio 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 85be5c78b7bb8274a8437ea72945e880182081ad
4
+ data.tar.gz: 45de8bdacafe7c047967cb9fe76b8d6bb5069bc2
5
+ SHA512:
6
+ metadata.gz: 04145be6c2b6e068f4e2b65fffce4d0f785f8035f2053bb3a1ad93906565400f6cf88d79e2d74dea9e651fae387757d4cf81a7c15a6bfbcb730d99044d0fbce0
7
+ data.tar.gz: a1ff4013ecd7204952f1c24631546af1e83daa35b125906e36cdbd154c5aef4f4adb6635ce184a891c3d9ef0ff75a9f97575fac3961ff20572e305c8eb65fc72
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,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,10 @@
1
+ addons:
2
+ code_climate:
3
+ repo_token: b4f64f23595e47336c979c86290bcfce4d0af67a767f5394b87cce72a43a8d5a
4
+ sudo: false
5
+ language: ruby
6
+ rvm:
7
+ - 2.4.0
8
+ before_install: gem install bundler -v 1.14.5
9
+ after_success:
10
+ - bundle exec codeclimate-test-reporter
@@ -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 jdguzman@mac.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 rallio.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 JD Guzman
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,133 @@
1
+ [![Code Climate](https://codeclimate.com/github/jdguzman/rallio/badges/gpa.svg)](https://codeclimate.com/github/jdguzman/rallio)
2
+ [![Build Status](https://travis-ci.org/jdguzman/rallio.svg?branch=master)](https://travis-ci.org/jdguzman/rallio)
3
+ [![Test Coverage](https://codeclimate.com/github/jdguzman/rallio/badges/coverage.svg)](https://codeclimate.com/github/jdguzman/rallio/coverage)
4
+ [![Issue Count](https://codeclimate.com/github/jdguzman/rallio/badges/issue_count.svg)](https://codeclimate.com/github/jdguzman/rallio)
5
+
6
+ # Rallio
7
+
8
+ This is a ruby implementation of the Rallio API.
9
+
10
+ ## Installation
11
+
12
+ Add this line to your application's Gemfile:
13
+
14
+ ```ruby
15
+ gem 'rallio'
16
+ ```
17
+
18
+ And then execute:
19
+
20
+ $ bundle
21
+
22
+ Or install it yourself as:
23
+
24
+ $ gem install rallio
25
+
26
+ ## Usage
27
+
28
+ The documentation here is specific to the gem and it's usage. Detailed
29
+ information on the Rallio API can be found at
30
+ https://mark.przepiora.ca/tmp/rallio-public-api-documentation.
31
+
32
+ ### Configuration
33
+
34
+ In order to use the gem you will need to configure your `application_id` and
35
+ `application_secret` provided to you by Rallio. If you are using this within a
36
+ Rails context you should do this in an initializer. Otherwise you need to set
37
+ this up before you make any calls to the API.
38
+
39
+ ```ruby
40
+ Rallio.application_id = '<your id>' # => '<your_id>'
41
+ Rallio.application_secret = '<your secret>' # => '<your secret>'
42
+ ```
43
+
44
+ ### User
45
+
46
+ #### .accessible_users
47
+
48
+ The user class can be used to access all available users for a given
49
+ application.
50
+
51
+ ```ruby
52
+ Rallio::User.accessible_users
53
+ # =>
54
+ # [<Rallio::User:0x007fc325b36808 @id=100, @email="bob@yourcompany.com", @first_name="Bob", @last_name="Anderson", @accounts=[], @franchisors=[]>]
55
+ ```
56
+
57
+ #### #sign_on_tokens
58
+
59
+ With an instantiated user object you can call to get a single sign-on token
60
+ for the given user.
61
+
62
+ ```ruby
63
+ user
64
+ # => <Rallio::User @id=100, @email="bob@yourcompany.com", @first_name="Bob", @last_name="Anderson", @accounts=[], @franchisors=[]>
65
+
66
+ user.sign_on_tokens
67
+ # => <Rallio::SignOnToken @token="15ad86b2ede6", @expires_at=#<DateTime: 2015-04-16T23:5...,321000000n),+0s,2299161j)>, @url="https://app.rallio.com/api/internal/sign_on_tokens/15ad86b2ede6">
68
+ ```
69
+
70
+ #### #access_token
71
+
72
+ With an instantiated user object you can call to get an access token for the
73
+ given user.
74
+
75
+ ```ruby
76
+ user
77
+ # => <Rallio::User @id=100, @email="bob@yourcompany.com", @first_name="Bob", @last_name="Anderson", @accounts=[], @franchisors=[]>
78
+
79
+ user.access_token
80
+ # => <Rallio::AccessToken @access_token="4a25dd89e50bd0a0db1eeae65864fe6b", @user_id=100, @expires_at=nil, @scopes="user_info basic_access">
81
+ ```
82
+
83
+ ### SignOnToken
84
+
85
+ #### .create
86
+
87
+ A sign-on token can also be created independently of a user object. Calling the
88
+ `SignOnToken.create` method with a user id will return a sign-on token for that
89
+ user.
90
+
91
+ ```ruby
92
+ Rallio::SignOnToken.create(user_id: 100)
93
+ # => <Rallio::SignOnToken:0x007fa9d703b7d0 @token="15ad86b2ede6", @expires_at=#<DateTime: 2015-04-16T23:5...,321000000n),+0s,2299161j)>, @url="https://app.rallio.com/api/internal/sign_on_tokens/15ad86b2ede6">
94
+ ```
95
+
96
+ ### Access Token
97
+
98
+ #### .create
99
+
100
+ An access token can also be created independently of a user object. Calling the
101
+ `AccessToken.create` method with a user id will return an access token for that
102
+ user.
103
+
104
+ ```ruby
105
+ Rallio::AccessToken.create(user_id: 100)
106
+ # => <Rallio::AccessToken:0x007fd3fc9fea70 @access_token="4a25dd89e50bd0a0db1eeae65864fe6b", @user_id=100, @expires_at=nil, @scopes="user_info basic_access">
107
+ ```
108
+
109
+ #### #destroy
110
+
111
+ Destroys the access_token passed in for the object.
112
+
113
+ ```ruby
114
+ access_token = Rallio::AccessToken.new(access_token: '4a25dd89e50bd0a0db1eeae65864fe6b')
115
+ # => <Rallio::AccessToken:0x007fd3fc9fea70 @access_token="4a25dd89e50bd0a0db1eeae65864fe6b", @user_id=nil, @expires_at=nil, @scopes=nil>
116
+
117
+ access_token.destroy # => true
118
+ ```
119
+
120
+ ## Development
121
+
122
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
123
+
124
+ 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).
125
+
126
+ ## Contributing
127
+
128
+ Bug reports and pull requests are welcome on GitHub at https://github.com/jdguzman/rallio. 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.
129
+
130
+
131
+ ## License
132
+
133
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
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 "rallio"
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,19 @@
1
+ module Rallio
2
+ class AccessToken < Base
3
+ attribute :access_token, String
4
+ attribute :user_id, Integer
5
+ attribute :expires_at, DateTime
6
+ attribute :scopes, String
7
+
8
+ def self.create(user_id:)
9
+ response = self.post("/users/#{user_id}/access_token", headers: app_credentials)
10
+ new response.parsed_response
11
+ end
12
+
13
+ def destroy
14
+ headers = { 'Authentication' => "Bearer #{access_token}" }
15
+ self.class.delete('/access_token', headers: headers)
16
+ true
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,4 @@
1
+ module Rallio
2
+ class Account < Franchisor
3
+ end
4
+ end
@@ -0,0 +1,17 @@
1
+ module Rallio
2
+ class Base
3
+ include HTTParty
4
+ include Virtus.model
5
+
6
+ base_uri 'https://app.rallio.com/api/v1'
7
+
8
+ private
9
+
10
+ def self.app_credentials
11
+ {
12
+ 'X-Application-ID' => Rallio.application_id,
13
+ 'X-Application-Secret' => Rallio.application_secret
14
+ }
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,8 @@
1
+ module Rallio
2
+ class Franchisor
3
+ include Virtus.model
4
+
5
+ attribute :id, Integer
6
+ attribute :name, String
7
+ end
8
+ end
@@ -0,0 +1,12 @@
1
+ module Rallio
2
+ class SignOnToken < Base
3
+ attribute :token, String
4
+ attribute :expires_at, DateTime
5
+ attribute :url, String
6
+
7
+ def self.create(user_id:)
8
+ response = self.post("/users/#{user_id}/sign_on_tokens", headers: app_credentials)
9
+ new response.parsed_response
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,25 @@
1
+ module Rallio
2
+ class User < Base
3
+ attribute :id, Integer
4
+ attribute :email, String
5
+ attribute :first_name, String
6
+ attribute :last_name, String
7
+ attribute :accounts, Array[Account]
8
+ attribute :franchisors, Array[Franchisor]
9
+
10
+ def self.accessible_users
11
+ response = self.get('/accessible_users', headers: app_credentials)
12
+ response.parsed_response[:users].map { |u| User.new(u) }
13
+ end
14
+
15
+ def sign_on_tokens
16
+ SignOnToken.create(user_id: id)
17
+ # response = self.class.post("/users/#{id}/sign_on_tokens", headers: app_credentials)
18
+ # SignOnToken.new response.parsed_response[:sign_on_token]
19
+ end
20
+
21
+ def access_token
22
+ @access_token ||= AccessToken.create(user_id: id)
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,3 @@
1
+ module Rallio
2
+ VERSION = "0.1.0"
3
+ end
data/lib/rallio.rb ADDED
@@ -0,0 +1,23 @@
1
+ require 'httparty'
2
+ require 'virtus'
3
+ require 'autoloaded'
4
+
5
+ module Rallio
6
+ Autoloaded.class {}
7
+
8
+ def self.application_id=(value)
9
+ @application_id = value
10
+ end
11
+
12
+ def self.application_id
13
+ @application_id
14
+ end
15
+
16
+ def self.application_secret=(value)
17
+ @application_secret = value
18
+ end
19
+
20
+ def self.application_secret
21
+ @application_secret
22
+ end
23
+ end
data/rallio.gemspec ADDED
@@ -0,0 +1,42 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rallio/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "rallio"
8
+ spec.version = Rallio::VERSION
9
+ spec.authors = ["JD Guzman"]
10
+ spec.email = ["jdguzman@mac.com"]
11
+
12
+ spec.summary = %q{Rallio API}
13
+ spec.description = %q{Rallio API implementation in Ruby}
14
+ spec.homepage = "https://github.com/jdguzman/rallio"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_dependency "virtus", "~> 1.0"
34
+ spec.add_dependency "httparty", "~> 0.14"
35
+ spec.add_dependency "autoloaded", "~> 2.0"
36
+
37
+ spec.add_development_dependency "bundler", "~> 1.14"
38
+ spec.add_development_dependency "rake", "~> 10.0"
39
+ spec.add_development_dependency "rspec", "~> 3.0"
40
+ spec.add_development_dependency "rspec-its", "~> 1.2"
41
+ spec.add_development_dependency "codeclimate-test-reporter", "~> 1.0"
42
+ end
metadata ADDED
@@ -0,0 +1,176 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rallio
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - JD Guzman
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-03-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: virtus
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: httparty
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.14'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.14'
41
+ - !ruby/object:Gem::Dependency
42
+ name: autoloaded
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.14'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.14'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '10.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
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: rspec-its
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '1.2'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '1.2'
111
+ - !ruby/object:Gem::Dependency
112
+ name: codeclimate-test-reporter
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '1.0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '1.0'
125
+ description: Rallio API implementation in Ruby
126
+ email:
127
+ - jdguzman@mac.com
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - ".gitignore"
133
+ - ".rspec"
134
+ - ".travis.yml"
135
+ - CODE_OF_CONDUCT.md
136
+ - Gemfile
137
+ - LICENSE.txt
138
+ - README.md
139
+ - Rakefile
140
+ - bin/console
141
+ - bin/setup
142
+ - lib/rallio.rb
143
+ - lib/rallio/access_token.rb
144
+ - lib/rallio/account.rb
145
+ - lib/rallio/base.rb
146
+ - lib/rallio/franchisor.rb
147
+ - lib/rallio/sign_on_token.rb
148
+ - lib/rallio/user.rb
149
+ - lib/rallio/version.rb
150
+ - rallio.gemspec
151
+ homepage: https://github.com/jdguzman/rallio
152
+ licenses:
153
+ - MIT
154
+ metadata:
155
+ allowed_push_host: https://rubygems.org
156
+ post_install_message:
157
+ rdoc_options: []
158
+ require_paths:
159
+ - lib
160
+ required_ruby_version: !ruby/object:Gem::Requirement
161
+ requirements:
162
+ - - ">="
163
+ - !ruby/object:Gem::Version
164
+ version: '0'
165
+ required_rubygems_version: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - ">="
168
+ - !ruby/object:Gem::Version
169
+ version: '0'
170
+ requirements: []
171
+ rubyforge_project:
172
+ rubygems_version: 2.6.8
173
+ signing_key:
174
+ specification_version: 4
175
+ summary: Rallio API
176
+ test_files: []