tailog 0.3.4 → 0.3.5

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
  SHA1:
3
- metadata.gz: e139841b2c0780af1ca5cb3ed804d53c2ce54147
4
- data.tar.gz: 2e01e16dcd2153e67317c67bf3ad10e9ffdef49d
3
+ metadata.gz: cda24a61abf0d45fd4dfe9c22012086ef6d69cb7
4
+ data.tar.gz: 87b30f64c6896fc79074e7f7e68d751f12257b40
5
5
  SHA512:
6
- metadata.gz: 514f22e4584ba95e598643700eb578ec9e40b2e339674e365d0fbcc7acfedcf82785d90892de3620653db6f87477f64dfa7071a0406656990945980df53fc2c9
7
- data.tar.gz: 1aecbd5ee0c689348b130bc4532c34680ccab6170e6b2c21ef6faff45411d1e1720f890bb07ba8fc11ab525f05fc5d8495dafaf25551a682669356a94009b717
6
+ metadata.gz: 75b75502d8630b0c0c7804485a772b70e0f43e4047a92689f6cee09d9ce6609a4ba7c76f790097ffe556963e21e59de35444f2e4f0fccc0cbf38bed7c965637b
7
+ data.tar.gz: b14483eefcec688eedfe5184928e777a7def8fc9437166a72734c480c01ca56f9b047c78e7554c29ee008083cd52b6d7d749b02d2a593a718b94b5dd3d555f88
data/LICENSE.md ADDED
@@ -0,0 +1,8 @@
1
+ The MIT License (MIT)
2
+ Copyright (c) 2016 Theo Li
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5
+
6
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7
+
8
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,3 +1,3 @@
1
1
  module Tailog
2
- VERSION = "0.3.4"
2
+ VERSION = "0.3.5"
3
3
  end
@@ -19,7 +19,7 @@ module Tailog
19
19
  content << "[#{Tailog::WatchMethods.request_id}]" if Tailog::WatchMethods.request_id
20
20
  content << " #{severity.rjust(5)}"
21
21
  content << " (#{progname})" if progname
22
- content << ": #{message.gsub(/\\n\\s*/, " ")}"
22
+ content << ": #{message.gsub(/\n\s*/, " ")}"
23
23
  content << "\n"
24
24
  content
25
25
  end
data/tailog.gemspec CHANGED
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = "tail -f to the web-browser"
13
13
  spec.description = "Sinatra App to serve log in browser"
14
14
  spec.homepage = "https://github.com/bbtfr/tailog"
15
+ spec.license = "MIT"
15
16
 
16
17
  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
17
18
  # delete this section to allow pushing this gem to any host.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - bbtfr
@@ -46,8 +46,8 @@ extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
48
  - ".gitignore"
49
- - CODE_OF_CONDUCT.md
50
49
  - Gemfile
50
+ - LICENSE.md
51
51
  - README.md
52
52
  - Rakefile
53
53
  - app/views/env.erb
@@ -66,7 +66,8 @@ files:
66
66
  - lib/tailog/watch_methods.rb
67
67
  - tailog.gemspec
68
68
  homepage: https://github.com/bbtfr/tailog
69
- licenses: []
69
+ licenses:
70
+ - MIT
70
71
  metadata:
71
72
  allowed_push_host: https://rubygems.org
72
73
  post_install_message:
data/CODE_OF_CONDUCT.md DELETED
@@ -1,49 +0,0 @@
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 bbtfrr@gmail.com. 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/