match_point 0.0.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.
@@ -0,0 +1,7 @@
1
+ class SomeClass
2
+
3
+ def self.hi
4
+ "Hello from some class"
5
+ end
6
+
7
+ end
@@ -0,0 +1,3 @@
1
+ module MatchPoint
2
+ VERSION = '0.0.0'
3
+ end
@@ -0,0 +1,7 @@
1
+ require 'match_point/version'
2
+
3
+ module MatchPoint
4
+ def self.version_string
5
+ "MatchPoint version #{MatchPoint::VERSION}"
6
+ end
7
+ end
@@ -0,0 +1,13 @@
1
+ require 'test/unit'
2
+ require 'match_point'
3
+
4
+ class TestMatchPoint < Test::Unit::TestCase
5
+ def test_silly_example
6
+ assert_equal 2+2, 4
7
+ end
8
+
9
+ def test_version_string
10
+ assert_equal MatchPoint.version_string, "MatchPoint version #{MatchPoint::VERSION}"
11
+ end
12
+
13
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: match_point
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Nithin Bekal
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-05-10 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Solves Sudoku puzzles. D'uh!
15
+ email:
16
+ - me@nithinbekal.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - lib/match_point.rb
22
+ - lib/match_point/some_class.rb
23
+ - lib/match_point/version.rb
24
+ - test/test_match_point.rb
25
+ homepage: http://github.com/nithinbekal/sudoku
26
+ licenses: []
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ none: false
33
+ requirements:
34
+ - - ! '>='
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ none: false
39
+ requirements:
40
+ - - ! '>='
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubyforge_project:
45
+ rubygems_version: 1.8.24
46
+ signing_key:
47
+ specification_version: 3
48
+ summary: Sudoku solver in Ruby
49
+ test_files:
50
+ - test/test_match_point.rb