satisfaction 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/.circleci/config.yml +61 -0
- data/.env.example +3 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +17 -0
- data/.gitignore +14 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/CHANGELOG.md +8 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +85 -0
- data/LICENSE +21 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/satsifaction +7 -0
- data/lib/satisfaction.rb +14 -0
- data/lib/satisfaction/cli.rb +9 -0
- data/lib/satisfaction/persist.rb +21 -0
- data/lib/satisfaction/schema.rb +15 -0
- data/lib/satisfaction/transmit.rb +22 -0
- data/lib/satisfaction/validator.rb +11 -0
- data/lib/satisfaction/version.rb +3 -0
- data/lib/satisfaction_web/app.rb +1 -0
- data/lib/schemas/sentiment.json +113 -0
- data/satisfaction.gemspec +46 -0
- metadata +229 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9b3a0577e882f65713a0c9ca2e7cba1bbed34e109afae43708f71a8e22a4c945
|
4
|
+
data.tar.gz: a95d83af266c782754db91c39c8c85439ac4ec8f89d1c32cfe13976adc09b70d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: eb39f1867849f4a158179ddd44fc73759620a0e25e8e4ee77ced5a9ee72366951ba10bbc8a180b94870f20ec9514313f32fece0dcc396d025ea919cdf0cce0dc
|
7
|
+
data.tar.gz: d37f075af6da59777d6bf3e49fa17911e39e03b17764be6d5ba618c12e3ca3852275c6fd4a7c00373fe12c517da96df743b4d544d6236c6cc948b00b3647f050
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# Ruby CircleCI 2.0 configuration file
|
2
|
+
#
|
3
|
+
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
|
4
|
+
#
|
5
|
+
version: 2
|
6
|
+
jobs:
|
7
|
+
build:
|
8
|
+
docker:
|
9
|
+
# specify the version you desire here
|
10
|
+
- image: circleci/ruby:2.5-node-browsers
|
11
|
+
|
12
|
+
# Specify service dependencies here if necessary
|
13
|
+
# CircleCI maintains a library of pre-built images
|
14
|
+
# documented at https://circleci.com/docs/2.0/circleci-images/
|
15
|
+
# - image: circleci/postgres:9.4
|
16
|
+
|
17
|
+
working_directory: ~/repo
|
18
|
+
|
19
|
+
steps:
|
20
|
+
- checkout
|
21
|
+
|
22
|
+
# Download and cache dependencies
|
23
|
+
- restore_cache:
|
24
|
+
keys:
|
25
|
+
- v1-dependencies-{{ checksum "Gemfile.lock" }}
|
26
|
+
# fallback to using the latest cache if no exact match is found
|
27
|
+
- v1-dependencies-
|
28
|
+
|
29
|
+
- run:
|
30
|
+
name: install dependencies
|
31
|
+
command: |
|
32
|
+
bundle install --jobs=4 --retry=3 --path vendor/bundle
|
33
|
+
|
34
|
+
- save_cache:
|
35
|
+
paths:
|
36
|
+
- ./vendor/bundle
|
37
|
+
key: v1-dependencies-{{ checksum "Gemfile.lock" }}
|
38
|
+
|
39
|
+
# Database setup
|
40
|
+
#- run: bundle exec rake db:create
|
41
|
+
# - run: bundle exec rake db:schema:load
|
42
|
+
|
43
|
+
# run tests!
|
44
|
+
- run:
|
45
|
+
name: run tests
|
46
|
+
command: |
|
47
|
+
mkdir /tmp/test-results
|
48
|
+
TEST_FILES="$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)"
|
49
|
+
|
50
|
+
bundle exec rspec --format progress \
|
51
|
+
--format RspecJunitFormatter \
|
52
|
+
--out /tmp/test-results/rspec.xml \
|
53
|
+
--format progress \
|
54
|
+
$TEST_FILES
|
55
|
+
|
56
|
+
# collect reports
|
57
|
+
- store_test_results:
|
58
|
+
path: /tmp/test-results
|
59
|
+
- store_artifacts:
|
60
|
+
path: /tmp/test-results
|
61
|
+
destination: test-results
|
data/.env.example
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
## What does this PR Do?
|
2
|
+
|
3
|
+
## Remaining Work (If WIP Status)
|
4
|
+
|
5
|
+
## Where should the reviewer start?
|
6
|
+
|
7
|
+
## How has this been tested?
|
8
|
+
|
9
|
+
## Any background context you want to provide?
|
10
|
+
|
11
|
+
## Screenshots (if appropriate)
|
12
|
+
|
13
|
+
## Questions:
|
14
|
+
- How will this be deployed?
|
15
|
+
- Are there any migrations that need to be run?
|
16
|
+
- Are there any changes in environment variables or configs that need to happen?
|
17
|
+
- Does the README or Wiki need to be updated for this PR?
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CHANGELOG.md
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -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 micah.shawn.adams@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
data/Gemfile.lock
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
satisfaction (0.1.0)
|
5
|
+
dotenv
|
6
|
+
faraday
|
7
|
+
gemoji
|
8
|
+
json-schema
|
9
|
+
sinatra
|
10
|
+
thor
|
11
|
+
|
12
|
+
GEM
|
13
|
+
remote: https://rubygems.org/
|
14
|
+
specs:
|
15
|
+
addressable (2.5.2)
|
16
|
+
public_suffix (>= 2.0.2, < 4.0)
|
17
|
+
ast (2.4.0)
|
18
|
+
diff-lcs (1.3)
|
19
|
+
dotenv (2.5.0)
|
20
|
+
faraday (0.15.3)
|
21
|
+
multipart-post (>= 1.2, < 3)
|
22
|
+
gemoji (3.0.0)
|
23
|
+
jaro_winkler (1.5.1)
|
24
|
+
json-schema (2.8.1)
|
25
|
+
addressable (>= 2.4)
|
26
|
+
multipart-post (2.0.0)
|
27
|
+
mustermann (1.0.3)
|
28
|
+
parallel (1.12.1)
|
29
|
+
parser (2.5.3.0)
|
30
|
+
ast (~> 2.4.0)
|
31
|
+
powerpack (0.1.2)
|
32
|
+
public_suffix (3.0.3)
|
33
|
+
rack (2.0.5)
|
34
|
+
rack-protection (2.0.4)
|
35
|
+
rack
|
36
|
+
rainbow (3.0.0)
|
37
|
+
rake (10.5.0)
|
38
|
+
rspec (3.8.0)
|
39
|
+
rspec-core (~> 3.8.0)
|
40
|
+
rspec-expectations (~> 3.8.0)
|
41
|
+
rspec-mocks (~> 3.8.0)
|
42
|
+
rspec-core (3.8.0)
|
43
|
+
rspec-support (~> 3.8.0)
|
44
|
+
rspec-expectations (3.8.2)
|
45
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
46
|
+
rspec-support (~> 3.8.0)
|
47
|
+
rspec-mocks (3.8.0)
|
48
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
49
|
+
rspec-support (~> 3.8.0)
|
50
|
+
rspec-support (3.8.0)
|
51
|
+
rspec_junit_formatter (0.4.1)
|
52
|
+
rspec-core (>= 2, < 4, != 2.12.0)
|
53
|
+
rubocop (0.60.0)
|
54
|
+
jaro_winkler (~> 1.5.1)
|
55
|
+
parallel (~> 1.10)
|
56
|
+
parser (>= 2.5, != 2.5.1.1)
|
57
|
+
powerpack (~> 0.1)
|
58
|
+
rainbow (>= 2.2.2, < 4.0)
|
59
|
+
ruby-progressbar (~> 1.7)
|
60
|
+
unicode-display_width (~> 1.4.0)
|
61
|
+
ruby-progressbar (1.10.0)
|
62
|
+
sinatra (2.0.4)
|
63
|
+
mustermann (~> 1.0)
|
64
|
+
rack (~> 2.0)
|
65
|
+
rack-protection (= 2.0.4)
|
66
|
+
tilt (~> 2.0)
|
67
|
+
standard (0.0.8)
|
68
|
+
rubocop (>= 0.60)
|
69
|
+
thor (0.20.0)
|
70
|
+
tilt (2.0.8)
|
71
|
+
unicode-display_width (1.4.0)
|
72
|
+
|
73
|
+
PLATFORMS
|
74
|
+
ruby
|
75
|
+
|
76
|
+
DEPENDENCIES
|
77
|
+
bundler (~> 1.17)
|
78
|
+
rake (~> 10.0)
|
79
|
+
rspec (~> 3.0)
|
80
|
+
rspec_junit_formatter
|
81
|
+
satisfaction!
|
82
|
+
standard (~> 0.0.7)
|
83
|
+
|
84
|
+
BUNDLED WITH
|
85
|
+
1.17.1
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2018 Micah Adams
|
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) 2018 Micah Adams
|
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,43 @@
|
|
1
|
+
# Satisfaction
|
2
|
+
[![CircleCI](https://circleci.com/gh/larquin/satisfaction.svg?style=svg)](https://circleci.com/gh/larquin/satisfaction)
|
3
|
+
[![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://github.com/testdouble/standard)
|
4
|
+
|
5
|
+
Track your level of happiness with your work via commit messages.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'satisfaction'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install satisfaction
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TBD
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
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.
|
30
|
+
|
31
|
+
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).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/larquin/satisfaction. 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.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
|
+
|
41
|
+
## Code of Conduct
|
42
|
+
|
43
|
+
Everyone interacting in the Satisfaction project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/larquin/satisfaction/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "satisfaction"
|
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
data/exe/satsifaction
ADDED
data/lib/satisfaction.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
require "satisfaction/cli"
|
2
|
+
require "satisfaction/version"
|
3
|
+
require "satisfaction/transmit"
|
4
|
+
require "satisfaction/schema"
|
5
|
+
require "satisfaction/validator"
|
6
|
+
require "satisfaction/persist"
|
7
|
+
require "dotenv"
|
8
|
+
|
9
|
+
Dotenv.load
|
10
|
+
|
11
|
+
module Satisfaction
|
12
|
+
class Error < StandardError; end
|
13
|
+
# Your code goes here...
|
14
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require "fileutils"
|
2
|
+
|
3
|
+
module Satisfaction
|
4
|
+
class Persist
|
5
|
+
class << self
|
6
|
+
def store(schema, payload, sha)
|
7
|
+
File.open(sentiment_path(sha), "w") {|file| file.write(payload.to_json)} if Satisfaction::Validator.valid?(schema, payload)
|
8
|
+
end
|
9
|
+
|
10
|
+
def default_path
|
11
|
+
File.join(File.dirname(__FILE__), "../../data")
|
12
|
+
end
|
13
|
+
|
14
|
+
def sentiment_path(sha)
|
15
|
+
sentiment = "#{default_path}/#{Time.now.strftime("%m_%d_%Y")}/"
|
16
|
+
FileUtils.mkdir_p sentiment
|
17
|
+
"#{sentiment}/#{sha}.json"
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require "json"
|
2
|
+
|
3
|
+
module Satisfaction
|
4
|
+
class Schema
|
5
|
+
attr_accessor :schemas
|
6
|
+
|
7
|
+
def initialize(path = File.join(File.dirname(__FILE__), "../schemas"))
|
8
|
+
@schemas = []
|
9
|
+
Dir.entries(path).select {|f| !File.directory? f}.each do |source|
|
10
|
+
schema = File.read("#{path}/#{source}")
|
11
|
+
@schemas << JSON.parse(schema)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require "faraday"
|
2
|
+
require "json"
|
3
|
+
|
4
|
+
module Satisfaction
|
5
|
+
# Transmits data to the satisfacts server
|
6
|
+
class Transmit
|
7
|
+
class << self
|
8
|
+
def commit(message)
|
9
|
+
res = connect.post { |req|
|
10
|
+
req.url "/test"
|
11
|
+
req.headers["Content-Type"] = "application/json"
|
12
|
+
req.body = {:commit => message}.to_json
|
13
|
+
}
|
14
|
+
{:status_code => res.status, :body => JSON.parse(res.body)}
|
15
|
+
end
|
16
|
+
|
17
|
+
def connect
|
18
|
+
Faraday.new(:url => ENV["SENTIMENT_API_ENDPOINT"])
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require "sinatra"
|
@@ -0,0 +1,113 @@
|
|
1
|
+
{
|
2
|
+
"type": "object",
|
3
|
+
"required": [
|
4
|
+
"sha",
|
5
|
+
"commitMessage",
|
6
|
+
"score",
|
7
|
+
"tags"
|
8
|
+
],
|
9
|
+
"properties": {
|
10
|
+
"sha": {
|
11
|
+
"$id": "#/properties/sha",
|
12
|
+
"type": "string",
|
13
|
+
"title": "The Sha Schema",
|
14
|
+
"default": "",
|
15
|
+
"examples": [
|
16
|
+
"99358189915d8719e160afcaafaa06078323b603"
|
17
|
+
],
|
18
|
+
"pattern": "^(.*)$"
|
19
|
+
},
|
20
|
+
"commitMessage": {
|
21
|
+
"$id": "#/properties/commitMessage",
|
22
|
+
"type": "string",
|
23
|
+
"title": "The Commitmessage Schema",
|
24
|
+
"default": "",
|
25
|
+
"examples": [
|
26
|
+
"I love example schemas"
|
27
|
+
],
|
28
|
+
"pattern": "^(.*)$"
|
29
|
+
},
|
30
|
+
"score": {
|
31
|
+
"$id": "#/properties/score",
|
32
|
+
"type": "array",
|
33
|
+
"title": "The Score Schema",
|
34
|
+
"items": {
|
35
|
+
"$id": "#/properties/score/items",
|
36
|
+
"type": "object",
|
37
|
+
"title": "The Items Schema",
|
38
|
+
"required": [
|
39
|
+
"positive",
|
40
|
+
"neutral",
|
41
|
+
"sentence",
|
42
|
+
"negative",
|
43
|
+
"compound"
|
44
|
+
],
|
45
|
+
"properties": {
|
46
|
+
"positive": {
|
47
|
+
"$id": "#/properties/score/items/properties/positive",
|
48
|
+
"type": "number",
|
49
|
+
"title": "The Positive Schema",
|
50
|
+
"default": 0.0,
|
51
|
+
"examples": [
|
52
|
+
0.677
|
53
|
+
]
|
54
|
+
},
|
55
|
+
"neutral": {
|
56
|
+
"$id": "#/properties/score/items/properties/neutral",
|
57
|
+
"type": "number",
|
58
|
+
"title": "The Neutral Schema",
|
59
|
+
"default": 0.0,
|
60
|
+
"examples": [
|
61
|
+
0.323
|
62
|
+
]
|
63
|
+
},
|
64
|
+
"sentence": {
|
65
|
+
"$id": "#/properties/score/items/properties/sentence",
|
66
|
+
"type": "string",
|
67
|
+
"title": "The Sentence Schema",
|
68
|
+
"default": "",
|
69
|
+
"examples": [
|
70
|
+
"I love example schemas"
|
71
|
+
],
|
72
|
+
"pattern": "^(.*)$"
|
73
|
+
},
|
74
|
+
"negative": {
|
75
|
+
"$id": "#/properties/score/items/properties/negative",
|
76
|
+
"type": "integer",
|
77
|
+
"title": "The Negative Schema",
|
78
|
+
"default": 0,
|
79
|
+
"examples": [
|
80
|
+
0
|
81
|
+
]
|
82
|
+
},
|
83
|
+
"compound": {
|
84
|
+
"$id": "#/properties/score/items/properties/compound",
|
85
|
+
"type": "number",
|
86
|
+
"title": "The Compound Schema",
|
87
|
+
"default": 0.0,
|
88
|
+
"examples": [
|
89
|
+
0.6369
|
90
|
+
]
|
91
|
+
}
|
92
|
+
}
|
93
|
+
}
|
94
|
+
},
|
95
|
+
"tags": {
|
96
|
+
"$id": "#/properties/tags",
|
97
|
+
"type": "array",
|
98
|
+
"title": "The Tags Schema",
|
99
|
+
"items": {
|
100
|
+
"$id": "#/properties/tags/items",
|
101
|
+
"type": "string",
|
102
|
+
"title": "The Items Schema",
|
103
|
+
"default": "",
|
104
|
+
"examples": [
|
105
|
+
"#yay",
|
106
|
+
":expressionless",
|
107
|
+
"#meh"
|
108
|
+
],
|
109
|
+
"pattern": "^(.*)$"
|
110
|
+
}
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
@@ -0,0 +1,46 @@
|
|
1
|
+
lib = File.expand_path("../lib", __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require "satisfaction/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "satisfaction"
|
7
|
+
spec.version = Satisfaction::VERSION
|
8
|
+
spec.authors = ["Micah Adams"]
|
9
|
+
spec.email = ["micah.shawn.adams@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = "Track your level of happiness in a project."
|
12
|
+
spec.homepage = "https://github.com/testdouble/satisfaction"
|
13
|
+
spec.license = "MIT"
|
14
|
+
|
15
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
16
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
17
|
+
if spec.respond_to?(:metadata)
|
18
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
19
|
+
spec.metadata["source_code_uri"] = "https://github.com/testdouble/satisfaction"
|
20
|
+
spec.metadata["changelog_uri"] = "https://github.com/testdouble/satisfaction/blob/master/CHANGELOG.md"
|
21
|
+
else
|
22
|
+
raise "RubyGems 2.0 or newer is required to protect against " \
|
23
|
+
"public gem pushes."
|
24
|
+
end
|
25
|
+
|
26
|
+
# Specify which files should be added to the gem when it is released.
|
27
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
28
|
+
spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do
|
29
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
30
|
+
end
|
31
|
+
spec.bindir = "exe"
|
32
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
33
|
+
spec.require_paths = ["lib"]
|
34
|
+
|
35
|
+
spec.add_dependency "dotenv"
|
36
|
+
spec.add_dependency "faraday"
|
37
|
+
spec.add_dependency "gemoji"
|
38
|
+
spec.add_dependency "json-schema"
|
39
|
+
spec.add_dependency "thor"
|
40
|
+
spec.add_dependency "sinatra"
|
41
|
+
spec.add_development_dependency "bundler", "~> 1.17"
|
42
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
43
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
44
|
+
spec.add_development_dependency "rspec_junit_formatter"
|
45
|
+
spec.add_development_dependency "standard", "~> 0.0.7"
|
46
|
+
end
|
metadata
ADDED
@@ -0,0 +1,229 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: satisfaction
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Micah Adams
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-11-15 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: dotenv
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: faraday
|
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: gemoji
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: json-schema
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: thor
|
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: sinatra
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
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: bundler
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '1.17'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '1.17'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rake
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '10.0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '10.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: '3.0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '3.0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: rspec_junit_formatter
|
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: standard
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: 0.0.7
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: 0.0.7
|
167
|
+
description:
|
168
|
+
email:
|
169
|
+
- micah.shawn.adams@gmail.com
|
170
|
+
executables:
|
171
|
+
- satsifaction
|
172
|
+
extensions: []
|
173
|
+
extra_rdoc_files: []
|
174
|
+
files:
|
175
|
+
- ".circleci/config.yml"
|
176
|
+
- ".env.example"
|
177
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
178
|
+
- ".gitignore"
|
179
|
+
- ".rspec"
|
180
|
+
- ".travis.yml"
|
181
|
+
- CHANGELOG.md
|
182
|
+
- CODE_OF_CONDUCT.md
|
183
|
+
- Gemfile
|
184
|
+
- Gemfile.lock
|
185
|
+
- LICENSE
|
186
|
+
- LICENSE.txt
|
187
|
+
- README.md
|
188
|
+
- Rakefile
|
189
|
+
- bin/console
|
190
|
+
- bin/setup
|
191
|
+
- exe/satsifaction
|
192
|
+
- lib/satisfaction.rb
|
193
|
+
- lib/satisfaction/cli.rb
|
194
|
+
- lib/satisfaction/persist.rb
|
195
|
+
- lib/satisfaction/schema.rb
|
196
|
+
- lib/satisfaction/transmit.rb
|
197
|
+
- lib/satisfaction/validator.rb
|
198
|
+
- lib/satisfaction/version.rb
|
199
|
+
- lib/satisfaction_web/app.rb
|
200
|
+
- lib/schemas/sentiment.json
|
201
|
+
- satisfaction.gemspec
|
202
|
+
homepage: https://github.com/testdouble/satisfaction
|
203
|
+
licenses:
|
204
|
+
- MIT
|
205
|
+
metadata:
|
206
|
+
homepage_uri: https://github.com/testdouble/satisfaction
|
207
|
+
source_code_uri: https://github.com/testdouble/satisfaction
|
208
|
+
changelog_uri: https://github.com/testdouble/satisfaction/blob/master/CHANGELOG.md
|
209
|
+
post_install_message:
|
210
|
+
rdoc_options: []
|
211
|
+
require_paths:
|
212
|
+
- lib
|
213
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
214
|
+
requirements:
|
215
|
+
- - ">="
|
216
|
+
- !ruby/object:Gem::Version
|
217
|
+
version: '0'
|
218
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '0'
|
223
|
+
requirements: []
|
224
|
+
rubyforge_project:
|
225
|
+
rubygems_version: 2.7.6
|
226
|
+
signing_key:
|
227
|
+
specification_version: 4
|
228
|
+
summary: Track your level of happiness in a project.
|
229
|
+
test_files: []
|