hola_dkissell 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/bin/hola +4 -0
  2. data/lib/hola_dkissell.rb +5 -2
  3. metadata +4 -2
data/bin/hola ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'hola_dkissell'
4
+ puts Hola.hi(ARGV[0])
data/lib/hola_dkissell.rb CHANGED
@@ -1,5 +1,8 @@
1
1
  class Hola
2
- def self.hi
3
- puts "Hello world!"
2
+ def self.hi(language = "english")
3
+ translator = Translator.new(language)
4
+ puts translator.hi
4
5
  end
5
6
  end
7
+
8
+ require 'hola/translator'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hola_dkissell
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,11 +13,13 @@ date: 2012-05-26 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description:
15
15
  email: dkissell@gmail.com
16
- executables: []
16
+ executables:
17
+ - hola
17
18
  extensions: []
18
19
  extra_rdoc_files: []
19
20
  files:
20
21
  - lib/hola_dkissell.rb
22
+ - bin/hola
21
23
  homepage: http://rubygems.org/gems/hola
22
24
  licenses: []
23
25
  post_install_message: