phonetic_alphabet 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ee33c89c823f2c912d75e6dbbaed5b23cb643232
4
+ data.tar.gz: 98d220030625d5ff1b36585bbc4e75923f421b07
5
+ SHA512:
6
+ metadata.gz: 35c436cf66f36bb65838c1d8c29854c63ae9edb388e157a316ed7f418dc4535ddcb1f15c771b08c3161e6c7d316da2a7296a9c58845209ef7802d7e27d9c8bb2
7
+ data.tar.gz: 08985be62ed0954dc9261fa9636e2916949e9426aea6934407c4f013b0bfeaa24819e29f50b691f42f8da9b622addad5026be5b6bd8bf724f019baeb69230357
data/.gitignore ADDED
@@ -0,0 +1,22 @@
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
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.2
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in phonetic_alphabet.gemspec
4
+ gemspec
data/Guardfile ADDED
@@ -0,0 +1,24 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ guard :rspec do
5
+ watch(%r{^spec/.+_spec\.rb$})
6
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
7
+ watch('spec/spec_helper.rb') { "spec" }
8
+
9
+ # Rails example
10
+ watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
11
+ watch(%r{^app/(.*)(\.erb|\.haml|\.slim)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
12
+ watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
13
+ watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
14
+ watch('config/routes.rb') { "spec/routing" }
15
+ watch('app/controllers/application_controller.rb') { "spec/controllers" }
16
+
17
+ # Capybara features specs
18
+ watch(%r{^app/views/(.+)/.*\.(erb|haml|slim)$}) { |m| "spec/features/#{m[1]}_spec.rb" }
19
+
20
+ # Turnip features and steps
21
+ watch(%r{^spec/acceptance/(.+)\.feature$})
22
+ watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance' }
23
+ end
24
+
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Dennis Hall
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.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # PhoneticAlphabet [![Build Status](https://travis-ci.org/dnshl/phonetic_alphabet.svg)](https://travis-ci.org/dnshl/phonetic_alphabet)
2
+
3
+ Extends ruby String class with to_p method which converst strings to their phonetic alphabet representation.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'phonetic_alphabet'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install phonetic_alphabet
18
+
19
+ ## Usage
20
+
21
+ Just call to_p on a string.
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/dnshl/phonetic_alphabet/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,7 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
7
+
@@ -0,0 +1,43 @@
1
+ require "phonetic_alphabet/version"
2
+
3
+ module PhoneticAlphabet
4
+
5
+ module StringInstanceMethods
6
+ def to_p
7
+ PhoneticAlphabet.translate(self)
8
+ end
9
+
10
+ def each_char
11
+ self.split("").each { |i| yield i }
12
+ end
13
+ end
14
+
15
+ HASH = { 'A' => 'Alfa', 'B' => 'Bravo',
16
+ 'C' => 'Charlie', 'D' => 'Delta',
17
+ 'E' => 'Echo', 'F' => 'Foxtrot',
18
+ 'G' => 'Golf', 'H' => 'Hotel',
19
+ 'I' => 'India', 'J' => 'Juliett',
20
+ 'K' => 'Kilo', 'L' => 'Lima',
21
+ 'M' => 'Mike', 'N' => 'November',
22
+ 'O' => 'Oscar', 'P' => 'Papa',
23
+ 'Q' => 'Quebec', 'R' => 'Romeo',
24
+ 'S' => 'Sierra', 'T' => 'Tango',
25
+ 'U' => 'Uniform', 'V' => 'Victor',
26
+ 'W' => 'Whiskey', 'X' => 'X-ray',
27
+ 'Y' => 'Yankee', 'Z' => 'Zulu',
28
+ '0' => 'Zero', '1' => 'One',
29
+ '2' => 'Two', '3' => 'Three',
30
+ '4' => 'Four', '5' => 'Five',
31
+ '6' => 'Six', '7' => 'Seven',
32
+ '8' => 'Eight', '9' => 'Niner' }
33
+
34
+ def self.translate(string)
35
+ ret = ''
36
+ string.each_char do |c|
37
+ ret += "#{HASH[c.upcase]} "
38
+ end
39
+ ret.chop
40
+ end
41
+ end
42
+
43
+ String.send :include, PhoneticAlphabet::StringInstanceMethods
@@ -0,0 +1,3 @@
1
+ module PhoneticAlphabet
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'phonetic_alphabet/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "phonetic_alphabet"
8
+ spec.version = PhoneticAlphabet::VERSION
9
+ spec.authors = ["Dennis Hall"]
10
+ spec.email = ["dennis@dennishall.de"]
11
+ spec.summary = %q{Enables strings to be spelled with the phonetic alphabet}
12
+ spec.description = %q{Extends ruby String class with to_p method which converst strings to their phonetic alphabet representation.}
13
+ spec.homepage = "https://github.com/dnshl/phonetic_alphabet"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
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.6"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_development_dependency "rspec"
24
+ spec.add_development_dependency "guard"
25
+ spec.add_development_dependency "guard-rspec"
26
+ end
@@ -0,0 +1,17 @@
1
+ require 'spec_helper'
2
+
3
+ describe PhoneticAlphabet do
4
+ it 'has a version number' do
5
+ expect(PhoneticAlphabet::VERSION).not_to be nil
6
+ end
7
+
8
+ it 'adds a to_p method to the string class' do
9
+ expect("".methods.include?(:to_p)).to eq(true)
10
+ end
11
+
12
+ it 'translates strings to their phonetic representation' do
13
+ expect('fuck'.to_p).to eq('Foxtrot Uniform Charlie Kilo')
14
+ expect('a'.to_p).to eq('Alfa')
15
+ expect('a1 day'.to_p).to eq('Alfa One Delta Alfa Yankee')
16
+ end
17
+ end
@@ -0,0 +1,2 @@
1
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
+ require 'phonetic_alphabet'
metadata ADDED
@@ -0,0 +1,130 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: phonetic_alphabet
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Dennis Hall
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-05-25 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.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
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
+ - !ruby/object:Gem::Dependency
56
+ name: guard
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: guard-rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: Extends ruby String class with to_p method which converst strings to
84
+ their phonetic alphabet representation.
85
+ email:
86
+ - dennis@dennishall.de
87
+ executables: []
88
+ extensions: []
89
+ extra_rdoc_files: []
90
+ files:
91
+ - ".gitignore"
92
+ - ".rspec"
93
+ - ".travis.yml"
94
+ - Gemfile
95
+ - Guardfile
96
+ - LICENSE.txt
97
+ - README.md
98
+ - Rakefile
99
+ - lib/phonetic_alphabet.rb
100
+ - lib/phonetic_alphabet/version.rb
101
+ - phonetic_alphabet.gemspec
102
+ - spec/phonetic_alphabet_spec.rb
103
+ - spec/spec_helper.rb
104
+ homepage: https://github.com/dnshl/phonetic_alphabet
105
+ licenses:
106
+ - MIT
107
+ metadata: {}
108
+ post_install_message:
109
+ rdoc_options: []
110
+ require_paths:
111
+ - lib
112
+ required_ruby_version: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ required_rubygems_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ requirements: []
123
+ rubyforge_project:
124
+ rubygems_version: 2.2.2
125
+ signing_key:
126
+ specification_version: 4
127
+ summary: Enables strings to be spelled with the phonetic alphabet
128
+ test_files:
129
+ - spec/phonetic_alphabet_spec.rb
130
+ - spec/spec_helper.rb