sieve 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,4 @@
1
+ require "sieve/sieve"
2
+
3
+ module Sieve
4
+ end
metadata ADDED
@@ -0,0 +1,83 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sieve
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Josh Clayton
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-08-28 00:00:00 -04:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description:
23
+ email: joshua.clayton@gmail.com
24
+ executables: []
25
+
26
+ extensions:
27
+ - ext/sieve/extconf.rb
28
+ extra_rdoc_files: []
29
+
30
+ files:
31
+ - .gitignore
32
+ - MIT-LICENSE
33
+ - README.markdown
34
+ - Rakefile
35
+ - lib/sieve.rb
36
+ - ext/sieve/extconf.rb
37
+ - ext/sieve/sieve.c
38
+ - ext/sieve/sieve.h
39
+ - cucumber.yml
40
+ - features/sieve.feature
41
+ - features/step_definitions/sieve_steps.rb
42
+ - features/support/env.rb
43
+ - features/support/primes.txt
44
+ has_rdoc: true
45
+ homepage: http://github.com/joshuaclayton/sieve
46
+ licenses: []
47
+
48
+ post_install_message:
49
+ rdoc_options: []
50
+
51
+ require_paths:
52
+ - lib
53
+ required_ruby_version: !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ hash: 3
59
+ segments:
60
+ - 0
61
+ version: "0"
62
+ required_rubygems_version: !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ hash: 3
68
+ segments:
69
+ - 0
70
+ version: "0"
71
+ requirements: []
72
+
73
+ rubyforge_project:
74
+ rubygems_version: 1.3.7
75
+ signing_key:
76
+ specification_version: 3
77
+ summary: Sieve of Eratosthenes
78
+ test_files:
79
+ - cucumber.yml
80
+ - features/sieve.feature
81
+ - features/step_definitions/sieve_steps.rb
82
+ - features/support/env.rb
83
+ - features/support/primes.txt