lolcommits-term_output 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7cd043788d938b2a4fa52c28f62f208097a0db42da4746d04e2106b591f7535b
4
- data.tar.gz: 1c78bf03c39f5a703606cfa1d1dc802e3f06f9a4ae53fa82096ae94d96c73ff3
3
+ metadata.gz: a295aeec35ec68866ea46905d65bb8d803cd2818bdc748f7948b07404e51f41c
4
+ data.tar.gz: 8b02e5a1ed87346c4a7091c291eda676f591998c86ba806c0584085ddb849d1c
5
5
  SHA512:
6
- metadata.gz: 6db9aa33bebdadd74c06ce1bc9f4d77be70fe146692cc2eeb5a0e4469b1da8673e77b01f02098eedc55d149fbdb7c9a9b8ca11628fc636b33d852cc06adab57b
7
- data.tar.gz: f9d06857ce6de3d31edb7486f55020812837fd6894a489d9292e1aa6f03830fa1787f0689bfced445ed4eccb7e6e558a58b9f2aa68ae5902a883759eaf62e9a6
6
+ metadata.gz: 0c3e722eb877f2d841a4b687e670025da33fe4d9e653b65ebaaaa4467283194d74d34a9f34fad64038280fbabf081665db86e734dbcc360cea3339b950eb656f
7
+ data.tar.gz: f0c9603e72f7a50392b90a810eb843e09a4ed9159136cfb21ee9ce4349e5ef2adfff1c74f4b3ebdc01ec51736e2264a1bdd85323f82b540b7a7c91202d7f3c4e
data/.travis.yml CHANGED
@@ -2,30 +2,31 @@ sudo: false
2
2
  language: ruby
3
3
  cache: bundler
4
4
  rvm:
5
- - 2.1.10
6
- - 2.2.9
7
- - 2.3.6
8
- - 2.4.3
9
- - 2.5.0
10
- - ruby-head
5
+ - 2.1.10
6
+ - 2.2.9
7
+ - 2.3.6
8
+ - 2.4.3
9
+ - 2.5.1
10
+ - ruby-head
11
11
 
12
12
  before_install:
13
- - gem update --system
14
- - git --version
15
- - git config --global user.email "lol@commits.org"
16
- - git config --global user.name "Lolcommits"
13
+ - gem update --system
14
+ - gem install bundler
15
+ - git --version
16
+ - git config --global user.email "lol@commits.org"
17
+ - git config --global user.name "Lolcommits"
17
18
 
18
19
  matrix:
19
20
  allow_failures:
20
- - rvm: ruby-head
21
+ - rvm: ruby-head
21
22
 
22
23
  env:
23
24
  global:
24
- - CC_TEST_REPORTER_ID=eb8c60bf77e0ed78453285e1d9c0aa4c9c248a4945f077615edb042db7753fb9
25
- - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)
25
+ - CC_TEST_REPORTER_ID=eb8c60bf77e0ed78453285e1d9c0aa4c9c248a4945f077615edb042db7753fb9
26
+ - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)
26
27
  before_script:
27
- - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
28
- - chmod +x ./cc-test-reporter
29
- - ./cc-test-reporter before-build - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)
28
+ - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
29
+ - chmod +x ./cc-test-reporter
30
+ - ./cc-test-reporter before-build - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)
30
31
  after_script:
