filler 0.0.2 → 0.0.3
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.
- data/README.md +4 -0
- data/gem.gemspec +2 -3
- data/lib/filler/filler_helper.rb +12 -0
- data/lib/filler.rb +13 -9
- data/test/test_helper.rb +1 -1
- metadata +4 -5
- data/.LICENSE.swp +0 -0
- data/lib/filler/dummy_helper.rb +0 -21
data/README.md
CHANGED
data/gem.gemspec
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "filler"
|
3
|
-
s.version = "0.0.
|
3
|
+
s.version = "0.0.3"
|
4
4
|
s.platform = Gem::Platform::RUBY
|
5
5
|
s.authors = ["Tomas Karlsen"]
|
6
6
|
s.email = ["tkarlsn@gmail.com"]
|
7
7
|
s.homepage = "https://github.com/karlsn/filler"
|
8
|
-
s.description = "Filler gem, does not actually work
|
8
|
+
s.description = "Filler gem, does not actually work...yet."
|
9
9
|
s.summary = "Filler gem for later/test purposes"
|
10
10
|
s.rubyforge_project = s.name
|
11
11
|
|
@@ -15,4 +15,3 @@ Gem::Specification.new do |s|
|
|
15
15
|
|
16
16
|
s.require_path = 'lib'
|
17
17
|
end
|
18
|
-
|
data/lib/filler.rb
CHANGED
@@ -1,15 +1,19 @@
|
|
1
1
|
require 'rubygems'
|
2
|
-
require '
|
2
|
+
require 'filler/filler_helper.rb'
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
4
|
+
module Filler
|
5
|
+
class << self
|
6
|
+
|
7
|
+
def write_out
|
8
|
+
@words = get_text
|
9
|
+
@words.each do |word|
|
10
|
+
puts word + "\n"
|
11
|
+
end
|
12
|
+
end
|
9
13
|
|
10
|
-
|
11
|
-
|
12
|
-
|
14
|
+
private
|
15
|
+
def get_text
|
16
|
+
@w = Filler::Words.words
|
13
17
|
end
|
14
18
|
end
|
15
19
|
end
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 3
|
9
|
+
version: 0.0.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Tomas Karlsen
|
@@ -18,7 +18,7 @@ date: 2010-12-15 00:00:00 +01:00
|
|
18
18
|
default_executable:
|
19
19
|
dependencies: []
|
20
20
|
|
21
|
-
description: Filler gem, does not actually work
|
21
|
+
description: Filler gem, does not actually work...yet.
|
22
22
|
email:
|
23
23
|
- tkarlsn@gmail.com
|
24
24
|
executables: []
|
@@ -28,13 +28,12 @@ extensions: []
|
|
28
28
|
extra_rdoc_files: []
|
29
29
|
|
30
30
|
files:
|
31
|
-
- .LICENSE.swp
|
32
31
|
- LICENSE
|
33
32
|
- README.md
|
34
33
|
- Rakefile
|
35
34
|
- gem.gemspec
|
36
35
|
- lib/filler.rb
|
37
|
-
- lib/filler/
|
36
|
+
- lib/filler/filler_helper.rb
|
38
37
|
- lib/filler/lipsum.txt
|
39
38
|
- test/filler_test.rb
|
40
39
|
- test/test_helper.rb
|
data/.LICENSE.swp
DELETED
Binary file
|
data/lib/filler/dummy_helper.rb
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
|
3
|
-
class DummyHelper
|
4
|
-
def initialize(count)
|
5
|
-
@count = count
|
6
|
-
@words = getWords
|
7
|
-
@words.each do |word|
|
8
|
-
puts word
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
def getWords
|
13
|
-
@words = []
|
14
|
-
File.open("lipsum.txt") do |file|
|
15
|
-
file.each_line do |word|
|
16
|
-
@words << word
|
17
|
-
end
|
18
|
-
end
|
19
|
-
return @words
|
20
|
-
end
|
21
|
-
end
|