hola-leco 0.0.7 → 0.0.9

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: 37f133b2771c410399608e43a55ed9ab86f1024a
4
- data.tar.gz: d34a312065ce16f1af4203290fb7dec675ccd7df
3
+ metadata.gz: b7a0902984ead82b358e0824397377f36ee632ac
4
+ data.tar.gz: 65c6b6fb6c260353acb6e0b6c98918680f7db10b
5
5
  SHA512:
6
- metadata.gz: 1d95077d337db7dd6feebf8eff226114ca0a3ea3c40415c94d76391810a161738138931d6282fa7867a5db1c6d6a7febb9abd7695753f723031a53f0a3288ce3
7
- data.tar.gz: 961e2e5312ae954af54225c4f761e5c0fb99618defdfbc091e1bff24a084e2c2772d69422a7cd7c4e512bfa2f1a8f7ea220e6e43da0dc8d8817ca06db968ccfb
6
+ metadata.gz: d05957ea710909c4735f7dc8674d5a636a5b27e0b6eefa15f71b0d035b630bf71d67909e0f3d5b71a85d0450d03f3fc7d8bd849023851f3bac9b00166c7d22f1
7
+ data.tar.gz: 97c82fdb5c3410f73c09f69cf8904793625bbd0d1fe845c5e7338c1fa92583dbec00272ee4de50c0f2d58cc95f522b578fe532612e8be6f06d2721fb5080e072
@@ -4,7 +4,6 @@ class Hola::Translator
4
4
  end
5
5
 
6
6
  def hi
7
- byebug
8
7
  case @language
9
8
  when "spanish"
10
9
  "hola mundo3"
@@ -11,12 +11,10 @@ class Hola
11
11
 
12
12
  def self.hi(language = "english")
13
13
  my_password = BCrypt::Password.create("my password")
14
- byebug
15
14
  puts my_password
16
15
  translator = Translator.new(language)
17
16
  puts translator.hi
18
17
  end
19
18
  end
20
19
 
21
- require 'ravelry'
22
- require 'hola/translator'
20
+ require 'hola-leco/translator'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hola-leco
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Quaranto
@@ -64,10 +64,8 @@ executables: []
64
64
  extensions: []
65
65
  extra_rdoc_files: []
66
66
  files:
67
- - lib/hola.rb
68
- - lib/hola/translator.rb
69
- - lib/ravelry.rb
70
- - lib/ravelry/configuration.rb
67
+ - lib/hola-leco.rb
68
+ - lib/hola-leco/translator.rb
71
69
  homepage: https://rubygems.org/gems/hola
72
70
  licenses:
73
71
  - MIT
@@ -1,11 +0,0 @@
1
- module Ravelry
2
- class Configuration
3
- attr_accessor :access_key, :secret_key, :personal_key
4
-
5
- def initialize
6
- @access_key = nil
7
- @secret_key = nil
8
- @personal_key = nil
9
- end
10
- end
11
- end
data/lib/ravelry.rb DELETED
@@ -1,24 +0,0 @@
1
- require 'ravelry/configuration'
2
-
3
- module Ravelry
4
- class << self
5
- attr_accessor :configuration
6
- end
7
-
8
- def self.get_configuration
9
- byebug
10
- @configuration
11
- end
12
-
13
- def self.configuration
14
- @configuration ||= Configuration.new
15
- end
16
-
17
- def self.reset
18
- @configuration = Configuration.new
19
- end
20
-
21
- def self.configure
22
- yield(configuration)
23
- end
24
- end