cwflash 0.0.1

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: 2bc7d55403a828635b51c27de030a944b11dd5de
4
+ data.tar.gz: 98570857df08437a7ed2d4acb0de8fe9eaf3f6af
5
+ SHA512:
6
+ metadata.gz: 3750f5ae215bb48da67e774da909e5c376116e456cf5860e1196168afde487e3c0500d54ffcce3b742089318e3284dcdf519f37395b51e0c02e7721786f2e370
7
+ data.tar.gz: 6132fabbfedc6550e9aa423097caff19a884edbbb319dc1a172cb0a5e94e6aec919972df68fc4f57ea549fc10c206a0f68374dcdcf9341809a58ed46bcfff352
data/.gitignore ADDED
@@ -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/.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.0.0
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in cwflash.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Robie Lutsey
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
+ # Cwflash
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'cwflash'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install cwflash
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( http://github.com/<my-github-username>/cwflash/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 new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/cwflash ADDED
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require_relative '../lib/cwflash'
4
+ require "highline/import"
5
+
6
+ begin
7
+ choices = Dir.entries File.join(File.dirname(__FILE__), "..", "samples")
8
+ choices.delete_if { |file| !(file =~ /\.json/) }
9
+
10
+ say("\nTime to practice some CW!\n")
11
+ choose do |menu|
12
+ menu.prompt = "\nWhich letters would you like to practice? "
13
+
14
+ choices.each do |ch|
15
+ menu.choice ch do @filename = ch end
16
+ end
17
+
18
+ end
19
+
20
+ Cwflash::Runner.new(@filename).run
21
+ rescue Interrupt
22
+ puts "\n\nGood bye"
23
+ end
data/cwflash.gemspec ADDED
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'cwflash/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "cwflash"
8
+ spec.version = Cwflash::VERSION
9
+ spec.authors = ["Robie Lutsey"]
10
+ spec.email = ["robie1373@gmail.com"]
11
+ spec.summary = %q{Flash card type game for learning cw (morse code).}
12
+ spec.description = %q{Flash card will play a game with you. It plays cw and you type the character(s). Flash cards are kept in a json file. A set of character sets in stored in the spec directory.}
13
+ spec.homepage = ""
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.5"
22
+ spec.add_development_dependency "rake", "~> 10.1.1"
23
+ spec.add_development_dependency "rspec"
24
+
25
+ spec.add_dependency "brasspounder", "~> 0.0"
26
+ spec.add_dependency "querinator", "~> 0.0.2"
27
+ end
@@ -0,0 +1,3 @@
1
+ module Cwflash
2
+ VERSION = "0.0.1"
3
+ end
data/lib/cwflash.rb ADDED
@@ -0,0 +1,34 @@
1
+ require_relative "cwflash/version"
2
+ require "brasspounder"
3
+
4
+ module Cwflash
5
+ class Runner
6
+ def initialize(filename="01-eish.json")
7
+ @path = File.absolute_path(File.join(File.dirname(__FILE__), "..", "samples", filename))
8
+ end
9
+
10
+ def run
11
+ sender = Brasspounder::Sender.new(speed = :norm, freq = 600, verbose = false)
12
+ cards = Querinator::Importer.new.parse(@path)
13
+
14
+ cards.shuffle.each do |card|
15
+ puts "\n Playing #{card.pose.upcase}\n\n"
16
+
17
+
18
+ sender.send card.pose
19
+
20
+ print "What was that code?\n-> "
21
+ input = gets()
22
+ input = input.chomp
23
+
24
+ if card.is_correct?(input)
25
+ puts "Hooray!!"
26
+ else
27
+ puts "oooooh."
28
+ puts "The correct answer was '#{card.answer.upcase}'"
29
+ end
30
+ end
31
+ end
32
+ end
33
+
34
+ end
@@ -0,0 +1,5 @@
1
+ [{"question":"e","answer":"e"},
2
+ {"question":"i","answer":"i"},
3
+ {"question":"s","answer":"s"},
4
+ {"question":"h","answer":"h"}
5
+ ]
@@ -0,0 +1,4 @@
1
+ [{"question":"t","answer":"t"},
2
+ {"question":"m","answer":"m"},
3
+ {"question":"o","answer":"o"}
4
+ ]
@@ -0,0 +1,4 @@
1
+ [{"question":"a","answer":"a"},
2
+ {"question":"u","answer":"u"},
3
+ {"question":"v","answer":"v"}
4
+ ]
@@ -0,0 +1,4 @@
1
+ [{"question":"n","answer":"n"},
2
+ {"question":"d","answer":"d"},
3
+ {"question":"b","answer":"b"}
4
+ ]
@@ -0,0 +1,4 @@
1
+ [{"question":"a","answer":"a"},
2
+ {"question":"w","answer":"w"},
3
+ {"question":"j","answer":"j"}
4
+ ]
@@ -0,0 +1,5 @@
1
+ [{"question":"n","answer":"n"},
2
+ {"question":"k","answer":"k"},
3
+ {"question":"l","answer":"l"},
4
+ {"question":"c","answer":"c"}
5
+ ]
@@ -0,0 +1,4 @@
1
+ [{"question":"f","answer":"f"},
2
+ {"question":"g","answer":"g"},
3
+ {"question":"l","answer":"l"}
4
+ ]
@@ -0,0 +1,4 @@
1
+ [{"question":"r","answer":"r"},
2
+ {"question":"g","answer":"g"},
3
+ {"question":"z","answer":"z"}
4
+ ]
@@ -0,0 +1,5 @@
1
+ [{"question":"p","answer":"p"},
2
+ {"question":"q","answer":"q"},
3
+ {"question":"x","answer":"x"},
4
+ {"question":"y","answer":"y"}
5
+ ]
@@ -0,0 +1,5 @@
1
+ [{"question":"1","answer":"1"},
2
+ {"question":"2","answer":"2"},
3
+ {"question":"3","answer":"3"},
4
+ {"question":"/","answer":"/"}
5
+ ]
@@ -0,0 +1,5 @@
1
+ [{"question":"4","answer":"4"},
2
+ {"question":"5","answer":"5"},
3
+ {"question":"6","answer":"6"},
4
+ {"question":".","answer":"."}
5
+ ]
@@ -0,0 +1,5 @@
1
+ [{"question":"7","answer":"7"},
2
+ {"question":"8","answer":"8"},
3
+ {"question":"9","answer":"9"},
4
+ {"question":"0","answer":"0"}
5
+ ]
@@ -0,0 +1,7 @@
1
+ [{"question":"cq","answer":"cq"},
2
+ {"question":"ar","answer":"ar"},
3
+ {"question":"kn","answer":"kn"},
4
+ {"question":"sk","answer":"sk"},
5
+ {"question":"cl","answer":"cl"},
6
+ {"question":"bk","answer":"bk"}
7
+ ]
@@ -0,0 +1,4 @@
1
+ [{"question":"cq","answer":"cq"},
2
+ {"question":"c","answer":"c"},
3
+ {"question":".","answer":"."git}
4
+ ]
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe Cwflash do
4
+ it 'should have a version number' do
5
+ Cwflash::VERSION.should_not be_nil
6
+ end
7
+
8
+ it 'should do something useful' do
9
+ false.should be_true
10
+ end
11
+ end
@@ -0,0 +1,2 @@
1
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
+ require 'cwflash'
metadata ADDED
@@ -0,0 +1,146 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cwflash
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Robie Lutsey
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-01-26 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.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 10.1.1
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 10.1.1
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: brasspounder
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: querinator
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.0.2
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.0.2
83
+ description: Flash card will play a game with you. It plays cw and you type the character(s).
84
+ Flash cards are kept in a json file. A set of character sets in stored in the spec
85
+ directory.
86
+ email:
87
+ - robie1373@gmail.com
88
+ executables:
89
+ - cwflash
90
+ extensions: []
91
+ extra_rdoc_files: []
92
+ files:
93
+ - ".gitignore"
94
+ - ".rspec"
95
+ - ".travis.yml"
96
+ - Gemfile
97
+ - LICENSE.txt
98
+ - README.md
99
+ - Rakefile
100
+ - bin/cwflash
101
+ - cwflash.gemspec
102
+ - lib/cwflash.rb
103
+ - lib/cwflash/version.rb
104
+ - samples/01-eish.json
105
+ - samples/02-tmo.json
106
+ - samples/03-auv.json
107
+ - samples/04-ndb.json
108
+ - samples/05-awj.json
109
+ - samples/06-nkcl.json
110
+ - samples/07-flg.json
111
+ - samples/08-rgz.json
112
+ - samples/09-pqxy.json
113
+ - samples/10-123slash.json
114
+ - samples/11-456dot.json
115
+ - samples/12-7890.json
116
+ - samples/13-prosigns.json
117
+ - samples/practice_cards.json
118
+ - spec/cwflash_spec.rb
119
+ - spec/spec_helper.rb
120
+ homepage: ''
121
+ licenses:
122
+ - MIT
123
+ metadata: {}
124
+ post_install_message:
125
+ rdoc_options: []
126
+ require_paths:
127
+ - lib
128
+ required_ruby_version: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
+ required_rubygems_version: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ requirements: []
139
+ rubyforge_project:
140
+ rubygems_version: 2.0.3
141
+ signing_key:
142
+ specification_version: 4
143
+ summary: Flash card type game for learning cw (morse code).
144
+ test_files:
145
+ - spec/cwflash_spec.rb
146
+ - spec/spec_helper.rb