tenants_helper 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.rspec +2 -0
- data/.rubocop.yml +14 -0
- data/.ruby-version +1 -0
- data/.travis.yml +13 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +21 -0
- data/README.md +97 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/tenants_helper.rb +21 -0
- data/lib/tenants_helper/config_loader.rb +36 -0
- data/lib/tenants_helper/tenants.rb +42 -0
- data/lib/tenants_helper/version.rb +4 -0
- data/tenants_helper.gemspec +42 -0
- metadata +258 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3eca820d9a9f2245f0a6ffa83be601299f4f4131
|
4
|
+
data.tar.gz: 00999284ee11d5e15bbfb02b228592792fd21dd9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 23ed8bf7952af6b307afafc650cb22344495f847d177c9419c53acef8ce64b6fa7cf998f5fea54f2ff64e84942a2715ce262f61960a9db46f515e35fcb4391c7
|
7
|
+
data.tar.gz: 2520e5342188420a7feafbf1c48023b01a636c46f0ff66d075a2b3ef4deaa74740857768ea31ccdb8a01a0dd01d1a7f89581cd6b01bd4bd589acc1524f9f6d51
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.3.0
|
data/.travis.yml
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 2.1
|
4
|
+
- 2.2
|
5
|
+
- 2.3.0
|
6
|
+
before_install: gem install bundler -v 1.11.2
|
7
|
+
notifications:
|
8
|
+
email:
|
9
|
+
- support@travellink.com.au
|
10
|
+
flowdock:
|
11
|
+
secure: rjxg7hIW69k5k/pAMwx7Z3WKdzeNhBV8EvBoD0U7cQ3j0BdTHCw68FrcqiN/AKQkfVbK4IlytLz0LGAZpQ7eGjSWH0O7W23oOk//hqO8caoYr1V2vF29y6rj92vuSlWMJQ6sBvMSNraAh5Xey/LXHT5Cw1KtZcYIorZBS6lxaKIxC9MMjVx7IIorIdYThpMv7SuvZStG9Ra8hZVD1LNOZtmdcEVT2wD0MyBE2LKtFciZlSDxlPJv38jw5k2xT0hOLJ5L4p8PrFhkiKkg/dt8/RLjt+WWNm0XVo5DDkBB4FHty5iUQcXH5BrCLKutH4+KwaUcF3O2jEMLstxZPWX0mHxjD5QOo2OOu1gAFKXE7jFEy+kXYJB7z1cX2hUb1Sgqn9OGqf2D5020peH2nj+vGOWIq7zKzSWYuGn/uQOVIDkS8YiV5PgrhaFj/ieDlKnk2sQ+vL00ERs/GXpg1lMKuyKasIxydfXoHP8bHUE7R2t5gVsZTLTdYInukVg9wFA0S2I09WvyUiQxniP7ljTcqigD+O+NuHGTPga+IJM9jpB/ZHuha2jC0omkR96/dvlhDZtBlnXB88N5kfFFYbaT2a1erYvwBTuVY8QueIv7V3kOmu6pCMTcnR8DNoekzpi3dLQwW8rifu+6MsuLaxsywd8JJmNJQDGxU4CSV5yQUl4=
|
12
|
+
sudo: false
|
13
|
+
cache: bundler
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
4
|
+
|
5
|
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
|
6
|
+
|
7
|
+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
8
|
+
|
9
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
10
|
+
|
11
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
12
|
+
|
13
|
+
This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Akil Madan
|
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,97 @@
|
|
1
|
+
# TenantsHelper
|
2
|
+
|
3
|
+
TenantsHelper is a gem designed to help you load and query a tenants configuration file.
|
4
|
+
A tenants configuration is a very specific YML config file in your project that is in the following format:
|
5
|
+
|
6
|
+
```yml
|
7
|
+
test_tenant_1:
|
8
|
+
name: Test Tenant 1
|
9
|
+
test_tenant_2:
|
10
|
+
name: Test Tenant 2
|
11
|
+
```
|
12
|
+
|
13
|
+
In its current format, the configuration is fairly simple. At the top level is a tenant_id and then under that are the tenant properties.
|
14
|
+
The required tenant properties will be updated over time as more distinct requirements for tenants are introduced.
|
15
|
+
Semantic versioning will be used to ensure new requirements do not break existing projects.
|
16
|
+
(Thus it is important for you to version lock the Gem in your project)
|
17
|
+
|
18
|
+
TenantHelper helps you to achieve the following:
|
19
|
+
* Ensures all your projects that require tenants/clients meet the minimum required properties
|
20
|
+
* Provides a centralised interface to query the tenants
|
21
|
+
|
22
|
+
## Installation
|
23
|
+
|
24
|
+
Add this line to your application's Gemfile
|
25
|
+
|
26
|
+
```ruby
|
27
|
+
gem 'tenants_helper'
|
28
|
+
```
|
29
|
+
|
30
|
+
And then execute:
|
31
|
+
|
32
|
+
$ bundle
|
33
|
+
|
34
|
+
Or install it yourself as:
|
35
|
+
|
36
|
+
$ gem install tenants_helper
|
37
|
+
|
38
|
+
## Usage
|
39
|
+
|
40
|
+
Ensure you have a tenants.yml config file within your project. The file must comply with the sample shown above.
|
41
|
+
Now call TenantsHelper with the path to the config file explicitly passed in
|
42
|
+
|
43
|
+
```ruby
|
44
|
+
tenants = TenantsHelper.tenants config_path: config_path
|
45
|
+
```
|
46
|
+
|
47
|
+
You may also setup the config file in advance
|
48
|
+
|
49
|
+
```ruby
|
50
|
+
# Setup config directory and file in advance
|
51
|
+
TenantsHelper.set_path config_dir: Rails.root.join('config'), config_filename: 'tenants.yml'
|
52
|
+
|
53
|
+
# Now you can call TenantsHelper.tenants in your project without having to pass in config path
|
54
|
+
tenants = TenantsHelper.tenants
|
55
|
+
```
|
56
|
+
|
57
|
+
This will return a TenantsHelper::Tenants object which can then be used to query the tenants config.
|
58
|
+
|
59
|
+
```ruby
|
60
|
+
tenants.valid? test_tenant_1 # Checks to see if 'test_tenant_1' is a valid tenant id
|
61
|
+
tenant = tenants.find test_tenant_1 # Returns the tenant object corresponding with the passed in id
|
62
|
+
puts "Tenant name: #{tenant.name}" # The tenant object can then be used to determine the tenant properties
|
63
|
+
tenants.find_by(name: 'Test Tenant 2') # Returns the first tenant object that meets the query requirements
|
64
|
+
tenants.find_by!(name: 'Test Tenant 2') # Same as above, but gets angry if no tenant is found
|
65
|
+
tenants.name_to_id 'Test Tenant 1' # Will return the id associated with that name
|
66
|
+
```
|
67
|
+
|
68
|
+
## Testing
|
69
|
+
|
70
|
+
If you'd like to test code that calls TenantsHelper, you can mock the yml loading mechanism that TenantsHelper uses to load a custom configuration
|
71
|
+
|
72
|
+
```ruby
|
73
|
+
# Create a custom config hash that complies with the TenantHelper::Tenant schema
|
74
|
+
let(:mock_tenants_config) { { '1' => { name: 'mock_tenants_1' }, '2' => { name: 'mock_tenants_2' } } }
|
75
|
+
|
76
|
+
# Now mock the TenantsHelper::ConfigLoader
|
77
|
+
config_loader_double = double
|
78
|
+
allow(TenantsHelper::ConfigLoader).to receive(:new).and_return(config_loader_double)
|
79
|
+
allow(config_loader_double).to receive(:load_content).and_return(mock_tenants_config)
|
80
|
+
|
81
|
+
# Assuming your mock_tenants_config is correct, TenantsHelper.tenants will load the config sucessfully
|
82
|
+
# and create the appropriate list of TenantHelper::Tenant objects
|
83
|
+
```
|
84
|
+
|
85
|
+
## Development
|
86
|
+
|
87
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
88
|
+
|
89
|
+
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` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
90
|
+
|
91
|
+
## Contributing
|
92
|
+
|
93
|
+
1. Fork it ( https://github.com/sealink/tenants_helper/fork )
|
94
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
95
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
96
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
97
|
+
5. Create a new Pull Reques
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'bundler/setup'
|
4
|
+
require 'queryable-collection'
|
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
|
data/bin/setup
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
module TenantsHelper
|
2
|
+
class << self
|
3
|
+
def tenants(config_path: @config_path_string)
|
4
|
+
config_loader = TenantsHelper::ConfigLoader.new(config_path: config_path)
|
5
|
+
config_content = config_loader.load_content
|
6
|
+
TenantsHelper::Tenants.new(tenants_config_hash: config_content)
|
7
|
+
end
|
8
|
+
|
9
|
+
def set_path(config_dir:, config_filename: 'tenants.yml')
|
10
|
+
@config_path_string = config_dir + '/' + config_filename
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
Error = Class.new(StandardError)
|
15
|
+
end
|
16
|
+
|
17
|
+
require 'yamload'
|
18
|
+
require 'queryable_collection'
|
19
|
+
require 'tenants_helper/version'
|
20
|
+
require 'tenants_helper/config_loader'
|
21
|
+
require 'tenants_helper/tenants'
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'memoist'
|
2
|
+
|
3
|
+
module TenantsHelper
|
4
|
+
class ConfigLoader
|
5
|
+
extend Memoist
|
6
|
+
|
7
|
+
def initialize(config_path:)
|
8
|
+
@config_path = config_path
|
9
|
+
validate_config_path
|
10
|
+
end
|
11
|
+
|
12
|
+
def load_content
|
13
|
+
Yamload::Loader.new(filename, dirname).content
|
14
|
+
end
|
15
|
+
memoize :load_content
|
16
|
+
|
17
|
+
private
|
18
|
+
|
19
|
+
def validate_config_path
|
20
|
+
fail(Error, 'Invalid config path') if @config_path.blank? || !pathname.exist?
|
21
|
+
end
|
22
|
+
|
23
|
+
def pathname
|
24
|
+
Pathname.new(@config_path)
|
25
|
+
end
|
26
|
+
memoize :pathname
|
27
|
+
|
28
|
+
def dirname
|
29
|
+
pathname.dirname
|
30
|
+
end
|
31
|
+
|
32
|
+
def filename
|
33
|
+
pathname.basename('.yml')
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'facets/hash/rekey'
|
2
|
+
module TenantsHelper
|
3
|
+
class Tenants
|
4
|
+
def initialize(tenants_config_hash:)
|
5
|
+
@tenants = QueryableCollection.create(
|
6
|
+
tenants_config_hash.map { |id, attributes|
|
7
|
+
new_attributes = attributes.rekey
|
8
|
+
Tenant.new(new_attributes.merge(id: id))
|
9
|
+
},
|
10
|
+
Tenant.anima.attribute_names
|
11
|
+
)
|
12
|
+
end
|
13
|
+
|
14
|
+
def find_by(query)
|
15
|
+
@tenants.find_by(query)
|
16
|
+
end
|
17
|
+
|
18
|
+
def find_by!(query)
|
19
|
+
find_by(query) ||
|
20
|
+
fail(ArgumentError,
|
21
|
+
"Could not find Tenant for #{query.inspect}")
|
22
|
+
end
|
23
|
+
|
24
|
+
def find(id)
|
25
|
+
find_by!(id: id)
|
26
|
+
end
|
27
|
+
|
28
|
+
def valid?(id)
|
29
|
+
!find_by(id: id).nil?
|
30
|
+
end
|
31
|
+
|
32
|
+
def name_to_id(name)
|
33
|
+
tenant = find_by(name: name)
|
34
|
+
return nil unless tenant
|
35
|
+
tenant.id
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
class Tenant
|
40
|
+
include Anima.new(:id, :name)
|
41
|
+
end
|
42
|
+
end
|
@@ -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 'tenants_helper/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'tenants_helper'
|
8
|
+
spec.version = TenantsHelper::VERSION
|
9
|
+
spec.authors = ['Akil Madan']
|
10
|
+
spec.email = ['support@travellink.com.au']
|
11
|
+
|
12
|
+
spec.summary = 'Gem to validate and query tenants using a standardised tenants config'
|
13
|
+
spec.description = 'TenantsHelper provides a centralised way of defining, querying and' \
|
14
|
+
'validating tenants.'
|
15
|
+
spec.homepage = 'https://github.com/sealink/tenants_helper'
|
16
|
+
spec.license = 'MIT'
|
17
|
+
|
18
|
+
spec.files = `git ls-files -z`
|
19
|
+
.split("\x0")
|
20
|
+
.reject { |f| f.match(%r{^(test|spec|features)/}) }
|
21
|
+
spec.bindir = 'exe'
|
22
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
|
+
spec.require_paths = ['lib']
|
24
|
+
|
25
|
+
spec.required_ruby_version = '>= 2.1'
|
26
|
+
|
27
|
+
spec.add_dependency 'yamload', '~> 0.2'
|
28
|
+
spec.add_dependency 'anima'
|
29
|
+
spec.add_dependency 'queryable_collection', '~> 0.1'
|
30
|
+
spec.add_dependency 'memoist', '~> 0.14'
|
31
|
+
spec.add_dependency 'facets'
|
32
|
+
|
33
|
+
spec.add_development_dependency 'bundler'
|
34
|
+
spec.add_development_dependency 'rake'
|
35
|
+
spec.add_development_dependency 'dotenv'
|
36
|
+
spec.add_development_dependency 'rspec'
|
37
|
+
spec.add_development_dependency 'simplecov'
|
38
|
+
spec.add_development_dependency 'simplecov-rcov'
|
39
|
+
spec.add_development_dependency 'coveralls'
|
40
|
+
spec.add_development_dependency 'rubocop'
|
41
|
+
spec.add_development_dependency 'travis'
|
42
|
+
end
|
metadata
ADDED
@@ -0,0 +1,258 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tenants_helper
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Akil Madan
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-02-09 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: yamload
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: anima
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: queryable_collection
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0.1'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0.1'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: memoist
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.14'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.14'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: facets
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: bundler
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rake
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: dotenv
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rspec
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: simplecov
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: simplecov-rcov
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: coveralls
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: rubocop
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - ">="
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '0'
|
188
|
+
type: :development
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - ">="
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '0'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: travis
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - ">="
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - ">="
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0'
|
209
|
+
description: TenantsHelper provides a centralised way of defining, querying andvalidating
|
210
|
+
tenants.
|
211
|
+
email:
|
212
|
+
- support@travellink.com.au
|
213
|
+
executables: []
|
214
|
+
extensions: []
|
215
|
+
extra_rdoc_files: []
|
216
|
+
files:
|
217
|
+
- ".gitignore"
|
218
|
+
- ".rspec"
|
219
|
+
- ".rubocop.yml"
|
220
|
+
- ".ruby-version"
|
221
|
+
- ".travis.yml"
|
222
|
+
- CODE_OF_CONDUCT.md
|
223
|
+
- Gemfile
|
224
|
+
- LICENSE.txt
|
225
|
+
- README.md
|
226
|
+
- Rakefile
|
227
|
+
- bin/console
|
228
|
+
- bin/setup
|
229
|
+
- lib/tenants_helper.rb
|
230
|
+
- lib/tenants_helper/config_loader.rb
|
231
|
+
- lib/tenants_helper/tenants.rb
|
232
|
+
- lib/tenants_helper/version.rb
|
233
|
+
- tenants_helper.gemspec
|
234
|
+
homepage: https://github.com/sealink/tenants_helper
|
235
|
+
licenses:
|
236
|
+
- MIT
|
237
|
+
metadata: {}
|
238
|
+
post_install_message:
|
239
|
+
rdoc_options: []
|
240
|
+
require_paths:
|
241
|
+
- lib
|
242
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
243
|
+
requirements:
|
244
|
+
- - ">="
|
245
|
+
- !ruby/object:Gem::Version
|
246
|
+
version: '2.1'
|
247
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
248
|
+
requirements:
|
249
|
+
- - ">="
|
250
|
+
- !ruby/object:Gem::Version
|
251
|
+
version: '0'
|
252
|
+
requirements: []
|
253
|
+
rubyforge_project:
|
254
|
+
rubygems_version: 2.5.1
|
255
|
+
signing_key:
|
256
|
+
specification_version: 4
|
257
|
+
summary: Gem to validate and query tenants using a standardised tenants config
|
258
|
+
test_files: []
|