swearjar 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/LICENSE +21 -0
- data/Rakefile +1 -0
- data/lib/swearjar/version.rb +1 -1
- data/swearjar.gemspec +1 -0
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 29d6f7685a649ed866f79867952d152b11b218eb902f236db377a169f62b68a2
|
4
|
+
data.tar.gz: 6445877cb2a9e3c8a81ea5a8624cab834c94663b09f3d2d091d701a5727bc1d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96481486ef7b2152f3b7f2b60d0985d58a5f8ddf203c9713b1df2393a9abed6724affba3f0a1105580c4277b2b9b079e632b5a868c990a7797b1a6dc2cd90a9a
|
7
|
+
data.tar.gz: c591007e52d20553e8fe261c026a98ee5456b32b9f726c5b9373668ecb298426c8088641a282607a2a0e1fc4274d818fe9f9b331609e146f8647d2766bbe4df7
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2019 Poll Everywhere
|
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/Rakefile
CHANGED
data/lib/swearjar/version.rb
CHANGED
data/swearjar.gemspec
CHANGED
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.summary = "Put another nickel in the swearjar. Simple profanity detection with content analysis"
|
11
11
|
s.description = "#{s.summary}."
|
12
12
|
s.email = %q{joshbuddy@gmail.com}
|
13
|
+
s.licenses = ['MIT']
|
13
14
|
s.extra_rdoc_files = ['README.md']
|
14
15
|
s.files = `git ls-files`.split("\n")
|
15
16
|
s.homepage = %q{http://github.com/joshbuddy/swearjar}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: swearjar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joshua Hull
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -64,6 +64,7 @@ files:
|
|
64
64
|
- ".travis.yml"
|
65
65
|
- CHANGELOG.md
|
66
66
|
- Gemfile
|
67
|
+
- LICENSE
|
67
68
|
- README.md
|
68
69
|
- Rakefile
|
69
70
|
- lib/config/en.yml
|
@@ -77,7 +78,8 @@ files:
|
|
77
78
|
- spec/swearjar_spec.rb
|
78
79
|
- swearjar.gemspec
|
79
80
|
homepage: http://github.com/joshbuddy/swearjar
|
80
|
-
licenses:
|
81
|
+
licenses:
|
82
|
+
- MIT
|
81
83
|
metadata: {}
|
82
84
|
post_install_message:
|
83
85
|
rdoc_options:
|
@@ -95,8 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
97
|
- !ruby/object:Gem::Version
|
96
98
|
version: '0'
|
97
99
|
requirements: []
|
98
|
-
|
99
|
-
rubygems_version: 2.6.14
|
100
|
+
rubygems_version: 3.0.1
|
100
101
|
signing_key:
|
101
102
|
specification_version: 4
|
102
103
|
summary: Put another nickel in the swearjar. Simple profanity detection with content
|