31
- - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
32
+ - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
data/CHANGELOG.md ADDED
@@ -0,0 +1,56 @@
1
+ # ChangeLog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](KeepAChangelog) and this project
6
+ adheres to [Semantic Versioning](Semver).
7
+
8
+ ## [Unreleased]
9
+
10
+ - Your contribution here!
11
+
12
+ ## [0.1.1] - 2018-05-24
13
+ ### Changed
14
+ - Updated gemspec meta data links.
15
+
16
+ ## [0.1.0] - 2018-03-27
17
+ ### Removed
18
+ - Remove runner_order method
19
+
20
+ ## [0.0.6] - 2018-02-05
21
+ ### Removed
22
+ - Dropped support for Ruby 2.0
23
+
24
+ ## [0.0.5] - 2018-01-22
25
+ ### Changed
26
+ - Update Travis Rubies
27
+ - Require at least lolcommits 0.10.0
28
+
29
+ ## [0.0.4] - 2017-12-24
30
+ ### Changed
31
+ - Return a hash {} for configure_options
32
+
33
+ ## [0.0.3] - 2017-12-06
34
+ ### Changed
35
+ - Update README
36
+ - Remove vendored font file
37
+
38
+ ## [0.0.2] - 2017-12-05
39
+ ### Removed
40
+ - Remove webmock dependency
41
+
42
+ ## [0.0.1] - 2017-12-05
43
+ ### Changed
44
+ - Initial release
45
+
46
+ [Unreleased]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.1.1...HEAD
47
+ [0.1.1]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.1.0...v0.1.1
48
+ [0.1.0]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.0.6...v0.1.0
49
+ [0.0.6]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.0.5...v0.0.6
50
+ [0.0.5]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.0.4...v0.0.5
51
+ [0.0.4]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.0.3...v0.0.4
52
+ [0.0.3]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.0.2...v0.0.3
53
+ [0.0.2]: https://github.com/lolcommits/lolcommits-term_output/compare/v0.0.1...v0.0.2
54
+ [0.0.1]: https://github.com/lolcommits/lolcommits-term_output/compare/0251ee8...v0.0.1
55
+ [KeepAChangelog]: http://keepachangelog.com/en/1.0.0/
56
+ [Semver]: http://semver.org/spec/v2.0.0.html
data/CODE_OF_CONDUCT.md CHANGED
@@ -1,24 +1,41 @@
1
- # Contributor Code of Conduct
1
+ # Contributor Covenant Code of Conduct
2
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.
3
+ ## Our Pledge
7
4
 
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.
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
+ education, socio-economic status, nationality, personal appearance, race,
10
+ religion, or sexual identity and 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
12
22
 
13
23
  Examples of unacceptable behavior by participants include:
14
24
 
15
- * The use of sexualized language or imagery
16
- * Personal attacks
17
- * Trolling or insulting/derogatory comments
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
18
28
  * 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
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.
22
39
 
23
40
  Project maintainers have the right and responsibility to remove, edit, or
24
41
  reject comments, commits, code, wiki edits, issues, and other contributions
@@ -26,25 +43,31 @@ that are not aligned to this Code of Conduct, or to ban temporarily or
26
43
  permanently any contributor for other behaviors that they deem inappropriate,
27
44
  threatening, offensive, or harmful.
28
45
 
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.
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.
33
54
 
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.
55
+ ## Enforcement
36
56
 
37
57
  Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
- reported by contacting a project maintainer via [GitHub][maintainer]. All
58
+ reported by contacting the project team at matt@hiddenloop.com. All
39
59
  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.
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
43
69
 
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]
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
47
72
 
48
- [maintainer]: https://github.com/matthutchinson
49
- [homepage]: http://contributor-covenant.org
50
- [version]: http://contributor-covenant.org/version/1/3/0/
73
+ [homepage]: https://www.contributor-covenant.org
@@ -0,0 +1,16 @@
1
+
2
+ Explain what you're changing and why here.
3
+
4
+ ---
5
+ #### :memo: Checklist
6
+
7
+ Please check this list and leave it intact for the reviewer. Thanks! :heart:
8
+
9
+ - [ ] Commit messages provide context (why not just what, some tips [here](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)).
10
+ - [ ] If relevant, mention GitHub issue number above and include in a commit message.
11
+ - [ ] Latest code from master merged.
12
+ - [ ] New behaviour has test coverage.
13
+ - [ ] Avoid duplicating code.
14
+ - [ ] No commented out code.
15
+ - [ ] Avoid comments for your code, write code that explains itself.
16
+ - [ ] Changes are simple, useful, clear and brief.
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # Lolcommits Term Output
2
2
 
