ecc_cebu 0.0.1 → 0.0.2

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.
Files changed (2) hide show
  1. data/lib/ecc_cebu/coder.rb +14 -0
  2. metadata +2 -1
@@ -0,0 +1,14 @@
1
+ class EccCebu::Coder
2
+ def initialize(language)
3
+ @language = language
4
+ end
5
+
6
+ def wazzup
7
+ case @language
8
+ when :java
9
+ "hola Java guys!"
10
+ else
11
+ "hello Ruby devs!"
12
+ end
13
+ end
14
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ecc_cebu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -19,6 +19,7 @@ extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
21
  - lib/ecc_cebu.rb
22
+ - lib/ecc_cebu/coder.rb
22
23
  has_rdoc: true
23
24
  homepage: http://rubygems.org/gems/ecc_cebu
24
25
  licenses: []