profanity 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/profanity/version.rb +1 -1
- data/profanity.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca3929ea62a1a33749c747ff8487700519073f62
|
|
4
|
+
data.tar.gz: 50fba56657b8cf936d99ae4b13bcf732d00ac082
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b0b0dd22a0b7fb2530c795d64b54f7ac60d38baa401c940b1d8c06ae97fd8e1467601ba1d3f204c74448fe7abead4b2e48de66c1586d189598de55fff608e7cf
|
|
7
|
+
data.tar.gz: 2a5e5572cc5c5adb1c6e0a6f1e21f44feee68983e5f92f31982675867dd2b3d159ac8e571d45556f6ccd18e3aa2e80ead6a78d6c8f640b04a11fe11398f6819b
|
data/README.md
CHANGED
|
@@ -23,8 +23,8 @@ Or install it yourself as:
|
|
|
23
23
|
|
|
24
24
|
## Usage
|
|
25
25
|
|
|
26
|
-
Simply in your code call
|
|
27
|
-
|
|
26
|
+
Simply in your code call:
|
|
27
|
+
<tt>Profanity.check("sample text")</tt> and this will return true or false
|
|
28
28
|
|
|
29
29
|
## Development
|
|
30
30
|
|
data/lib/profanity/version.rb
CHANGED
data/profanity.gemspec
CHANGED
|
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["m.swiatkiewicz91@gmail.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{This gem detect profanity words in text}
|
|
13
|
-
spec.description = %q{This gem provide you to check if in text is any profanity words, text can be without white characters and this
|
|
14
|
-
spec.homepage = "http://github.com/
|
|
13
|
+
spec.description = %q{This gem provide you to check if in text is any profanity words, text can be without white characters like space and this still will be work}
|
|
14
|
+
spec.homepage = "http://github.com/efigence/profanity"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
spec.test_files = ["test/test_helper.rb", "test/profanity_test.rb"]
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: profanity
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marcin Świątkiewicz
|
|
@@ -53,7 +53,7 @@ dependencies:
|
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
55
|
description: This gem provide you to check if in text is any profanity words, text
|
|
56
|
-
can be without white characters and this
|
|
56
|
+
can be without white characters like space and this still will be work
|
|
57
57
|
email:
|
|
58
58
|
- m.swiatkiewicz91@gmail.com
|
|
59
59
|
executables: []
|
|
@@ -74,7 +74,7 @@ files:
|
|
|
74
74
|
- profanity.gemspec
|
|
75
75
|
- test/profanity_test.rb
|
|
76
76
|
- test/test_helper.rb
|
|
77
|
-
homepage: http://github.com/
|
|
77
|
+
homepage: http://github.com/efigence/profanity
|
|
78
78
|
licenses:
|
|
79
79
|
- MIT
|
|
80
80
|
metadata: {}
|
|
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
94
94
|
version: '0'
|
|
95
95
|
requirements: []
|
|
96
96
|
rubyforge_project:
|
|
97
|
-
rubygems_version: 2.
|
|
97
|
+
rubygems_version: 2.2.2
|
|
98
98
|
signing_key:
|
|
99
99
|
specification_version: 4
|
|
100
100
|
summary: This gem detect profanity words in text
|