firstkiss 0.0.6 → 0.0.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 967a22fb293761e1f559c21308b731c744a897b8
4
- data.tar.gz: 363c99a50a3204f0e88e37c106104ae1e0854848
3
+ metadata.gz: 96b6e45502fbe5c935bf43cdb7d303dc92bdb7bb
4
+ data.tar.gz: 812de6d51f7a097eac25ef6e91f48ca3d5ba55ab
5
5
  SHA512:
6
- metadata.gz: 8845df52912e7b1938ae8606125ebef1b45c2924f7a9ecef25265e443824fbae34684c844b4ff29a36cd032244731a78970bccac1b95463f59e45db93b660f48
7
- data.tar.gz: b1478bf69a6ec62b91c62ddc74f140b6416050c5c1d034011faadfc94a383b91c6db70268c93240958b998cf875bc4c12ffb7c5171385a6b7bde0fc2e6cb850d
6
+ metadata.gz: 8e8dfe445a93a0f9c33f04d0d663bbb11e8e807f89da4b03b01f8b983a50e913af044e5fbc80c4adc1a9b1f8654ff9a4171ef06202dbbee0a137e341c391f6a0
7
+ data.tar.gz: 4538f02240927fe639f94a590623a9854533dbf5ad79aba05c333c40a49652f14cc9cd062c52b3bacf20217f683dc9d923d94e586b54599ff2f8d2c267530d78
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: firstkiss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Allan Sachs
@@ -12,17 +12,10 @@ date: 2015-12-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A simple hello world gem
14
14
  email: allansachs@icloud.com
15
- executables:
16
- - firstkiss
15
+ executables: []
17
16
  extensions: []
18
17
  extra_rdoc_files: []
19
18
  files:
20
- - bin/firstkiss
21
- - lib/firstkiss.rb
22
- - lib/firstkiss/generators/firstkiss/USAGE
23
- - lib/firstkiss/generators/firstkiss/firstkiss_generator.rb
24
- - lib/firstkiss/generators/melonjs/firstkiss_generator.rb
25
- - lib/firstkiss/translator.rb
26
19
  - lib/generators/layout/USAGE
27
20
  - lib/generators/layout/layout_generator.rb
28
21
  - lib/generators/layout/templates/layout.html.erb
data/bin/firstkiss DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'firstkiss'
4
- puts Firstkiss.hi(ARGV[0])
@@ -1,8 +0,0 @@
1
- Description:
2
- Explain the generator
3
-
4
- Example:
5
- rails generate firstkiss Thing
6
-
7
- This will create:
8
- what/will/it/create
@@ -1,8 +0,0 @@
1
- require 'rails/generators/base'
2
-
3
- class FirstkissGenerator < Rails::Generators::NamedBase
4
- source_root File.expand_path('../templates', __FILE__)
5
- def create_initializer_file
6
- create_file "hi.rb", "# Testing testing 1, 2, 3..."
7
- end
8
- end
@@ -1,6 +0,0 @@
1
- class FirstkissGenerator < Rails::Generators::NamedBase
2
- source_root File.expand_path('../templates', __FILE__)
3
- def create_initializer_file
4
- create_file "hi.rb", "# Testing testing 1, 2, 3..."
5
- end
6
- end
@@ -1,14 +0,0 @@
1
- class Firstkiss::Translator
2
- def initialize(language)
3
- @language = language
4
- end
5
-
6
- def hi
7
- case @language
8
- when "spanish"
9
- "hola mundo"
10
- else
11
- "hello world"
12
- end
13
- end
14
- end
data/lib/firstkiss.rb DELETED
@@ -1,8 +0,0 @@
1
- class Firstkiss
2
- def self.hi(language = "english")
3
- translator = Translator.new(language)
4
- translator.hi
5
- end
6
- end
7
-
8
- require 'firstkiss/translator'