reevoo_sapience 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/.coveralls.yml +1 -0
- data/.gitignore +57 -0
- data/.rspec +2 -0
- data/.ruby-version +1 -0
- data/.simplecov +20 -0
- data/.travis.yml +21 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +9 -0
- data/LICENSE +21 -0
- data/LICENSE.txt +21 -0
- data/README.md +25 -0
- data/Rakefile +13 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/default_reevoo_sapience.yml +69 -0
- data/lib/reevoo_sapience.rb +17 -0
- data/lib/reevoo_sapience/version.rb +3 -0
- data/reevoo_sapience-rb.gemspec +44 -0
- metadata +248 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5d5803dcb5ab34f8b2c2eb0f2f1cac2a4cc29c52
|
4
|
+
data.tar.gz: b30a322e307e0997db77d589907aded067c1297c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6e318fc78afbde705299b2808eda5e11971042cfeaeae2c9e7ae945d8147ff2196f94d481d3ce87b9b7e2be044f7e4e4ce673cb9e5ad0a61823a9be7f3f293b1
|
7
|
+
data.tar.gz: e2c856ba9b63f82ef35a5cbb273fd7fe07683847551cb5697132e7675c7a551de73d31de5c337574202c44b2aa2d09c438f6d53614e65ff6a1480042e9038858
|
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
repo_token: buh1JPwCSUgD0l5KwBJagAvvomhzquBiw
|
data/.gitignore
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
.idea
|
2
|
+
*.gem
|
3
|
+
*.rbc
|
4
|
+
/.bundle/
|
5
|
+
/.yardoc
|
6
|
+
/Gemfile.lock
|
7
|
+
/.config
|
8
|
+
/_yardoc/
|
9
|
+
/coverage/
|
10
|
+
/InstalledFiles
|
11
|
+
/doc/
|
12
|
+
/pkg/
|
13
|
+
/spec/reports/
|
14
|
+
/spec/examples.txt
|
15
|
+
/test/tmp/
|
16
|
+
/test/version_tmp/
|
17
|
+
/tmp/
|
18
|
+
|
19
|
+
# Used by dotenv library to load environment variables.
|
20
|
+
# .env
|
21
|
+
|
22
|
+
## Specific to RubyMotion:
|
23
|
+
.dat*
|
24
|
+
.repl_history
|
25
|
+
build/
|
26
|
+
spec/examples.txt
|
27
|
+
*.bridgesupport
|
28
|
+
build-iPhoneOS/
|
29
|
+
build-iPhoneSimulator/
|
30
|
+
|
31
|
+
## Specific to RubyMotion (use of CocoaPods):
|
32
|
+
#
|
33
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
34
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
35
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
36
|
+
#
|
37
|
+
# vendor/Pods/
|
38
|
+
|
39
|
+
## Documentation cache and generated files:
|
40
|
+
/.yardoc/
|
41
|
+
/_yardoc/
|
42
|
+
/doc/
|
43
|
+
/rdoc/
|
44
|
+
|
45
|
+
## Environment normalization:
|
46
|
+
/.bundle/
|
47
|
+
/vendor/bundle
|
48
|
+
/lib/bundler/man/
|
49
|
+
|
50
|
+
# for a library or gem, you might want to ignore these files since the code is
|
51
|
+
# intended to run in multiple environments; otherwise, check them in:
|
52
|
+
# Gemfile.lock
|
53
|
+
# .ruby-version
|
54
|
+
# .ruby-gemset
|
55
|
+
|
56
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
57
|
+
.rvmrc
|
data/.rspec
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.3.1
|
data/.simplecov
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
require "simplecov-json"
|
2
|
+
require "codeclimate-test-reporter"
|
3
|
+
require "coveralls"
|
4
|
+
|
5
|
+
CodeClimate::TestReporter.start
|
6
|
+
SimpleCov.maximum_coverage_drop 1
|
7
|
+
|
8
|
+
SimpleCov.formatters = [
|
9
|
+
SimpleCov::Formatter::HTMLFormatter,
|
10
|
+
SimpleCov::Formatter::JSONFormatter,
|
11
|
+
CodeClimate::TestReporter::Formatter,
|
12
|
+
Coveralls::SimpleCov::Formatter,
|
13
|
+
]
|
14
|
+
|
15
|
+
CodeClimate::TestReporter.start
|
16
|
+
SimpleCov.start do
|
17
|
+
add_filter "/spec/"
|
18
|
+
add_filter "/bin/"
|
19
|
+
add_filter "/gemfiles/"
|
20
|
+
end
|
data/.travis.yml
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
sudo: false
|
2
|
+
language: ruby
|
3
|
+
cache: bundler
|
4
|
+
before_install:
|
5
|
+
- rvm get head
|
6
|
+
- gem update --system
|
7
|
+
- gem install bundler
|
8
|
+
install:
|
9
|
+
- bundle install -j8 -r3
|
10
|
+
script:
|
11
|
+
- if [[ "${STYLE}" = "true" ]]; then bundle exec rake reevoocop; fi;
|
12
|
+
- bundle exec rspec spec
|
13
|
+
env: STYLE=false
|
14
|
+
matrix:
|
15
|
+
fast_finish: true
|
16
|
+
include:
|
17
|
+
- rvm: 2.3.1
|
18
|
+
env: STYLE=true
|
19
|
+
notifications:
|
20
|
+
slack:
|
21
|
+
secure: CshVvjmjiBVhLjkDsv/LtuXcF2HYngSdHEyDpmb2JDZrUZcNRGBAf4rZdkM+Z1+HmdJ95e0oVHRJX7dasAioUWdqGKsFQ2Rkc4iM0ocV6SLv2vt1Z/QJeAt6F5M/1Fn0RqXeMd4QbkRqF+xi5YMnzdNsyuyO2SrHZQRxg5SwYJNyPQsTnJgRePBz1Y7ilXirquGs4cXwjIfgeKhUGEWhx/Oiu5XH5lcQnxAh7LJW6zmnHFc29lHnzDpw+HQMLdrAH+15MyCu82ZxaWkNeUa2bl1IQg5p08RI9k7PK8SpgO34A5tkMmc1/wfW1ZsSjbltgJuJC8YJelqvNZvO5zBrNX/yNUEKBELz612bW1GVPGcMwhHUscwAK5WzUmVmGNktBEkm2YEjTbjvvnHtP6jNTHTpuwECySm2vrTym7xBNJFmv2bGZ5uNonhDfk68qu2Fx+qx819ZeDnngvmF2H4T0HrhVJ+WTn9eXMNcIxy2ZCwsqUiUIH6b3Ww5MagYc/lXpLtyEmtke15OwmP85wDLBeLfpW8Ox7oJFbj/WKP96BQo5XXoUSOUsrRv2eulM+Lh5YwQV3ka8lxrklZBC5qgPMdNXybN59GOwjCAHq7n9fr9XR0jPap99ZgeaVyAzTzfxWDFiSldU5ZXKehgE6XGGP3zuzu2LQsQ8dRy4yHm2c0=
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at mikael@zoolutions.se. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2016 Reevoo
|
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 all
|
13
|
+
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 THE
|
21
|
+
SOFTWARE.
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Mikael Henriksson
|
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,25 @@
|
|
1
|
+
# ReevooSapience::Rb
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/reevoo/reevoo_sapience-rb.svg?branch=master)](https://travis-ci.org/reevoo/reevoo_sapience-rb)[![Code Climate](https://codeclimate.com/github/reevoo/reevoo_sapience-rb/badges/gpa.svg)](https://codeclimate.com/github/reevoo/reevoo_sapience-rb)[![Test Coverage](https://codeclimate.com/github/reevoo/reevoo_sapience-rb/badges/coverage.svg)](https://codeclimate.com/github/reevoo/reevoo_sapience-rb/coverage)[![Issue Count](https://codeclimate.com/github/reevoo/reevoo_sapience-rb/badges/issue_count.svg)](https://codeclimate.com/github/reevoo/reevoo_sapience-rb)
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'reevoo_sapience-rb'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install reevoo_sapience
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
There is nothing to be done here. The gem contains a reevoo specific override `sapience.yml` with the configuration the Reevoo Ltd. company uses internally. It is used to centralize logging, metrics and exception collection within our organization.
|
24
|
+
|
25
|
+
Our configuration can be found in [lib/default_reevoo_sapience.yml](https://github.com/reevoo/reevoo_sapience-rb/blob/master/lib/default_reevoo_sapience.yml).
|
data/Rakefile
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
require "rspec/core/rake_task"
|
3
|
+
|
4
|
+
RSpec::Core::RakeTask.new(:spec)
|
5
|
+
|
6
|
+
begin
|
7
|
+
require "reevoocop/rake_task"
|
8
|
+
ReevooCop::RakeTask.new(:reevoocop) do |task|
|
9
|
+
task.options = ["-D"]
|
10
|
+
end
|
11
|
+
rescue LoadError # rubocop:disable Lint/HandleExceptions
|
12
|
+
end
|
13
|
+
task default: [:reevocop, :spec]
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "reevoo_sapience/rb"
|
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,69 @@
|
|
1
|
+
---
|
2
|
+
default:
|
3
|
+
log_level: debug
|
4
|
+
appenders:
|
5
|
+
- file:
|
6
|
+
io: STDOUT
|
7
|
+
formatter: json
|
8
|
+
- statsd:
|
9
|
+
url: udp://localhost:8125
|
10
|
+
- sentry:
|
11
|
+
dsn: <%= ENV.fetch('RAVEN_DSN') %>
|
12
|
+
|
13
|
+
test:
|
14
|
+
log_level: warn
|
15
|
+
appenders:
|
16
|
+
- file:
|
17
|
+
io: STDOUT
|
18
|
+
formatter: color
|
19
|
+
|
20
|
+
development:
|
21
|
+
log_level: debug
|
22
|
+
appenders:
|
23
|
+
- file:
|
24
|
+
file_name: log/development.log
|
25
|
+
formatter: color
|
26
|
+
|
27
|
+
production:
|
28
|
+
log_level: warn
|
29
|
+
appenders:
|
30
|
+
- file:
|
31
|
+
io: STDOUT
|
32
|
+
formatter: json
|
33
|
+
- statsd:
|
34
|
+
url: udp://localhost:8125
|
35
|
+
- sentry:
|
36
|
+
dsn: <%= ENV.fetch('RAVEN_DSN') %>
|
37
|
+
|
38
|
+
integration:
|
39
|
+
log_level: warn
|
40
|
+
appenders:
|
41
|
+
- file:
|
42
|
+
io: STDOUT
|
43
|
+
formatter: json
|
44
|
+
- statsd:
|
45
|
+
url: udp://localhost:8125
|
46
|
+
- sentry:
|
47
|
+
dsn: <%= ENV.fetch('RAVEN_DSN') %>
|
48
|
+
|
49
|
+
staging:
|
50
|
+
log_level: warn
|
51
|
+
appenders:
|
52
|
+
- file:
|
53
|
+
io: STDOUT
|
54
|
+
formatter: json
|
55
|
+
- statsd:
|
56
|
+
url: udp://localhost:8125
|
57
|
+
- sentry:
|
58
|
+
dsn: <%= ENV.fetch('RAVEN_DSN') %>
|
59
|
+
|
60
|
+
ci:
|
61
|
+
log_level: warn
|
62
|
+
appenders:
|
63
|
+
- file:
|
64
|
+
io: STDOUT
|
65
|
+
formatter: json
|
66
|
+
- statsd:
|
67
|
+
url: udp://localhost:8125
|
68
|
+
- sentry:
|
69
|
+
dsn: <%= ENV.fetch('RAVEN_DSN') %>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require "reevoo_sapience/version"
|
2
|
+
require "sapience"
|
3
|
+
|
4
|
+
module Sapience
|
5
|
+
module ConfigLoader
|
6
|
+
REEVOO_DEFAULT_FILE = "default_reevoo_sapience.yml".freeze
|
7
|
+
CURRENT_FOLDER = File.realpath(File.dirname(__FILE__))
|
8
|
+
|
9
|
+
class << self
|
10
|
+
def config_file_path
|
11
|
+
return application_config_file if File.exist?(application_config_file)
|
12
|
+
|
13
|
+
File.join(CURRENT_FOLDER, REEVOO_DEFAULT_FILE)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "reevoo_sapience/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "reevoo_sapience"
|
8
|
+
spec.version = ReevooSapience::VERSION
|
9
|
+
spec.authors = ["Mikael Henriksson", "Alex Malkov"]
|
10
|
+
spec.email = ["mika@reevoo.com", "alex.malkov@reevoo.com"]
|
11
|
+
|
12
|
+
spec.summary = "Centralizd sapience configuration for Reevoo Ltd."
|
13
|
+
spec.description = "Centralizd sapience configuration for Reevoo Ltd. See README.md for more information"
|
14
|
+
spec.homepage = "https://github.com/reevoo/reevoo_sapience-rb"
|
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
|
+
fail "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
23
|
+
end
|
24
|
+
|
25
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(/^(test|spec|features)\//) }
|
26
|
+
spec.bindir = "exe"
|
27
|
+
spec.executables = spec.files.grep(/^exe\//) { |f| File.basename(f) }
|
28
|
+
spec.require_paths = ["lib"]
|
29
|
+
|
30
|
+
spec.add_dependency "sapience"
|
31
|
+
|
32
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
33
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
34
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
35
|
+
spec.add_development_dependency "rspec-its"
|
36
|
+
spec.add_development_dependency "pry-nav"
|
37
|
+
spec.add_development_dependency "reevoocop"
|
38
|
+
spec.add_development_dependency "fuubar"
|
39
|
+
spec.add_development_dependency "simplecov"
|
40
|
+
spec.add_development_dependency "simplecov-json"
|
41
|
+
spec.add_development_dependency "codeclimate-test-reporter"
|
42
|
+
spec.add_development_dependency "coveralls"
|
43
|
+
spec.add_development_dependency "gem-release"
|
44
|
+
end
|
metadata
ADDED
@@ -0,0 +1,248 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: reevoo_sapience
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mikael Henriksson
|
8
|
+
- Alex Malkov
|
9
|
+
autorequire:
|
10
|
+
bindir: exe
|
11
|
+
cert_chain: []
|
12
|
+
date: 2016-08-22 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: sapience
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ">="
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '0'
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '0'
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: bundler
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '1.12'
|
35
|
+
type: :development
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '1.12'
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: rake
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - "~>"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '10.0'
|
49
|
+
type: :development
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - "~>"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '10.0'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: rspec
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '3.0'
|
63
|
+
type: :development
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '3.0'
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: rspec-its
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
type: :development
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: pry-nav
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
type: :development
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: reevoocop
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
type: :development
|
106
|
+
prerelease: false
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: fuubar
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0'
|
119
|
+
type: :development
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: simplecov
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - ">="
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '0'
|
133
|
+
type: :development
|
134
|
+
prerelease: false
|
135
|
+
version_requirements: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - ">="
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '0'
|
140
|
+
- !ruby/object:Gem::Dependency
|
141
|
+
name: simplecov-json
|
142
|
+
requirement: !ruby/object:Gem::Requirement
|
143
|
+
requirements:
|
144
|
+
- - ">="
|
145
|
+
- !ruby/object:Gem::Version
|
146
|
+
version: '0'
|
147
|
+
type: :development
|
148
|
+
prerelease: false
|
149
|
+
version_requirements: !ruby/object:Gem::Requirement
|
150
|
+
requirements:
|
151
|
+
- - ">="
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: '0'
|
154
|
+
- !ruby/object:Gem::Dependency
|
155
|
+
name: codeclimate-test-reporter
|
156
|
+
requirement: !ruby/object:Gem::Requirement
|
157
|
+
requirements:
|
158
|
+
- - ">="
|
159
|
+
- !ruby/object:Gem::Version
|
160
|
+
version: '0'
|
161
|
+
type: :development
|
162
|
+
prerelease: false
|
163
|
+
version_requirements: !ruby/object:Gem::Requirement
|
164
|
+
requirements:
|
165
|
+
- - ">="
|
166
|
+
- !ruby/object:Gem::Version
|
167
|
+
version: '0'
|
168
|
+
- !ruby/object:Gem::Dependency
|
169
|
+
name: coveralls
|
170
|
+
requirement: !ruby/object:Gem::Requirement
|
171
|
+
requirements:
|
172
|
+
- - ">="
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: '0'
|
175
|
+
type: :development
|
176
|
+
prerelease: false
|
177
|
+
version_requirements: !ruby/object:Gem::Requirement
|
178
|
+
requirements:
|
179
|
+
- - ">="
|
180
|
+
- !ruby/object:Gem::Version
|
181
|
+
version: '0'
|
182
|
+
- !ruby/object:Gem::Dependency
|
183
|
+
name: gem-release
|
184
|
+
requirement: !ruby/object:Gem::Requirement
|
185
|
+
requirements:
|
186
|
+
- - ">="
|
187
|
+
- !ruby/object:Gem::Version
|
188
|
+
version: '0'
|
189
|
+
type: :development
|
190
|
+
prerelease: false
|
191
|
+
version_requirements: !ruby/object:Gem::Requirement
|
192
|
+
requirements:
|
193
|
+
- - ">="
|
194
|
+
- !ruby/object:Gem::Version
|
195
|
+
version: '0'
|
196
|
+
description: Centralizd sapience configuration for Reevoo Ltd. See README.md for more
|
197
|
+
information
|
198
|
+
email:
|
199
|
+
- mika@reevoo.com
|
200
|
+
- alex.malkov@reevoo.com
|
201
|
+
executables: []
|
202
|
+
extensions: []
|
203
|
+
extra_rdoc_files: []
|
204
|
+
files:
|
205
|
+
- ".coveralls.yml"
|
206
|
+
- ".gitignore"
|
207
|
+
- ".rspec"
|
208
|
+
- ".ruby-version"
|
209
|
+
- ".simplecov"
|
210
|
+
- ".travis.yml"
|
211
|
+
- CODE_OF_CONDUCT.md
|
212
|
+
- Gemfile
|
213
|
+
- LICENSE
|
214
|
+
- LICENSE.txt
|
215
|
+
- README.md
|
216
|
+
- Rakefile
|
217
|
+
- bin/console
|
218
|
+
- bin/setup
|
219
|
+
- lib/default_reevoo_sapience.yml
|
220
|
+
- lib/reevoo_sapience.rb
|
221
|
+
- lib/reevoo_sapience/version.rb
|
222
|
+
- reevoo_sapience-rb.gemspec
|
223
|
+
homepage: https://github.com/reevoo/reevoo_sapience-rb
|
224
|
+
licenses:
|
225
|
+
- MIT
|
226
|
+
metadata:
|
227
|
+
allowed_push_host: https://rubygems.org
|
228
|
+
post_install_message:
|
229
|
+
rdoc_options: []
|
230
|
+
require_paths:
|
231
|
+
- lib
|
232
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
233
|
+
requirements:
|
234
|
+
- - ">="
|
235
|
+
- !ruby/object:Gem::Version
|
236
|
+
version: '0'
|
237
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
238
|
+
requirements:
|
239
|
+
- - ">="
|
240
|
+
- !ruby/object:Gem::Version
|
241
|
+
version: '0'
|
242
|
+
requirements: []
|
243
|
+
rubyforge_project:
|
244
|
+
rubygems_version: 2.6.6
|
245
|
+
signing_key:
|
246
|
+
specification_version: 4
|
247
|
+
summary: Centralizd sapience configuration for Reevoo Ltd.
|
248
|
+
test_files: []
|