bereshit 0.0.5

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: 6f325d5b965b4a32f9a21cef60f7d809d726ce4c
4
+ data.tar.gz: 88ac6bb6a613bb2af33e3cec5b2f040394381866
5
+ SHA512:
6
+ metadata.gz: bc75410f72589657e4db3b86a1cb6c9e340f33d6d8cfa658b4c12f4bf627bbfa1a4c82f28101880c048f7df926eb391352e5a1cb66355179fb8bf49c9a69fafa
7
+ data.tar.gz: 1bb0910cd36477ec0ea81faecee190a89869db9a6d60668a394c3d371b7785233276edf06c041779fb5f84af82e239e73bb42fada56c1407a5c210b07e7c1626
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/.travis.yml ADDED
@@ -0,0 +1,16 @@
1
+ language: ruby
2
+ cache: bundler
3
+
4
+ rvm:
5
+ - jruby
6
+ - 2.0.0
7
+ - 2.1.0
8
+
9
+ script: 'bundle exec rspec spec'
10
+
11
+ notifications:
12
+ email:
13
+ recipients:
14
+ - agmond@gmx.com.br
15
+ on_failure: change
16
+ on_success: never
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in bereshit.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Guinsly Mondesir
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,94 @@
1
+ # Bereshit
2
+
3
+ [Bereshit](http://en.wikipedia.org/wiki/Bereshit_(parsha)) mean 'in the beginning...' in hebrew. This gems is a lorem ipsum based on Genesis 1:1 the first Chapter of the book of Genesis (Torah/Bible)
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'bereshit'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install bereshit
20
+
21
+ ## Usage
22
+
23
+ ####Retrieve a paragraph
24
+ ```ruby
25
+ paragraph = Bereshit.paragraphs
26
+ #or detailed
27
+ paragraph = Bereshit.paragraphs(1, false, false, 'hebrew')
28
+ puts paragraph
29
+ => <p>בְּרֵאשִׁית בָּרָא אֱלֹהִים אֵת הַשָּׁמַיִם וְאֵת הָאָרֶץ:</p>
30
+
31
+ ```
32
+
33
+ ####retrieve 3 paragraphs
34
+ ```ruby
35
+ puts paragraphs = Bereshit.paragraphs(3, false, false, 'with_typo_fallback_to_english')
36
+ => <p>And God made the beasts of the earth according to their kind and the cattle according to their kind, and all the creeping things of the ground according to their kind, and God saw that it was good.</p><p>And God said, "Let us make man in our image, after our likeness, and they shall rule over the fish of the sea and over the fowl of the heaven and over the animals and over all the earth and over all the creeping things that creep upon the earth."</p><p>And God created man in His image; in the image of God He created him; male and female He created them.</p>
37
+ #this was a String not an Array of 3 paragraph strings
38
+
39
+ ```
40
+
41
+ ####retrieve a paragraph without the `<p>` tag
42
+ ```ruby
43
+ puts Bereshit.paragraphs(1, true, false, 'english')
44
+ => And God said, "Let the earth sprout vegetation, seed yielding herbs and fruit trees producing fruit according to its kind in which its seed is found, on the earth," and it was so.
45
+
46
+ ```
47
+
48
+ ####retrieve without [the full stop](http://en.wikipedia.org/wiki/Full_stop) (.)
49
+ ```ruby
50
+ puts Bereshit.paragraphs(1, true, true, 'kreyol')
51
+ => Bondye kreye moun. Li fè l' pòtre ak li. Li kreye yo gason ak fi
52
+ ```
53
+
54
+ ####shortcut
55
+ ```ruby
56
+ Bareshit.p #with all the parameters
57
+ #is equal to
58
+ Bereshit.paragraphs #with all the parameters
59
+ ```
60
+
61
+ ####retrieve a sermon
62
+ ```ruby
63
+ title = Bereshit.sermon
64
+ #or
65
+ puts title = Bereshit.sermon('kreyol')
66
+ => Bondye kreye moun. Li fè l' pòtre ak li. Li kreye yo gason ak fi
67
+ ```
68
+ In this version all the 'sermon' are in english... but feel free to fork, translate and add sermons.
69
+ And the sermon are related to ALL the chapter of the book of Genesis so not only the first chapter.
70
+
71
+ ####Locale
72
+
73
+ Available locale
74
+ 'hebrew'
75
+ 'kreyol' stands for [Haitian kreyol](http://en.wikipedia.org/wiki/Haitian_Creole)
76
+ 'english'
77
+
78
+
79
+ ##todo
80
+ add other locales :)
81
+ add sermon ...
82
+
83
+
84
+ ## Contributing
85
+
86
+ [![guinslym](https://s3.amazonaws.com/uifaces/faces/twitter/guinslym/73.jpg)](http://uifaces.com/guinslym)
87
+ 1. Star it :)
88
+ 2. Fork it ( https://github.com/guinslym/Uifaces/fork )
89
+ 3. Create your feature branch (`git checkout -b my-new-feature`)
90
+ 4. Test it
91
+ 5. Commit your changes (`git commit -am 'Add some feature'`)
92
+ 6. Push to the branch (`git push origin my-new-feature`)
93
+ 7. Create a new Pull Request
94
+
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
data/bereshit.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 'bereshit/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "bereshit"
8
+ spec.version = Bereshit::VERSION
9
+ spec.authors = ["Guinsly Mondesir"]
10
+ spec.email = ["agmond@gmx.com.br"]
11
+ spec.summary = %q{Bereshit mean 'in the beginning...' in hebrew. This gems is a lorem ipsum based on Genesis 1:1 -- the first Chapter of the book of Genesis (Torah/Bible)}
12
+ spec.description = %q{Bereshit mean 'in the beginning...' in hebrew. This gems is a lorem ipsum based on Genesis 1:1 -- the first Chapter of the book of Genesis (Torah/Bible)}
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.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ spec.add_development_dependency "rspec"
24
+ spec.add_development_dependency "rspec-nc"
25
+ spec.add_development_dependency "guard"
26
+ spec.add_development_dependency "guard-rspec"
27
+ end
@@ -0,0 +1,3 @@
1
+ module Bereshit
2
+ VERSION = "0.0.5"
3
+ end
data/lib/bereshit.rb ADDED
@@ -0,0 +1,91 @@
1
+ # -*- coding: utf-8 -*-
2
+ #require "bereshit/version"
3
+ require 'json'
4
+
5
+
6
+ module Bereshit
7
+
8
+ PUNCTUATION = ['.', ',', '!', '?', ':']
9
+ LOCALE = ['hebrew', 'english', 'kreyol']
10
+
11
+ # Return a sermon
12
+ def self.sermon(locale='english')
13
+ #sermons scrappe from http://www.sermonnotebook.org/otsermons.htm
14
+
15
+ #if you have a typo in the locale name THAN thre program will fallback to english
16
+ locale = LOCALE.include?(locale) ? locale : 'english'
17
+
18
+ #load the json file 'locale/english/sermon.json'
19
+ loader = Loader.new('locale/' + locale +'/sermon.json')
20
+
21
+ return loader.lines.sample
22
+ end
23
+
24
+ # Return Paragraphs
25
+ def self.paragraphs(count = 5, plainText = false, exclude_trailing_period = false, locale="english")
26
+
27
+ #if you have a typo in the locale name THAN thre program will fallback to english
28
+ locale = LOCALE.include?(locale) ? locale : 'english'
29
+
30
+ #load the json file 'locale/english/bereshit.json'
31
+ loader = Loader.new('locale/' + locale +'/bereshit.json')
32
+
33
+ # Start at a random index in the array
34
+ start_inx = rand(loader.lines.count - count)
35
+
36
+ # Check for overrun
37
+ raise "I can't retrieve that many paragraphs. Try a smaller value." if (start_inx + count) > loader.lines.count
38
+
39
+ # Build paragraphs from array
40
+ paragraphs = loader.lines[start_inx, count]
41
+
42
+ # Build final format based on parameters
43
+ paragraphs.map! do |line|
44
+
45
+ remove_puctuation(line) if exclude_trailing_period
46
+ if plainText
47
+ line = "#{line}"
48
+ else
49
+ line = "<p>#{line}</p>"
50
+ end
51
+ end
52
+
53
+ paragraphs.join('')
54
+ end
55
+
56
+ def self.p(count = 5, plainText = false, exclude_trailing_period = false, locale="english")
57
+ self.paragraphs(count, plainText, exclude_trailing_period, locale)
58
+ end
59
+
60
+ private
61
+
62
+
63
+ def self.remove_puctuation(line)
64
+ PUNCTUATION.each do |punct|
65
+ if line[line.length - 1].to_s == punct
66
+ line[line.length - 1] = ""
67
+ return
68
+ end
69
+ end
70
+ end
71
+
72
+
73
+ # Genesis file loader
74
+ class Loader
75
+
76
+ attr_accessor :lines, :file
77
+
78
+ def initialize(file='')
79
+ self.file = file
80
+ self.lines = []
81
+ file = File.read(File.dirname(__FILE__) << "/" + file)
82
+ return self.lines = JSON.parse(file)
83
+ #File.open(File.dirname(__FILE__) << '/sermon.txt').each_line do |line|
84
+ puts line
85
+ end#end initialize
86
+
87
+ end#loader
88
+
89
+ end#module
90
+
91
+
@@ -0,0 +1 @@
1
+ ["In the beginning of God's creation of the heavens and the earth.", "Now the earth was astonishingly empty, and darkness was on the face of the deep, and the spirit of God was hovering over the face of the water.", "And God said, \"Let there be light,\" and there was light.", "And God saw the light that it was good, and God separated between the light and between the darkness.", "And God called the light day, and the darkness He called night, and it was evening and it was morning, one day.", "And God said, \"Let there be an expanse in the midst of the water, and let it be a separation between water and water.\"", "And God made the expanse and it separated between the water that was below the expanse and the water that was above the expanse, and it was so.", "And God called the expanse Heaven, and it was evening, and it was morning, a second day.", "And God said, \"Let the water that is beneath the heavens gather into one place, and let the dry land appear,\" and it was so.", "And God called the dry land earth, and the gathering of the waters He called seas, and God saw that it was good.", "And God said, \"Let the earth sprout vegetation, seed yielding herbs and fruit trees producing fruit according to its kind in which its seed is found, on the earth,\" and it was so.", "And the earth gave forth vegetation, seed yielding herbs according to its kind, and trees producing fruit, in which its seed is found, according to its kind, and God saw that it was good.", "And it was evening, and it was morning, a third day.", "And God said, \"Let there be luminaries in the expanse of the heavens, to separate between the day and between the night, and they shall be for signs and for appointed seasons and for days and years.", "And they shall be for luminaries in the expanse of the heavens to shed light upon the earth.\" And it was so.", "And God made the two great luminaries: the great luminary to rule the day and the lesser luminary to rule the night, and the stars.", "And God placed them in the expanse of the heavens to shed light upon the earth.", "And to rule over the day and over the night, and to separate between the light and between the darkness, and God saw that it was good.", "And it was evening, and it was morning, a fourth day.", "And God said, \"Let the waters swarm a swarming of living creatures, and let fowl fly over the earth, across the expanse of the heavens.\"", "And God created the great sea monsters, and every living creature that crawls, with which the waters swarmed, according to their kind, and every winged fowl, according to its kind, and God saw that it was good.", "And God blessed them, saying, \"Be fruitful and multiply, and fill the waters of the seas, and let the fowl multiply upon the earth.\"", "And it was evening, and it was morning, a fifth day.", "And God said, \"Let the earth bring forth living creatures according to their kind, cattle and creeping things and the beasts of the earth according to their kind,\" and it was so.", "And God made the beasts of the earth according to their kind and the cattle according to their kind, and all the creeping things of the ground according to their kind, and God saw that it was good.", "And God said, \"Let us make man in our image, after our likeness, and they shall rule over the fish of the sea and over the fowl of the heaven and over the animals and over all the earth and over all the creeping things that creep upon the earth.\"", "And God created man in His image; in the image of God He created him; male and female He created them.", "And God blessed them, and God said to them, \"Be fruitful and multiply and fill the earth and subdue it, and rule over the fish of the sea and over the fowl of the sky and over all the beasts that tread upon the earth. \"", "And God said, \"Behold, I have given you every seed bearing herb, which is upon the surface of the entire earth, and every tree that has seed bearing fruit; it will be yours for food.", "And to all the beasts of the earth and to all the fowl of the heavens, and to everything that moves upon the earth, in which there is a living spirit, every green herb to eat,\" and it was so.", "And God saw all that He had made, and behold it was very good, and it was evening and it was morning, the sixth day."]
@@ -0,0 +1 @@
1
+ ["A Biblical View Of Human Life", "A Firm Family Foundation", "The Lamb Is Promised", "God's Grace In The Fall", "The Way Of Cain", "Are The Days Of Noah Here Again?", "Lessons From An Ancient Graveyard", "A Good Exit Strategy", "The Achievements Of A Successful Father", "The Gospel In The Ship", "The Invitation To Committment", "The Call To A Life Of Faith", "Abram's Commitment To A Life Of Faith", "The Truth About The Path To Egypt", "The Truth About The Road Back To Canaan", "Abram's Trouble With Lot", "God's Promise To Abram Renewed", "Abram: A Man Of Integrity", "Abram's Word From God", "Moving Toward Maturity", "The God Who Sees", "That Trouble With Hagar", "The God Of The Everlasting Covenant", "The Three Sides Of A Man Named Abraham", "The Privileges Of The Godly Man", "Remembering Lot's Wife", "Sin And The Saint Of God", "What Aileth Thee?", "The Case Of The Broken Hearted Mother", "How To Enjoy The Rest Areas Of Life", "Qualities Of Genuine Worship", "The Lamb On Mount Moriah", "On The Mountain Of Absolute Surrender", "The Trial Of Faith", "The Setting Of Biblical Worship", "Standing Up From Before The Dead", "Wilt Thou Go With This Man?", "Abraham: Gathered To His People", "The Realities Of A Pilgrim's Life", "Gold From An Unlikely Mine", "Just A Little Talk With Jesus", "Getting Back To Bethel", "A Rose Among The Thorns", "God Has Something Special For You", "The Heartbreak Of A Shattered Dream", "The Lord Was With Joseph", "I Must Be Dreaming", "The Man Who Kept His Character", "Winning Your Battle With Temptation", "The Power Of A Faithful Life", "How To Thrive In The Prisons Of Life", "The Prison Of His Promotions", "Forgotten But Not Forsaken", "From The Prison To The Palace", "Joseph's Gentile Bride", "Joseph: The Savior Of The World", "Resurrecting A Dead Conscience", "Joseph: A Portrait Of The Glorified Christ", "Judah Grows Up", "Swimming In A Sea Of Emotion", "Gifts Fit For A King", "The Case Of The Missing Silver Cup", "I Am Joseph", "Lessons From The School Of Grace", "It Is Enough", "Joseph's Family Reunion", "The Death Of A Pilgrim", "Crisis Management", "Reflections Of A Life", "Confronting The Problem Of Sin", "The Judgment Seat Of Jacob", "God Meant it For Good", "A Coffin In Egypt"]
@@ -0,0 +1 @@
1
+ ["\u05d1\u05bc\u05b0\u05e8\u05b5\u05d0\u05e9\u05c1\u05b4\u05d9\u05ea \u05d1\u05bc\u05b8\u05e8\u05b8\u05d0 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d0\u05b5\u05ea \u05d4\u05b7\u05e9\u05bc\u05c1\u05b8\u05de\u05b7\u05d9\u05b4\u05dd \u05d5\u05b0\u05d0\u05b5\u05ea \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5:", "\u05d5\u05b0\u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5 \u05d4\u05b8\u05d9\u05b0\u05ea\u05b8\u05d4 \u05ea\u05b9\u05d4\u05d5\u05bc \u05d5\u05b8\u05d1\u05b9\u05d4\u05d5\u05bc \u05d5\u05b0\u05d7\u05e9\u05c1\u05b6\u05da\u05b0 \u05e2\u05b7\u05dc \u05e4\u05bc\u05b0\u05e0\u05b5\u05d9 \u05ea\u05b0\u05d4\u05d5\u05b9\u05dd \u05d5\u05b0\u05e8\u05d5\u05bc\u05d7\u05b7 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05de\u05b0\u05e8\u05b7\u05d7\u05b6\u05e4\u05b6\u05ea \u05e2\u05b7\u05dc \u05e4\u05bc\u05b0\u05e0\u05b5\u05d9 \u05d4\u05b7\u05de\u05bc\u05b8\u05d9\u05b4\u05dd:", "\u05d5\u05b7\u05d9\u05bc\u05b9\u05d0\u05de\u05b6\u05e8 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d9\u05b0\u05d4\u05b4\u05d9 \u05d0\u05d5\u05b9\u05e8 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05d0\u05d5\u05b9\u05e8:", "\u05d5\u05b7\u05d9\u05bc\u05b7\u05e8\u05b0\u05d0 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d0\u05b6\u05ea \u05d4\u05b8\u05d0\u05d5\u05b9\u05e8 \u05db\u05bc\u05b4\u05d9 \u05d8\u05d5\u05b9\u05d1 \u05d5\u05b7\u05d9\u05bc\u05b7\u05d1\u05b0\u05d3\u05bc\u05b5\u05dc \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d1\u05bc\u05b5\u05d9\u05df \u05d4\u05b8\u05d0\u05d5\u05b9\u05e8 \u05d5\u05bc\u05d1\u05b5\u05d9\u05df \u05d4\u05b7\u05d7\u05e9\u05c1\u05b6\u05da\u05b0:", "\u05d5\u05b7\u05d9\u05bc\u05b4\u05e7\u05b0\u05e8\u05b8\u05d0 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd | \u05dc\u05b8\u05d0\u05d5\u05b9\u05e8 \u05d9\u05d5\u05b9\u05dd \u05d5\u05b0\u05dc\u05b7\u05d7\u05e9\u05c1\u05b6\u05da\u05b0 \u05e7\u05b8\u05e8\u05b8\u05d0 \u05dc\u05b8\u05d9\u05b0\u05dc\u05b8\u05d4 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05e2\u05b6\u05e8\u05b6\u05d1 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05d1\u05b9\u05e7\u05b6\u05e8 \u05d9\u05d5\u05b9\u05dd \u05d0\u05b6\u05d7\u05b8\u05d3:", "\u05d5\u05b7\u05d9\u05bc\u05b9\u05d0\u05de\u05b6\u05e8 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d9\u05b0\u05d4\u05b4\u05d9 \u05e8\u05b8\u05e7\u05b4\u05d9\u05e2\u05b7 \u05d1\u05bc\u05b0\u05ea\u05d5\u05b9\u05da\u05b0 \u05d4\u05b7\u05de\u05bc\u05b8\u05d9\u05b4\u05dd \u05d5\u05b4\u05d9\u05d4\u05b4\u05d9 \u05de\u05b7\u05d1\u05b0\u05d3\u05bc\u05b4\u05d9\u05dc \u05d1\u05bc\u05b5\u05d9\u05df \u05de\u05b7\u05d9\u05b4\u05dd \u05dc\u05b8\u05de\u05b8\u05d9\u05b4\u05dd:", "\u05d5\u05b7\u05d9\u05bc\u05b7\u05e2\u05b7\u05e9\u05c2 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d0\u05b6\u05ea \u05d4\u05b8\u05e8\u05b8\u05e7\u05b4\u05d9\u05e2\u05b7 \u05d5\u05b7\u05d9\u05bc\u05b7\u05d1\u05b0\u05d3\u05bc\u05b5\u05dc \u05d1\u05bc\u05b5\u05d9\u05df \u05d4\u05b7\u05de\u05bc\u05b7\u05d9\u05b4\u05dd \u05d0\u05b2\u05e9\u05c1\u05b6\u05e8 \u05de\u05b4\u05ea\u05bc\u05b7\u05d7\u05b7\u05ea \u05dc\u05b8\u05e8\u05b8\u05e7\u05b4\u05d9\u05e2\u05b7 \u05d5\u05bc\u05d1\u05b5\u05d9\u05df \u05d4\u05b7\u05de\u05bc\u05b7\u05d9\u05b4\u05dd \u05d0\u05b2\u05e9\u05c1\u05b6\u05e8 \u05de\u05b5\u05e2\u05b7\u05dc \u05dc\u05b8\u05e8\u05b8\u05e7\u05b4\u05d9\u05e2\u05b7 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05db\u05b5\u05df:", "\u05d5\u05b7\u05d9\u05bc\u05b4\u05e7\u05b0\u05e8\u05b8\u05d0 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05dc\u05b8\u05e8\u05b8\u05e7\u05b4\u05d9\u05e2\u05b7 \u05e9\u05c1\u05b8\u05de\u05b8\u05d9\u05b4\u05dd \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05e2\u05b6\u05e8\u05b6\u05d1 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05d1\u05b9\u05e7\u05b6\u05e8 \u05d9\u05d5\u05b9\u05dd \u05e9\u05c1\u05b5\u05e0\u05b4\u05d9:", "\u05d5\u05b7\u05d9\u05bc\u05b9\u05d0\u05de\u05b6\u05e8 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d9\u05b4\u05e7\u05bc\u05b8\u05d5\u05d5\u05bc \u05d4\u05b7\u05de\u05bc\u05b7\u05d9\u05b4\u05dd \u05de\u05b4\u05ea\u05bc\u05b7\u05d7\u05b7\u05ea \u05d4\u05b7\u05e9\u05bc\u05c1\u05b8\u05de\u05b7\u05d9\u05b4\u05dd \u05d0\u05b6\u05dc \u05de\u05b8\u05e7\u05d5\u05b9\u05dd \u05d0\u05b6\u05d7\u05b8\u05d3 \u05d5\u05b0\u05ea\u05b5\u05e8\u05b8\u05d0\u05b6\u05d4 \u05d4\u05b7\u05d9\u05bc\u05b7\u05d1\u05bc\u05b8\u05e9\u05c1\u05b8\u05d4 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05db\u05b5\u05df:", "\u05d5\u05b7\u05d9\u05bc\u05b4\u05e7\u05b0\u05e8\u05b8\u05d0 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd | \u05dc\u05b7\u05d9\u05bc\u05b7\u05d1\u05bc\u05b8\u05e9\u05c1\u05b8\u05d4 \u05d0\u05b6\u05e8\u05b6\u05e5 \u05d5\u05bc\u05dc\u05b0\u05de\u05b4\u05e7\u05b0\u05d5\u05b5\u05d4 \u05d4\u05b7\u05de\u05bc\u05b7\u05d9\u05b4\u05dd \u05e7\u05b8\u05e8\u05b8\u05d0 \u05d9\u05b7\u05de\u05bc\u05b4\u05d9\u05dd \u05d5\u05b7\u05d9\u05bc\u05b7\u05e8\u05b0\u05d0 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05db\u05bc\u05b4\u05d9 \u05d8\u05d5\u05b9\u05d1:", "\u05d5\u05b7\u05d9\u05bc\u05b9\u05d0\u05de\u05b6\u05e8 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05ea\u05bc\u05b7\u05d3\u05b0\u05e9\u05c1\u05b5\u05d0 \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5 \u05d3\u05bc\u05b6\u05e9\u05c1\u05b6\u05d0 \u05e2\u05b5\u05e9\u05c2\u05b6\u05d1 \u05de\u05b7\u05d6\u05b0\u05e8\u05b4\u05d9\u05e2\u05b7 \u05d6\u05b6\u05e8\u05b7\u05e2 \u05e2\u05b5\u05e5 \u05e4\u05bc\u05b0\u05e8\u05b4\u05d9 \u05e2\u05b9\u05e9\u05c2\u05b6\u05d4 \u05e4\u05bc\u05b0\u05e8\u05b4\u05d9 \u05dc\u05b0\u05de\u05b4\u05d9\u05e0\u05d5\u05b9 \u05d0\u05b2\u05e9\u05c1\u05b6\u05e8 \u05d6\u05b7\u05e8\u05b0\u05e2\u05d5\u05b9 \u05d1\u05d5\u05b9 \u05e2\u05b7\u05dc \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05db\u05b5\u05df:", "\u05d5\u05b7\u05ea\u05bc\u05d5\u05b9\u05e6\u05b5\u05d0 \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5 \u05d3\u05bc\u05b6\u05e9\u05c1\u05b6\u05d0 \u05e2\u05b5\u05e9\u05c2\u05b6\u05d1 \u05de\u05b7\u05d6\u05b0\u05e8\u05b4\u05d9\u05e2\u05b7 \u05d6\u05b6\u05e8\u05b7\u05e2 \u05dc\u05b0\u05de\u05b4\u05d9\u05e0\u05b5\u05d4\u05d5\u05bc \u05d5\u05b0\u05e2\u05b5\u05e5 \u05e2\u05b9\u05e9\u05c2\u05b6\u05d4 \u05e4\u05bc\u05b0\u05e8\u05b4\u05d9 \u05d0\u05b2\u05e9\u05c1\u05b6\u05e8 \u05d6\u05b7\u05e8\u05b0\u05e2\u05d5\u05b9 \u05d1\u05d5\u05b9 \u05dc\u05b0\u05de\u05b4\u05d9\u05e0\u05b5\u05d4\u05d5\u05bc \u05d5\u05b7\u05d9\u05bc\u05b7\u05e8\u05b0\u05d0 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05db\u05bc\u05b4\u05d9 \u05d8\u05d5\u05b9\u05d1:", "\u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05e2\u05b6\u05e8\u05b6\u05d1 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05d1\u05b9\u05e7\u05b6\u05e8 \u05d9\u05d5\u05b9\u05dd \u05e9\u05c1\u05b0\u05dc\u05b4\u05d9\u05e9\u05c1\u05b4\u05d9:", "\u05d5\u05b7\u05d9\u05bc\u05b9\u05d0\u05de\u05b6\u05e8 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d9\u05b0\u05d4\u05b4\u05d9 \u05de\u05b0\u05d0\u05b9\u05e8\u05b9\u05ea \u05d1\u05bc\u05b4\u05e8\u05b0\u05e7\u05b4\u05d9\u05e2\u05b7 \u05d4\u05b7\u05e9\u05bc\u05c1\u05b8\u05de\u05b7\u05d9\u05b4\u05dd \u05dc\u05b0\u05d4\u05b7\u05d1\u05b0\u05d3\u05bc\u05b4\u05d9\u05dc \u05d1\u05bc\u05b5\u05d9\u05df \u05d4\u05b7\u05d9\u05bc\u05d5\u05b9\u05dd \u05d5\u05bc\u05d1\u05b5\u05d9\u05df \u05d4\u05b7\u05dc\u05bc\u05b8\u05d9\u05b0\u05dc\u05b8\u05d4 \u05d5\u05b0\u05d4\u05b8\u05d9\u05d5\u05bc \u05dc\u05b0\u05d0\u05b9\u05ea\u05b9\u05ea \u05d5\u05bc\u05dc\u05b0\u05de\u05d5\u05b9\u05e2\u05b2\u05d3\u05b4\u05d9\u05dd \u05d5\u05bc\u05dc\u05b0\u05d9\u05b8\u05de\u05b4\u05d9\u05dd \u05d5\u05b0\u05e9\u05c1\u05b8\u05e0\u05b4\u05d9\u05dd:", "\u05d5\u05b0\u05d4\u05b8\u05d9\u05d5\u05bc \u05dc\u05b4\u05de\u05b0\u05d0\u05d5\u05b9\u05e8\u05b9\u05ea \u05d1\u05bc\u05b4\u05e8\u05b0\u05e7\u05b4\u05d9\u05e2\u05b7 \u05d4\u05b7\u05e9\u05bc\u05c1\u05b8\u05de\u05b7\u05d9\u05b4\u05dd \u05dc\u05b0\u05d4\u05b8\u05d0\u05b4\u05d9\u05e8 \u05e2\u05b7\u05dc \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05db\u05b5\u05df:", "\u05d5\u05b7\u05d9\u05bc\u05b7\u05e2\u05b7\u05e9\u05c2 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d0\u05b6\u05ea \u05e9\u05c1\u05b0\u05e0\u05b5\u05d9 \u05d4\u05b7\u05de\u05bc\u05b0\u05d0\u05b9\u05e8\u05b9\u05ea \u05d4\u05b7\u05d2\u05bc\u05b0\u05d3\u05b9\u05dc\u05b4\u05d9\u05dd \u05d0\u05b6\u05ea \u05d4\u05b7\u05de\u05bc\u05b8\u05d0\u05d5\u05b9\u05e8 \u05d4\u05b7\u05d2\u05bc\u05b8\u05d3\u05b9\u05dc \u05dc\u05b0\u05de\u05b6\u05de\u05b0\u05e9\u05c1\u05b6\u05dc\u05b6\u05ea \u05d4\u05b7\u05d9\u05bc\u05d5\u05b9\u05dd \u05d5\u05b0\u05d0\u05b6\u05ea \u05d4\u05b7\u05de\u05bc\u05b8\u05d0\u05d5\u05b9\u05e8 \u05d4\u05b7\u05e7\u05bc\u05b8\u05d8\u05b9\u05df \u05dc\u05b0\u05de\u05b6\u05de\u05b0\u05e9\u05c1\u05b6\u05dc\u05b6\u05ea \u05d4\u05b7\u05dc\u05bc\u05b7\u05d9\u05b0\u05dc\u05b8\u05d4 \u05d5\u05b0\u05d0\u05b5\u05ea \u05d4\u05b7\u05db\u05bc\u05d5\u05b9\u05db\u05b8\u05d1\u05b4\u05d9\u05dd:", "\u05d5\u05b7\u05d9\u05bc\u05b4\u05ea\u05bc\u05b5\u05df \u05d0\u05b9\u05ea\u05b8\u05dd \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d1\u05bc\u05b4\u05e8\u05b0\u05e7\u05b4\u05d9\u05e2\u05b7 \u05d4\u05b7\u05e9\u05bc\u05c1\u05b8\u05de\u05b8\u05d9\u05b4\u05dd \u05dc\u05b0\u05d4\u05b8\u05d0\u05b4\u05d9\u05e8 \u05e2\u05b7\u05dc \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5:", "\u05d5\u05b0\u05dc\u05b4\u05de\u05b0\u05e9\u05c1\u05b9\u05dc \u05d1\u05bc\u05b7\u05d9\u05bc\u05d5\u05b9\u05dd \u05d5\u05bc\u05d1\u05b7\u05dc\u05bc\u05b7\u05d9\u05b0\u05dc\u05b8\u05d4 \u05d5\u05bc\u05dc\u05b2\u05d4\u05b7\u05d1\u05b0\u05d3\u05bc\u05b4\u05d9\u05dc \u05d1\u05bc\u05b5\u05d9\u05df \u05d4\u05b8\u05d0\u05d5\u05b9\u05e8 \u05d5\u05bc\u05d1\u05b5\u05d9\u05df \u05d4\u05b7\u05d7\u05e9\u05c1\u05b6\u05da\u05b0 \u05d5\u05b7\u05d9\u05bc\u05b7\u05e8\u05b0\u05d0 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05db\u05bc\u05b4\u05d9 \u05d8\u05d5\u05b9\u05d1:", "\u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05e2\u05b6\u05e8\u05b6\u05d1 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05d1\u05b9\u05e7\u05b6\u05e8 \u05d9\u05d5\u05b9\u05dd \u05e8\u05b0\u05d1\u05b4\u05d9\u05e2\u05b4\u05d9:", "\u05d5\u05b7\u05d9\u05bc\u05b9\u05d0\u05de\u05b6\u05e8 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d9\u05b4\u05e9\u05c1\u05b0\u05e8\u05b0\u05e6\u05d5\u05bc \u05d4\u05b7\u05de\u05bc\u05b7\u05d9\u05b4\u05dd \u05e9\u05c1\u05b6\u05e8\u05b6\u05e5 \u05e0\u05b6\u05e4\u05b6\u05e9\u05c1 \u05d7\u05b7\u05d9\u05bc\u05b8\u05d4 \u05d5\u05b0\u05e2\u05d5\u05b9\u05e3 \u05d9\u05b0\u05e2\u05d5\u05b9\u05e4\u05b5\u05e3 \u05e2\u05b7\u05dc \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5 \u05e2\u05b7\u05dc \u05e4\u05bc\u05b0\u05e0\u05b5\u05d9 \u05e8\u05b0\u05e7\u05b4\u05d9\u05e2\u05b7 \u05d4\u05b7\u05e9\u05bc\u05c1\u05b8\u05de\u05b8\u05d9\u05b4\u05dd:", "\u05d5\u05b7\u05d9\u05bc\u05b4\u05d1\u05b0\u05e8\u05b8\u05d0 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d0\u05b6\u05ea \u05d4\u05b7\u05ea\u05bc\u05b7\u05e0\u05bc\u05b4\u05d9\u05e0\u05b4\u05dd \u05d4\u05b7\u05d2\u05bc\u05b0\u05d3\u05b9\u05dc\u05b4\u05d9\u05dd \u05d5\u05b0\u05d0\u05b5\u05ea \u05db\u05bc\u05b8\u05dc \u05e0\u05b6\u05e4\u05b6\u05e9\u05c1 \u05d4\u05b7\u05d7\u05b7\u05d9\u05bc\u05b8\u05d4 | \u05d4\u05b8\u05e8\u05b9\u05de\u05b6\u05e9\u05c2\u05b6\u05ea \u05d0\u05b2\u05e9\u05c1\u05b6\u05e8 \u05e9\u05c1\u05b8\u05e8\u05b0\u05e6\u05d5\u05bc \u05d4\u05b7\u05de\u05bc\u05b7\u05d9\u05b4\u05dd \u05dc\u05b0\u05de\u05b4\u05d9\u05e0\u05b5\u05d4\u05b6\u05dd \u05d5\u05b0\u05d0\u05b5\u05ea \u05db\u05bc\u05b8\u05dc \u05e2\u05d5\u05b9\u05e3 \u05db\u05bc\u05b8\u05e0\u05b8\u05e3 \u05dc\u05b0\u05de\u05b4\u05d9\u05e0\u05b5\u05d4\u05d5\u05bc \u05d5\u05b7\u05d9\u05bc\u05b7\u05e8\u05b0\u05d0 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05db\u05bc\u05b4\u05d9 \u05d8\u05d5\u05b9\u05d1:", "\u05d5\u05b7\u05d9\u05b0\u05d1\u05b8\u05e8\u05b6\u05da\u05b0 \u05d0\u05b9\u05ea\u05b8\u05dd \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05dc\u05b5\u05d0\u05de\u05b9\u05e8 \u05e4\u05bc\u05b0\u05e8\u05d5\u05bc \u05d5\u05bc\u05e8\u05b0\u05d1\u05d5\u05bc \u05d5\u05bc\u05de\u05b4\u05dc\u05b0\u05d0\u05d5\u05bc \u05d0\u05b6\u05ea \u05d4\u05b7\u05de\u05bc\u05b7\u05d9\u05b4\u05dd \u05d1\u05bc\u05b7\u05d9\u05bc\u05b7\u05de\u05bc\u05b4\u05d9\u05dd \u05d5\u05b0\u05d4\u05b8\u05e2\u05d5\u05b9\u05e3 \u05d9\u05b4\u05e8\u05b6\u05d1 \u05d1\u05bc\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5:", "\u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05e2\u05b6\u05e8\u05b6\u05d1 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05d1\u05b9\u05e7\u05b6\u05e8 \u05d9\u05d5\u05b9\u05dd \u05d7\u05b2\u05de\u05b4\u05d9\u05e9\u05c1\u05b4\u05d9:", "\u05d5\u05b7\u05d9\u05bc\u05b9\u05d0\u05de\u05b6\u05e8 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05ea\u05bc\u05d5\u05b9\u05e6\u05b5\u05d0 \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5 \u05e0\u05b6\u05e4\u05b6\u05e9\u05c1 \u05d7\u05b7\u05d9\u05bc\u05b8\u05d4 \u05dc\u05b0\u05de\u05b4\u05d9\u05e0\u05b8\u05d4\u05bc \u05d1\u05bc\u05b0\u05d4\u05b5\u05de\u05b8\u05d4 \u05d5\u05b8\u05e8\u05b6\u05de\u05b6\u05e9\u05c2 \u05d5\u05b0\u05d7\u05b7\u05d9\u05b0\u05ea\u05d5\u05b9 \u05d0\u05b6\u05e8\u05b6\u05e5 \u05dc\u05b0\u05de\u05b4\u05d9\u05e0\u05b8\u05d4\u05bc \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05db\u05b5\u05df:", "\u05d5\u05b7\u05d9\u05bc\u05b7\u05e2\u05b7\u05e9\u05c2 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d0\u05b6\u05ea \u05d7\u05b7\u05d9\u05bc\u05b7\u05ea \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5 \u05dc\u05b0\u05de\u05b4\u05d9\u05e0\u05b8\u05d4\u05bc \u05d5\u05b0\u05d0\u05b6\u05ea \u05d4\u05b7\u05d1\u05bc\u05b0\u05d4\u05b5\u05de\u05b8\u05d4 \u05dc\u05b0\u05de\u05b4\u05d9\u05e0\u05b8\u05d4\u05bc \u05d5\u05b0\u05d0\u05b5\u05ea \u05db\u05bc\u05b8\u05dc \u05e8\u05b6\u05de\u05b6\u05e9\u05c2 \u05d4\u05b8\u05d0\u05b2\u05d3\u05b8\u05de\u05b8\u05d4 \u05dc\u05b0\u05de\u05b4\u05d9\u05e0\u05b5\u05d4\u05d5\u05bc \u05d5\u05b7\u05d9\u05bc\u05b7\u05e8\u05b0\u05d0 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05db\u05bc\u05b4\u05d9 \u05d8\u05d5\u05b9\u05d1:", "\u05d5\u05b7\u05d9\u05bc\u05b9\u05d0\u05de\u05b6\u05e8 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05e0\u05b7\u05e2\u05b2\u05e9\u05c2\u05b6\u05d4 \u05d0\u05b8\u05d3\u05b8\u05dd \u05d1\u05bc\u05b0\u05e6\u05b7\u05dc\u05b0\u05de\u05b5\u05e0\u05d5\u05bc \u05db\u05bc\u05b4\u05d3\u05b0\u05de\u05d5\u05bc\u05ea\u05b5\u05e0\u05d5\u05bc \u05d5\u05b0\u05d9\u05b4\u05e8\u05b0\u05d3\u05bc\u05d5\u05bc \u05d1\u05b4\u05d3\u05b0\u05d2\u05b7\u05ea \u05d4\u05b7\u05d9\u05bc\u05b8\u05dd \u05d5\u05bc\u05d1\u05b0\u05e2\u05d5\u05b9\u05e3 \u05d4\u05b7\u05e9\u05bc\u05c1\u05b8\u05de\u05b7\u05d9\u05b4\u05dd \u05d5\u05bc\u05d1\u05b7\u05d1\u05bc\u05b0\u05d4\u05b5\u05de\u05b8\u05d4 \u05d5\u05bc\u05d1\u05b0\u05db\u05b8\u05dc \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5 \u05d5\u05bc\u05d1\u05b0\u05db\u05b8\u05dc \u05d4\u05b8\u05e8\u05b6\u05de\u05b6\u05e9\u05c2 \u05d4\u05b8\u05e8\u05b9\u05de\u05b5\u05e9\u05c2 \u05e2\u05b7\u05dc \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5:", "\u05d5\u05b7\u05d9\u05bc\u05b4\u05d1\u05b0\u05e8\u05b8\u05d0 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd | \u05d0\u05b6\u05ea \u05d4\u05b8\u05d0\u05b8\u05d3\u05b8\u05dd \u05d1\u05bc\u05b0\u05e6\u05b7\u05dc\u05b0\u05de\u05d5\u05b9 \u05d1\u05bc\u05b0\u05e6\u05b6\u05dc\u05b6\u05dd \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d1\u05bc\u05b8\u05e8\u05b8\u05d0 \u05d0\u05b9\u05ea\u05d5\u05b9 \u05d6\u05b8\u05db\u05b8\u05e8 \u05d5\u05bc\u05e0\u05b0\u05e7\u05b5\u05d1\u05b8\u05d4 \u05d1\u05bc\u05b8\u05e8\u05b8\u05d0 \u05d0\u05b9\u05ea\u05b8\u05dd:", "\u05d5\u05b7\u05d9\u05b0\u05d1\u05b8\u05e8\u05b6\u05da\u05b0 \u05d0\u05b9\u05ea\u05b8\u05dd \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d5\u05b7\u05d9\u05bc\u05b9\u05d0\u05de\u05b6\u05e8 \u05dc\u05b8\u05d4\u05b6\u05dd \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05e4\u05bc\u05b0\u05e8\u05d5\u05bc \u05d5\u05bc\u05e8\u05b0\u05d1\u05d5\u05bc \u05d5\u05bc\u05de\u05b4\u05dc\u05b0\u05d0\u05d5\u05bc \u05d0\u05b6\u05ea \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5 \u05d5\u05b0\u05db\u05b4\u05d1\u05b0\u05e9\u05c1\u05bb\u05d4\u05b8 \u05d5\u05bc\u05e8\u05b0\u05d3\u05d5\u05bc \u05d1\u05bc\u05b4\u05d3\u05b0\u05d2\u05b7\u05ea \u05d4\u05b7\u05d9\u05bc\u05b8\u05dd \u05d5\u05bc\u05d1\u05b0\u05e2\u05d5\u05b9\u05e3 \u05d4\u05b7\u05e9\u05bc\u05c1\u05b8\u05de\u05b7\u05d9\u05b4\u05dd \u05d5\u05bc\u05d1\u05b0\u05db\u05b8\u05dc \u05d7\u05b7\u05d9\u05bc\u05b8\u05d4 \u05d4\u05b8\u05e8\u05b9\u05de\u05b6\u05e9\u05c2\u05b6\u05ea \u05e2\u05b7\u05dc \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5:", "\u05d5\u05b7\u05d9\u05bc\u05b9\u05d0\u05de\u05b6\u05e8 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d4\u05b4\u05e0\u05bc\u05b5\u05d4 \u05e0\u05b8\u05ea\u05b7\u05ea\u05bc\u05b4\u05d9 \u05dc\u05b8\u05db\u05b6\u05dd \u05d0\u05b6\u05ea \u05db\u05bc\u05b8\u05dc \u05e2\u05b5\u05e9\u05c2\u05b6\u05d1 | \u05d6\u05b9\u05e8\u05b5\u05e2\u05b7 \u05d6\u05b6\u05e8\u05b7\u05e2 \u05d0\u05b2\u05e9\u05c1\u05b6\u05e8 \u05e2\u05b7\u05dc \u05e4\u05bc\u05b0\u05e0\u05b5\u05d9 \u05db\u05b8\u05dc \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5 \u05d5\u05b0\u05d0\u05b6\u05ea \u05db\u05bc\u05b8\u05dc \u05d4\u05b8\u05e2\u05b5\u05e5 \u05d0\u05b2\u05e9\u05c1\u05b6\u05e8 \u05d1\u05bc\u05d5\u05b9 \u05e4\u05b0\u05e8\u05b4\u05d9 \u05e2\u05b5\u05e5 \u05d6\u05b9\u05e8\u05b5\u05e2\u05b7 \u05d6\u05b8\u05e8\u05b7\u05e2 \u05dc\u05b8\u05db\u05b6\u05dd \u05d9\u05b4\u05d4\u05b0\u05d9\u05b6\u05d4 \u05dc\u05b0\u05d0\u05b8\u05db\u05b0\u05dc\u05b8\u05d4:", "\u05d5\u05bc\u05dc\u05b0\u05db\u05b8\u05dc \u05d7\u05b7\u05d9\u05bc\u05b7\u05ea \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5 \u05d5\u05bc\u05dc\u05b0\u05db\u05b8\u05dc \u05e2\u05d5\u05b9\u05e3 \u05d4\u05b7\u05e9\u05bc\u05c1\u05b8\u05de\u05b7\u05d9\u05b4\u05dd \u05d5\u05bc\u05dc\u05b0\u05db\u05b9\u05dc | \u05e8\u05d5\u05b9\u05de\u05b5\u05e9\u05c2 \u05e2\u05b7\u05dc \u05d4\u05b8\u05d0\u05b8\u05e8\u05b6\u05e5 \u05d0\u05b2\u05e9\u05c1\u05b6\u05e8 \u05d1\u05bc\u05d5\u05b9 \u05e0\u05b6\u05e4\u05b6\u05e9\u05c1 \u05d7\u05b7\u05d9\u05bc\u05b8\u05d4 \u05d0\u05b6\u05ea \u05db\u05bc\u05b8\u05dc \u05d9\u05b6\u05e8\u05b6\u05e7 \u05e2\u05b5\u05e9\u05c2\u05b6\u05d1 \u05dc\u05b0\u05d0\u05b8\u05db\u05b0\u05dc\u05b8\u05d4 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05db\u05b5\u05df:", "\u05d5\u05b7\u05d9\u05bc\u05b7\u05e8\u05b0\u05d0 \u05d0\u05b1\u05dc\u05b9\u05d4\u05b4\u05d9\u05dd \u05d0\u05b6\u05ea \u05db\u05bc\u05b8\u05dc \u05d0\u05b2\u05e9\u05c1\u05b6\u05e8 \u05e2\u05b8\u05e9\u05c2\u05b8\u05d4 \u05d5\u05b0\u05d4\u05b4\u05e0\u05bc\u05b5\u05d4 \u05d8\u05d5\u05b9\u05d1 \u05de\u05b0\u05d0\u05b9\u05d3 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05e2\u05b6\u05e8\u05b6\u05d1 \u05d5\u05b7\u05d9\u05b0\u05d4\u05b4\u05d9 \u05d1\u05b9\u05e7\u05b6\u05e8 \u05d9\u05d5\u05b9\u05dd \u05d4\u05b7\u05e9\u05bc\u05c1\u05b4\u05e9\u05bc\u05c1\u05b4\u05d9:"]
@@ -0,0 +1 @@
1
+ ["A Biblical View Of Human Life", "A Firm Family Foundation", "The Lamb Is Promised", "God's Grace In The Fall", "The Way Of Cain", "Are The Days Of Noah Here Again?", "Lessons From An Ancient Graveyard", "A Good Exit Strategy", "The Achievements Of A Successful Father", "The Gospel In The Ship", "The Invitation To Committment", "The Call To A Life Of Faith", "Abram's Commitment To A Life Of Faith", "The Truth About The Path To Egypt", "The Truth About The Road Back To Canaan", "Abram's Trouble With Lot", "God's Promise To Abram Renewed", "Abram: A Man Of Integrity", "Abram's Word From God", "Moving Toward Maturity", "The God Who Sees", "That Trouble With Hagar", "The God Of The Everlasting Covenant", "The Three Sides Of A Man Named Abraham", "The Privileges Of The Godly Man", "Remembering Lot's Wife", "Sin And The Saint Of God", "What Aileth Thee?", "The Case Of The Broken Hearted Mother", "How To Enjoy The Rest Areas Of Life", "Qualities Of Genuine Worship", "The Lamb On Mount Moriah", "On The Mountain Of Absolute Surrender", "The Trial Of Faith", "The Setting Of Biblical Worship", "Standing Up From Before The Dead", "Wilt Thou Go With This Man?", "Abraham: Gathered To His People", "The Realities Of A Pilgrim's Life", "Gold From An Unlikely Mine", "Just A Little Talk With Jesus", "Getting Back To Bethel", "A Rose Among The Thorns", "God Has Something Special For You", "The Heartbreak Of A Shattered Dream", "The Lord Was With Joseph", "I Must Be Dreaming", "The Man Who Kept His Character", "Winning Your Battle With Temptation", "The Power Of A Faithful Life", "How To Thrive In The Prisons Of Life", "The Prison Of His Promotions", "Forgotten But Not Forsaken", "From The Prison To The Palace", "Joseph's Gentile Bride", "Joseph: The Savior Of The World", "Resurrecting A Dead Conscience", "Joseph: A Portrait Of The Glorified Christ", "Judah Grows Up", "Swimming In A Sea Of Emotion", "Gifts Fit For A King", "The Case Of The Missing Silver Cup", "I Am Joseph", "Lessons From The School Of Grace", "It Is Enough", "Joseph's Family Reunion", "The Death Of A Pilgrim", "Crisis Management", "Reflections Of A Life", "Confronting The Problem Of Sin", "The Judgment Seat Of Jacob", "God Meant it For Good", "A Coffin In Egypt"]
@@ -0,0 +1 @@
1
+ ["Nan konmansman, Bondye kreye sy\u00e8l la ak lat\u00e8 a.", "Men lat\u00e8 pa t' gen f\u00f2m, li pa t' gen anyen sou li. F\u00e8nwa te kouvri toupatou. Lespri Bondye t'ap plane sou dlo ki te kouvri tout lat\u00e8.", "Bondye di. Se pou limy\u00e8 f\u00e8t. Epi limy\u00e8 te f\u00e8t.", "Bondye w\u00e8 limy\u00e8 a te bon. Bondye mete limy\u00e8 a yon b\u00f2, li mete f\u00e8nwa a yon l\u00f2t b\u00f2.", "Bondye rele limy\u00e8 a lajounen, li rele f\u00e8nwa a lannwit. Yon lannwit pase, yon maten rive. Se te premye jou a.", "Bondye di ank\u00f2. Se pou gen yon vout nan mitan dlo a pou separe dlo a an de.", "Bondye f\u00e8 vout la separe dlo a an de, yon pati anwo vout la, yon l\u00f2t pati anba l'. Se konsa sa te pase.", "Bondye rele vout la sy\u00e8l. Yon lannwit pase, yon maten rive. Se te dezy\u00e8m jou a.", "Bondye di ank\u00f2. Se pou dlo ki anba sy\u00e8l la sanble yon s\u00e8l kote pou kote ki s\u00e8k la ka par\u00e8t. Se konsa sa te pase.", "Bondye rele kote ki s\u00e8k la t\u00e8. Li rele pil dlo a lanm\u00e8. Bondye gade sa l' te f\u00e8 a, li w\u00e8 l' bon.", "Bondye di. Se pou t\u00e8 a pouse tout kalite plant: z\u00e8b, plant ki bay grenn, pyebwa ki bay fwi ak tout grenn yo. Se konsa sa te pase.", "T\u00e8 a pouse tout kalite plant: z\u00e8b, plant ki bay grenn, pyebwa ki bay fwi ak tout grenn yo. Bondye gade sa l' te f\u00e8 a, li w\u00e8 l' bon.", "Yon lannwit pase, yon maten rive. Se te twazy\u00e8m jou a.", "Bondye di ank\u00f2. Se pou limy\u00e8 par\u00e8t nan sy\u00e8l la pou separe lajounen ak lannwit. Y'a s\u00e8vi pou make jou yo, lanne yo ak sezon yo.", "Y'a s\u00e8vi limy\u00e8 nan sy\u00e8l la pou klere tout lat\u00e8 a. Se konsa sa te pase.", "Bondye f\u00e8 de gwo limy\u00e8, pi gwo a pou k\u00f2mande sou lajounen, pi piti a pou k\u00f2mande sou lannwit. Li f\u00e8 zetwal yo tou.", "Li mete yo nan sy\u00e8l la pou klere lat\u00e8 a,", "pou k\u00f2mande sou lajounen ak sou lannwit, pou separe limy\u00e8 ak f\u00e8nwa. Bondye gade sa l' te f\u00e8 a, li w\u00e8 l' bon.", "Yon lannwit pase, yon maten rive. Se te katriy\u00e8m jou a.", "Bondye di ank\u00f2. Se pou dlo yo kale anpil anpil b\u00e8t vivan. Se pou zwazo vole nan sy\u00e8l la anwo t\u00e8 a. Se konsa sa te pase.", "Bondye kreye gwo b\u00e8t lanm\u00e8 yo, tout kalite b\u00e8t vivan k'ap naje nan dlo ansanm ak tout kalite zwazo. Bondye gade sa l' te f\u00e8 a, li w\u00e8 l' bon.", "Bondye beni yo, li di. F\u00e8 pitit, f\u00e8 anpil anpil pitit, plen dlo lanm\u00e8 a. Se pou zwazo yo f\u00e8 anpil anpil pitit tout sou t\u00e8 a.", "Yon lannwit pase, yon maten rive. Se te senky\u00e8m jou a.", "Bondye di ank\u00f2. Se pou t\u00e8 a kale tout kalite b\u00e8t vivan, b\u00e8t yo gade, b\u00e8t ki trennen sou vant, b\u00e8t nan bwa. Se konsa sa te pase.", "Bondye f\u00e8 tout kalite b\u00e8t, b\u00e8t nan bwa, b\u00e8t yo gade, b\u00e8t ki trennen sou vant. Li gade sa l' te f\u00e8 a, li w\u00e8 l' bon.", "Bondye di ank\u00f2. Ann f\u00e8 moun. N'ap f\u00e8 l' p\u00f2tre ak nou, pou li sanble ak nou. La gen pouvwa sou pwason ki nan lanm\u00e8 yo, sou zwazo ki nan sy\u00e8l la, sou tout b\u00e8t yo gade, sou tout lat\u00e8, sou tout b\u00e8t nan bwa, sou tout b\u00e8t ki trennen sou vant sou t\u00e8 a.", "Bondye kreye moun. Li f\u00e8 l' p\u00f2tre ak li. Li kreye yo gason ak fi.", "Li ba yo benediksyon, li di. F\u00e8 pitit, f\u00e8 anpil anpil pitit mete sou t\u00e8 a. Donte t\u00e8 a. Mwen ban nou pouvwa sou pwason ki nan lanm\u00e8, sou zwazo ki nan sy\u00e8l la, ak sou tout b\u00e8t vivan k'ap mache sou t\u00e8 a.", "Bondye di. Gade. Mwen ban nou tout kalite plant ki bay grenn ak tout kalite pyebwa ki bay fwi ak grenn pou nou manje.", "Men, tout b\u00e8t ki sou t\u00e8 a, tout zwazo ki nan sy\u00e8l la, tout b\u00e8t ki trennen sou vant, wi tout b\u00e8t vivan, m'ap ba yo z\u00e8b v\u00e8t pou yo manje. Se konsa sa te pase.", "Bondye gade sa l' te f\u00e8 a, li w\u00e8 l' bon n\u00e8t. Yon lannwit pase, yon maten rive. Se te sizy\u00e8m jou a."]
@@ -0,0 +1 @@
1
+ ["A Biblical View Of Human Life", "A Firm Family Foundation", "The Lamb Is Promised", "God's Grace In The Fall", "The Way Of Cain", "Are The Days Of Noah Here Again?", "Lessons From An Ancient Graveyard", "A Good Exit Strategy", "The Achievements Of A Successful Father", "The Gospel In The Ship", "The Invitation To Committment", "The Call To A Life Of Faith", "Abram's Commitment To A Life Of Faith", "The Truth About The Path To Egypt", "The Truth About The Road Back To Canaan", "Abram's Trouble With Lot", "God's Promise To Abram Renewed", "Abram: A Man Of Integrity", "Abram's Word From God", "Moving Toward Maturity", "The God Who Sees", "That Trouble With Hagar", "The God Of The Everlasting Covenant", "The Three Sides Of A Man Named Abraham", "The Privileges Of The Godly Man", "Remembering Lot's Wife", "Sin And The Saint Of God", "What Aileth Thee?", "The Case Of The Broken Hearted Mother", "How To Enjoy The Rest Areas Of Life", "Qualities Of Genuine Worship", "The Lamb On Mount Moriah", "On The Mountain Of Absolute Surrender", "The Trial Of Faith", "The Setting Of Biblical Worship", "Standing Up From Before The Dead", "Wilt Thou Go With This Man?", "Abraham: Gathered To His People", "The Realities Of A Pilgrim's Life", "Gold From An Unlikely Mine", "Just A Little Talk With Jesus", "Getting Back To Bethel", "A Rose Among The Thorns", "God Has Something Special For You", "The Heartbreak Of A Shattered Dream", "The Lord Was With Joseph", "I Must Be Dreaming", "The Man Who Kept His Character", "Winning Your Battle With Temptation", "The Power Of A Faithful Life", "How To Thrive In The Prisons Of Life", "The Prison Of His Promotions", "Forgotten But Not Forsaken", "From The Prison To The Palace", "Joseph's Gentile Bride", "Joseph: The Savior Of The World", "Resurrecting A Dead Conscience", "Joseph: A Portrait Of The Glorified Christ", "Judah Grows Up", "Swimming In A Sea Of Emotion", "Gifts Fit For A King", "The Case Of The Missing Silver Cup", "I Am Joseph", "Lessons From The School Of Grace", "It Is Enough", "Joseph's Family Reunion", "The Death Of A Pilgrim", "Crisis Management", "Reflections Of A Life", "Confronting The Problem Of Sin", "The Judgment Seat Of Jacob", "God Meant it For Good", "A Coffin In Egypt"]
@@ -0,0 +1,40 @@
1
+ require 'spec_helper'
2
+
3
+ describe Bereshit do
4
+
5
+ # Crappy specs start here
6
+ describe ".sermon" do
7
+ sermon = Bereshit.sermon('hebrew')
8
+
9
+ it "should return a string" do
10
+ expect(sermon).to be_a String
11
+ end
12
+ it 'expect sermon title.size to be greater than 2' do
13
+ expect(sermon.size).to be > 2
14
+ end
15
+ end
16
+
17
+ describe ".paragraphs" do
18
+ lines = Bereshit.paragraphs(3, false, false, 'hebrew')
19
+
20
+ it "should return 3 paragraphs" do
21
+ #it will not return an array of 3
22
+ #So I have to split it to see if there is 3 paragraphs
23
+ expect(lines.split('<p>').size).to be >= 4
24
+ end
25
+ it 'includes a paragraph tag' do
26
+ expect(lines.include?('<p>')).to be true
27
+ end
28
+ it 'hebrew language includes foreign character code' do
29
+ #hebrew not contains the letter 'a'
30
+ expect(!lines.include?('a')).to be true
31
+ end
32
+ it '.p should return 3 paragraphs' do
33
+ #alias of self.paragraphs()
34
+ lines = Bereshit.p(3, false, false, 'hebrew')
35
+ expect(lines.split('<p>').size).to be >= 4
36
+ end
37
+ end
38
+
39
+
40
+ end
@@ -0,0 +1,12 @@
1
+ require 'bereshit'
2
+
3
+ RSpec.configure do |config|
4
+ # Use color in STDOUT
5
+ config.color = true
6
+
7
+ # Use color not only in STDOUT but also in pagers and files
8
+ config.tty = true
9
+
10
+ # Use the specified formatter
11
+ config.formatter = :documentation # :progress, :html, :textmate
12
+ end
metadata ADDED
@@ -0,0 +1,150 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bereshit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.5
5
+ platform: ruby
6
+ authors:
7
+ - Guinsly Mondesir
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-01-06 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.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
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.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.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: rspec-nc
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
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
+ - !ruby/object:Gem::Dependency
84
+ name: guard-rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: Bereshit mean 'in the beginning...' in hebrew. This gems is a lorem ipsum
98
+ based on Genesis 1:1 -- the first Chapter of the book of Genesis (Torah/Bible)
99
+ email:
100
+ - agmond@gmx.com.br
101
+ executables: []
102
+ extensions: []
103
+ extra_rdoc_files: []
104
+ files:
105
+ - ".gitignore"
106
+ - ".travis.yml"
107
+ - Gemfile
108
+ - LICENSE.txt
109
+ - README.md
110
+ - Rakefile
111
+ - bereshit.gemspec
112
+ - lib/bereshit.rb
113
+ - lib/bereshit/version.rb
114
+ - lib/locale/english/bereshit.json
115
+ - lib/locale/english/sermon.json
116
+ - lib/locale/hebrew/bereshit.json
117
+ - lib/locale/hebrew/sermon.json
118
+ - lib/locale/kreyol/bereshit.json
119
+ - lib/locale/kreyol/sermon.json
120
+ - spec/Bereshit_spec.rb
121
+ - spec/spec_helper.rb
122
+ homepage: ''
123
+ licenses:
124
+ - MIT
125
+ metadata: {}
126
+ post_install_message:
127
+ rdoc_options: []
128
+ require_paths:
129
+ - lib
130
+ required_ruby_version: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: '0'
135
+ required_rubygems_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ requirements: []
141
+ rubyforge_project:
142
+ rubygems_version: 2.2.2
143
+ signing_key:
144
+ specification_version: 4
145
+ summary: Bereshit mean 'in the beginning...' in hebrew. This gems is a lorem ipsum
146
+ based on Genesis 1:1 -- the first Chapter of the book of Genesis (Torah/Bible)
147
+ test_files:
148
+ - spec/Bereshit_spec.rb
149
+ - spec/spec_helper.rb
150
+ has_rdoc: