mr_clean 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2ff64e50ab311d8b920858fc10df80f15566ff37
4
+ data.tar.gz: 3581283817031a95f15f3d0a575533b82d71a08e
5
+ SHA512:
6
+ metadata.gz: a6f63abbd51149b4c6ac022ce8cd699a1db2dbd8521901f239b779385006769c9759d6a3213ff3f5dd124742c003e897eee30c66579029a464c29bc785164e9f
7
+ data.tar.gz: 398d141ba1d67e2fe6ab6f20a076e8768ba373fe45719ad1f9a0466beea8070d0865e6d74608e43b9fd471c6e30fbf1241ea52baf3964062ff96446a7f0de742
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ .DS_Store
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color --format documentation
data/Guardfile ADDED
@@ -0,0 +1,9 @@
1
+ guard :rspec do
2
+ watch(%r{^spec/.+_spec\.rb$})
3
+ watch(%r{^spec/support/(.+)\.rb$}) { 'spec' }
4
+ watch('spec/spec_helper.rb') { 'spec' }
5
+ watch(%r{^lib/(.+)\.rb$}) do |m|
6
+ f = "spec/#{m[1]}_spec.rb"
7
+ File.exist?(f) ? f : 'spec'
8
+ end
9
+ end
data/README.md ADDED
@@ -0,0 +1,4 @@
1
+ Mr Clean
2
+ ========
3
+
4
+ A plain ruby library for filtering profanity, spam and such based on black listed words
data/Rakefile ADDED
@@ -0,0 +1,14 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
3
+
4
+ require 'rspec/core/rake_task'
5
+
6
+ $: << File.expand_path("#{File.dirname(__FILE__)}/lib")
7
+
8
+ RSpec::Core::RakeTask.new(:spec) do |t|
9
+ t.rspec_opts = "--color --format documentation"
10
+ t.pattern = "spec/**/*_spec.rb"
11
+ end
12
+
13
+ desc "Run Tests"
14
+ task :default => :spec
@@ -0,0 +1,3 @@
1
+ module MrClean
2
+ VERSION = '0.1.0'
3
+ end
data/lib/mr_clean.rb ADDED
@@ -0,0 +1,2 @@
1
+ module MrClean
2
+ end
data/mr_clean.gemspec ADDED
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib/', __FILE__)
3
+ $:.unshift lib unless $:.include?(lib)
4
+ require 'mr_clean/version'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = 'mr_clean'
8
+ s.version = MrClean::VERSION
9
+ s.platform = Gem::Platform::RUBY
10
+ s.authors = 'CrunchBase'
11
+ s.email = 'engineering@crunchbase.com'
12
+ s.summary = 'A plain ruby library for filtering profanity, spam and such based on black listed words'
13
+
14
+ s.files = `git ls-files`.split("\n")
15
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
17
+ s.require_paths = ['lib']
18
+
19
+ s.add_development_dependency 'rake'
20
+ s.add_development_dependency 'rspec'
21
+ end
@@ -0,0 +1,5 @@
1
+ require 'rspec'
2
+
3
+ CURRENT_DIR = File.dirname(__FILE__)
4
+ $: << File.expand_path(CURRENT_DIR + '/../lib')
5
+ require 'mr_clean'
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mr_clean
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - CrunchBase
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-09-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description:
42
+ email: engineering@crunchbase.com
43
+ executables: []
44
+ extensions: []
45
+ extra_rdoc_files: []
46
+ files:
47
+ - .gitignore
48
+ - .rspec
49
+ - Guardfile
50
+ - README.md
51
+ - Rakefile
52
+ - lib/mr_clean.rb
53
+ - lib/mr_clean/version.rb
54
+ - mr_clean.gemspec
55
+ - spec/spec_helper.rb
56
+ homepage:
57
+ licenses: []
58
+ metadata: {}
59
+ post_install_message:
60
+ rdoc_options: []
61
+ require_paths:
62
+ - lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - '>='
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ required_rubygems_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - '>='
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ requirements: []
74
+ rubyforge_project:
75
+ rubygems_version: 2.0.7
76
+ signing_key:
77
+ specification_version: 4
78
+ summary: A plain ruby library for filtering profanity, spam and such based on black
79
+ listed words
80
+ test_files:
81
+ - spec/spec_helper.rb
82
+ has_rdoc: