mayhem 0.0.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9c0bb1b3893aa41881f61aba252f7460aa5102af
4
+ data.tar.gz: e6a7171087eac8712d15ac408144bf03dbdbe39b
5
+ SHA512:
6
+ metadata.gz: e9e558de40e143bd6e9fc0c929bb4b23e02a96abc0c88f4d33f9f4fdbd4139a1171568b886966ee6e1f0a1d323bd8990a34c270447607c70ad71568711388bc4
7
+ data.tar.gz: 9271816c41dcb4bf76f47cb86bdc0680b47038ff9fee87ae2b0a2fcc79edb60b78ed2cd9327c2d331555dde48b16ccf45325af7fe8eac672a08237a5dd331c6c
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Matthew Hassfurder
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,35 @@
1
+ # Mayhem
2
+
3
+ Text data making too much sense? Unleash Mayhem on it!
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'mayhem'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install mayhem
18
+
19
+ ## Usage
20
+
21
+ First off, require Mayhem:
22
+
23
+ require 'mayhem'
24
+
25
+ Now, when you want to synonymize a string, just pass it through Mayhem's synonymizer:
26
+
27
+ Mayhem.synonymize(your_string)
28
+
29
+ ## Contributing
30
+
31
+ 1. Fork it
32
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
33
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
34
+ 4. Push to the branch (`git push origin my-new-feature`)
35
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
Binary file
@@ -0,0 +1,2 @@
1
+ require 'mayhem/version'
2
+ require 'mayhem/synonymization'
@@ -0,0 +1,47 @@
1
+ require 'zlib'
2
+
3
+ class Mayhem
4
+ class << self
5
+ def synonymize(input)
6
+ text = input.to_s
7
+ words = text.split("\s")
8
+ words.map { |word| synonym(word) || word }.join(' ')
9
+ end
10
+
11
+ private
12
+
13
+ def synonym(word)
14
+ candidate_list = lookup_table[word]
15
+ candidate = candidate_list.sample if candidate_list
16
+ if candidate && candidate != ''
17
+ candidate
18
+ end
19
+ end
20
+
21
+ def lookup_table
22
+ return @lookup_table if @lookup_table
23
+
24
+ @lookup_table = {}
25
+
26
+ synonym_file = File.open(synonym_file_path)
27
+ reader = Zlib::GzipReader.new(synonym_file)
28
+ reader.readlines.first.split("\s").each do |line|
29
+ words = line.split(',').map(&:strip)
30
+ root = words.first
31
+ related = words[1..-1]
32
+ @lookup_table[root] = related
33
+ end
34
+
35
+ @lookup_table
36
+ end
37
+
38
+ def synonym_file_path
39
+ File.join(data_directory, 'mobythes.aur.gz')
40
+ end
41
+
42
+ def data_directory
43
+ specification = Gem::Specification.find_by_name('mayhem')
44
+ File.join(specification.gem_dir, 'lib', 'data')
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,3 @@
1
+ class Mayhem
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'mayhem/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'mayhem'
8
+ spec.version = Mayhem::VERSION
9
+ spec.authors = ['Matthew Hassfurder']
10
+ spec.email = ['sephonicus@gmail.com']
11
+ spec.description = 'Mayhem is a tool sowing discord amongst your textual data.'
12
+ spec.summary = 'Mayhem.'
13
+ spec.homepage = ''
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_development_dependency 'bundler', '~> 1.3'
22
+ spec.add_development_dependency 'rake'
23
+ spec.add_development_dependency 'rspec'
24
+ end
@@ -0,0 +1,6 @@
1
+ class SpecHelper
2
+ def self.test_data_directory
3
+ specification = Gem::Specification.find_by_name('mayhem')
4
+ File.join(specification.gem_dir, 'spec', 'test_data')
5
+ end
6
+ end
@@ -0,0 +1,31 @@
1
+ require 'mayhem'
2
+ require 'spec_helper'
3
+
4
+ describe Mayhem, '#synonymize' do
5
+ subject { Mayhem.synonymize(input) }
6
+ before { Mayhem.stub(:data_directory).and_return(SpecHelper.test_data_directory) }
7
+
8
+ context 'when passed text' do
9
+ let(:input) { 'A boy has never wept... nor dashed a thousand kin.' }
10
+
11
+ it 'replaces known words with synonyms' do
12
+ expect(subject).to eq 'A ragamuffin has nevermore wept... nor undone a zillion kin.'
13
+ end
14
+ end
15
+
16
+ context 'when passed an empty string' do
17
+ let(:input) { '' }
18
+
19
+ it 'returns an empty string' do
20
+ expect(subject).to eq ''
21
+ end
22
+ end
23
+
24
+ context 'when passed non-strings' do
25
+ it 'returns synonymized versions of their respective string representations' do
26
+ expect(Mayhem.synonymize(nil)).to eq ''
27
+ expect(Mayhem.synonymize(1234)).to eq '1234'
28
+ expect(Mayhem.synonymize([1, 2, 3, 4])).to eq '[1, 2, 3, 4]'
29
+ end
30
+ end
31
+ end
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mayhem
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Matthew Hassfurder
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-03-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
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
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Mayhem is a tool sowing discord amongst your textual data.
56
+ email:
57
+ - sephonicus@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - .gitignore
63
+ - Gemfile
64
+ - LICENSE.txt
65
+ - README.md
66
+ - Rakefile
67
+ - lib/data/mobythes.aur.gz
68
+ - lib/mayhem.rb
69
+ - lib/mayhem/synonymization.rb
70
+ - lib/mayhem/version.rb
71
+ - mayhem.gemspec
72
+ - spec/spec_helper.rb
73
+ - spec/synonimizer_spec.rb
74
+ - spec/test_data/mobythes.aur.gz
75
+ homepage: ''
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - '>='
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - '>='
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.1.11
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: Mayhem.
99
+ test_files:
100
+ - spec/spec_helper.rb
101
+ - spec/synonimizer_spec.rb
102
+ - spec/test_data/mobythes.aur.gz