yaa 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/bin/yaa +4 -0
  3. data/lib/yaa.rb +16 -0
  4. metadata +46 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7f3f4e3aba04fcfab12a782e6d4c7aa9ed8a7e94
4
+ data.tar.gz: 5e233b91b682970f6f38c3080ed5f729328f1267
5
+ SHA512:
6
+ metadata.gz: c0100fa0eb6639c4c0000b49b87117bad263f4d4b1325cf0cc8720440da55303ff74f20db459caf4ea0243f6623326a3cc5bcfe5bfec4b2c355d95786df88a02
7
+ data.tar.gz: 0c394d2aaed614366cc8f7f3b65aaa1e37b08ae2635111dda46fd60a1f0010164759c55ada0ccec8740d1aadb3759436d502b5db59d761e3d57d933fdd473050
data/bin/yaa ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'yaa'
4
+ puts Yaa.hi(ARGV[0])
@@ -0,0 +1,16 @@
1
+ # The main Yaa driver
2
+ class Yaa
3
+ # Say hi to the people!
4
+ #
5
+ # Example:
6
+ # >> Yaa.hi 'Jason'
7
+ # => Hello world Jason!
8
+ #
9
+ # Arguments:
10
+ # person: (string)
11
+ #
12
+
13
+ def self.hi (person = "Jason")
14
+ "Hello world #{person}!"
15
+ end
16
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: yaa
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Jason Zhang
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-04-12 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Another QRA From Scratch!
14
+ email: awayings@gmail.com
15
+ executables:
16
+ - yaa
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - bin/yaa
21
+ - lib/yaa.rb
22
+ homepage: http://rubygems.org/gems/yaa
23
+ licenses:
24
+ - MIT
25
+ metadata: {}
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubyforge_project:
42
+ rubygems_version: 2.2.2
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: Yet Another QRA!
46
+ test_files: []