pastrychef 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.
- checksums.yaml +7 -0
- data/Rakefile +8 -0
- data/bin/pastrychef +4 -0
- data/lib/pastrychef/oven.rb +16 -0
- data/lib/pastrychef.rb +8 -0
- data/test/test_pastrychef.rb +16 -0
- metadata +48 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 866ab22ed8d9c3bab59590f889b6ce55101cd0ae
|
4
|
+
data.tar.gz: e39113c5b0b0ac92bd0009cb5107dc60892087b2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6f46504fa9c52405bbb4125f87a96bf78981719fed465e70ed4ce5ed362c5b3fc51da4451da82933c0d71aedb07a277ea154e6c1e7cb89998dbd28cbdfbfc583
|
7
|
+
data.tar.gz: 2335a243197d307e2a28a6228fbea10bf7d7257cb87daa400ca6196994a3d19a6cd102d765d3714765da495346d8c89bb94417cdcefc27690097cfa5f2949b64
|
data/Rakefile
ADDED
data/bin/pastrychef
ADDED
data/lib/pastrychef.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'pastrychef'
|
3
|
+
|
4
|
+
class PastrychefTest < Test::Unit::TestCase
|
5
|
+
def test_english_hello
|
6
|
+
assert_equal "hello world", Pastrychef.hi("english")
|
7
|
+
end
|
8
|
+
|
9
|
+
def test_any_hello
|
10
|
+
assert_equal "hello world", Pastrychef.hi("ruby")
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_spanish_hello
|
14
|
+
assert_equal "hola mundo", Pastrychef.hi("spanish")
|
15
|
+
end
|
16
|
+
end
|
metadata
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pastrychef
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Murtza Manzur
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-04-25 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Data scraping and visualization gem
|
14
|
+
email: hi@murtza.org
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- Rakefile
|
20
|
+
- lib/pastrychef.rb
|
21
|
+
- lib/pastrychef/oven.rb
|
22
|
+
- bin/pastrychef
|
23
|
+
- test/test_pastrychef.rb
|
24
|
+
homepage: http://rubygems.org/gems/pastrychef
|
25
|
+
licenses: []
|
26
|
+
metadata: {}
|
27
|
+
post_install_message:
|
28
|
+
rdoc_options: []
|
29
|
+
require_paths:
|
30
|
+
- lib
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - '>='
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '0'
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
requirements: []
|
42
|
+
rubyforge_project:
|
43
|
+
rubygems_version: 2.0.3
|
44
|
+
signing_key:
|
45
|
+
specification_version: 3
|
46
|
+
summary: Data!
|
47
|
+
test_files:
|
48
|
+
- test/test_pastrychef.rb
|