hola-iuhoay 0.0.3 → 0.0.4
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/.gitignore +1 -0
- data/hola-iuhoay.gemspec +12 -0
- data/lib/hola.rb +8 -5
- data/lib/hola/translator.rb +15 -0
- data/lib/hola/version.rb +3 -0
- metadata +6 -2
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
*.gem
|
data/hola-iuhoay.gemspec
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require File.expand_path("../lib/hola/version", __FILE__)
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = 'hola-iuhoay'
|
5
|
+
s.version = Hola::VERSION
|
6
|
+
s.summary = "Hola!"
|
7
|
+
s.description = "A simple hello world gem"
|
8
|
+
s.authors = ["iuhoay"]
|
9
|
+
s.email = "charsky.wu@gmail.com"
|
10
|
+
s.files = `git ls-files`.split("\n")
|
11
|
+
s.homepage = "https://github.com/iuhoay/hola-iuhoay"
|
12
|
+
end
|
data/lib/hola.rb
CHANGED
data/lib/hola/version.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hola-iuhoay
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-06-
|
12
|
+
date: 2012-06-06 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: A simple hello world gem
|
15
15
|
email: charsky.wu@gmail.com
|
@@ -17,7 +17,11 @@ executables: []
|
|
17
17
|
extensions: []
|
18
18
|
extra_rdoc_files: []
|
19
19
|
files:
|
20
|
+
- .gitignore
|
21
|
+
- hola-iuhoay.gemspec
|
20
22
|
- lib/hola.rb
|
23
|
+
- lib/hola/translator.rb
|
24
|
+
- lib/hola/version.rb
|
21
25
|
homepage: https://github.com/iuhoay/hola-iuhoay
|
22
26
|
licenses: []
|
23
27
|
post_install_message:
|