3
- [![Gem Version](https://img.shields.io/gem/v/lolcommits-term_output.svg?style=flat)](http://rubygems.org/gems/lolcommits-term_output)
4
- [![Travis Build Status](https://travis-ci.org/lolcommits/lolcommits-term_output.svg?branch=master)](https://travis-ci.org/lolcommits/lolcommits-term_output)
5
- [![Maintainability](https://img.shields.io/codeclimate/maintainability/lolcommits/lolcommits-term_output.svg)](https://codeclimate.com/github/lolcommits/lolcommits-term_output/maintainability)
6
- [![Test Coverage](https://img.shields.io/codeclimate/c/lolcommits/lolcommits-term_output.svg)](https://codeclimate.com/github/lolcommits/lolcommits-term_output/test_coverage)
7
- [![Gem Dependency Status](https://gemnasium.com/badges/github.com/lolcommits/lolcommits-term_output.svg)](https://gemnasium.com/github.com/lolcommits/lolcommits-term_output)
3
+ [![Gem](https://img.shields.io/gem/v/lolcommits-term_output.svg?style=flat)](http://rubygems.org/gems/lolcommits-term_output)
4
+ [![Travis](https://travis-ci.org/lolcommits/lolcommits-term_output.svg?branch=master)](https://travis-ci.org/lolcommits/lolcommits-term_output)
5
+ [![Depfu](https://img.shields.io/depfu/lolcommits/lolcommits-term_output.svg?style=flat)](https://depfu.com/github/lolcommits/lolcommits-term_output)
6
+ [![Maintainability](https://api.codeclimate.com/v1/badges/3f2a468adb10524add39/maintainability)](https://codeclimate.com/github/lolcommits/lolcommits-term_output/maintainability)
7
+ [![Test Coverage](https://api.codeclimate.com/v1/badges/3f2a468adb10524add39/test_coverage)](https://codeclimate.com/github/lolcommits/lolcommits-term_output/test_coverage)
8
8
 
9
9
  [lolcommits](https://lolcommits.github.io/) takes a snapshot with your webcam
10
10
  every time you git commit code, and archives a lolcat style image with it. Git
@@ -1,5 +1,5 @@
1
1
  module Lolcommits
2
2
  module TermOutput
3
- VERSION = "0.1.0".freeze
3
+ VERSION = "0.1.1".freeze
4
4
  end
5
5
  end
@@ -13,6 +13,13 @@ Gem::Specification.new do |spec|
13
13
  spec.homepage = "https://github.com/lolcommits/lolcommits-term_output"
14
14
  spec.license = "LGPL-3"
15
15
 
16
+ spec.metadata = {
17
+ "homepage_uri" => "https://github.com/lolcommits/lolcommits-term_output",
18
+ "changelog_uri" => "https://github.com/lolcommits/lolcommits-term_output/blob/master/CHANGELOG.md",
19
+ "source_code_uri" => "https://github.com/lolcommits/lolcommits-term_output",
20
+ "bug_tracker_uri" => "https://github.com/lolcommits/lolcommits-term_output/issues",
21
+ }
22
+
16
23
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
24
  # to allow pushing to a single host or delete this section to allow pushing to any host.
18
25
  if spec.respond_to?(:metadata)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lolcommits-term_output
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Hutchinson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-27 00:00:00.000000000 Z
11
+ date: 2018-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lolcommits
@@ -104,10 +104,12 @@ files:
104
104
  - ".gitignore"
105
105
  - ".simplecov"
106
106
  - ".travis.yml"
107
+ - CHANGELOG.md
107
108
  - CODE_OF_CONDUCT.md
108
109
  - CONTRIBUTING.md
109
110
  - Gemfile
110
111
  - LICENSE
112
+ - PULL_REQUEST_TEMPLATE.md
111
113
  - README.md
112
114
  - Rakefile
113
115
  - bin/console
@@ -122,6 +124,10 @@ homepage: https://github.com/lolcommits/lolcommits-term_output
122
124
  licenses:
123
125
  - LGPL-3
124
126
  metadata:
127
+ homepage_uri: https://github.com/lolcommits/lolcommits-term_output
128
+ changelog_uri: https://github.com/lolcommits/lolcommits-term_output/blob/master/CHANGELOG.md
129
+ source_code_uri: https://github.com/lolcommits/lolcommits-term_output
130
+ bug_tracker_uri: https://github.com/lolcommits/lolcommits-term_output/issues
125
131
  allowed_push_host: https://rubygems.org
126
132
  post_install_message:
127
133
  rdoc_options: []
@@ -139,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
145
  version: '0'
140
146
  requirements: []
141
147
  rubyforge_project:
142
- rubygems_version: 2.7.3
148
+ rubygems_version: 2.7.6
143
149
  signing_key:
144
150
  specification_version: 4
145
151
  summary: Display lolcommits within your iTerm terminal