seamusabshere-decency_validation 1.1 → 1.2
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.
- data/decency_validation.gemspec +4 -4
- metadata +2 -2
data/decency_validation.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "decency_validation"
|
3
|
-
s.version = "1.
|
3
|
+
s.version = "1.2"
|
4
4
|
s.date = "2009-01-02"
|
5
5
|
s.summary = "Rails plugin that uses George Carlin's list of seven dirty words (aka swear words, aka cuss words) to check for decency on ActiveRecord model attributes."
|
6
6
|
s.email = "seamus@abshere.net"
|
@@ -18,10 +18,10 @@ Gem::Specification.new do |s|
|
|
18
18
|
"README",
|
19
19
|
"tasks/decency_validation_tasks.rake",
|
20
20
|
"init.rb",
|
21
|
-
"rails/init.rb"
|
21
|
+
"rails/init.rb",
|
22
|
+
"test/test_helper.rb"
|
22
23
|
]
|
23
24
|
s.test_files = [
|
24
|
-
"test/decency_validation_test.rb"
|
25
|
-
"test/test_helper.rb"
|
25
|
+
"test/decency_validation_test.rb"
|
26
26
|
]
|
27
27
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: seamusabshere-decency_validation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: "1.
|
4
|
+
version: "1.2"
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Seamus Abshere
|
@@ -32,6 +32,7 @@ files:
|
|
32
32
|
- tasks/decency_validation_tasks.rake
|
33
33
|
- init.rb
|
34
34
|
- rails/init.rb
|
35
|
+
- test/test_helper.rb
|
35
36
|
has_rdoc: false
|
36
37
|
homepage: http://github.com/seamusabshere/decency_validation
|
37
38
|
post_install_message:
|
@@ -60,4 +61,3 @@ specification_version: 2
|
|
60
61
|
summary: Rails plugin that uses George Carlin's list of seven dirty words (aka swear words, aka cuss words) to check for decency on ActiveRecord model attributes.
|
61
62
|
test_files:
|
62
63
|
- test/decency_validation_test.rb
|
63
|
-
- test/test_helper.rb
|