habluhablu 0.1.9 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d167717c215377ec823f84b8714f2e1666586415c580dcf8308f78628a60e829
4
- data.tar.gz: 1baba61eb1efdfc0271fb6ec878101acd0bcd21c7da824d52602a54b6cd15114
3
+ metadata.gz: 94aed4a66a4b970448f7a9ff6be9b7d73477b6ae6583bc8c06c94e2ca0303a65
4
+ data.tar.gz: 22dc784c2c02be87bef45a604c4be9bed7899f93367401230bb755557fc4ca31
5
5
  SHA512:
6
- metadata.gz: 8a9fd9e29b56f77de1f05fe999a8aa442e3146a9f44bb8eeb8fccf6126ed596775ce3462f4823452e973a449f6e4f35870c1ebe6e0a552e5e1efa7666edc8eb5
7
- data.tar.gz: e1d52ca368795a6299457ab855c34d0ecb768b3f687325eedc3131d549eec987f0fd4821351aac5805e9c3bfa04dcc90c2953acfc5d18b6a364186d5e08faec9
6
+ metadata.gz: 1e6ca3ff12dcdad68b9f224734a48941cc44eadeea774400cce526ef2c2b1d5ed6699f32d85890ffcddeddb3cd78d06aeaff8a6a601445581c9cd9c2d1e4d3f1
7
+ data.tar.gz: e74f72eb74f4aeec6adad77026539d953fa4f37249b193427b8ff21b640c8157616c11449b5e10a6999aa2f809a45746bc5cfbb2cda003d10e6b265ba8a0aff4
data/.rubocop.yml CHANGED
@@ -1,29 +1,50 @@
1
- AllCops:
2
- TargetRubyVersion: 2.7
3
- Exclude:
4
- - 'spec/**/*'
5
-
6
- Layout/EndOfLine:
7
- Enabled: false
8
-
9
- Style/StringLiterals:
10
- Enabled: true
11
- EnforcedStyle: double_quotes
12
-
13
- Style/StringLiteralsInInterpolation:
14
- Enabled: true
15
- EnforcedStyle: double_quotes
16
-
17
- Layout/LineLength:
18
- Max: 120
19
-
20
- Metrics/MethodLength:
21
- Max: 20
22
-
23
- Style/IfUnlessModifier:
24
- Exclude:
25
- - 'lib/**/*'
26
-
27
- Style/RaiseArgs:
28
- Exclude:
29
- - 'lib/habluhablu.rb'
1
+ AllCops:
2
+ TargetRubyVersion: 2.7
3
+ SuggestExtensions: false
4
+ NewCops: enable
5
+ Exclude:
6
+ - 'spec/**/*'
7
+
8
+ Layout/EndOfLine:
9
+ Enabled: false
10
+
11
+ Style/StringLiterals:
12
+ Enabled: true
13
+ EnforcedStyle: double_quotes
14
+
15
+ Style/StringLiteralsInInterpolation:
16
+ Enabled: true
17
+ EnforcedStyle: double_quotes
18
+
19
+ Layout/LineLength:
20
+ Enabled: false
21
+
22
+ Metrics/MethodLength:
23
+ Exclude:
24
+ - 'lib/languages/languages.rb'
25
+ Max: 20
26
+
27
+ Style/IfUnlessModifier:
28
+ Exclude:
29
+ - 'lib/**/*'
30
+
31
+ Style/RaiseArgs:
32
+ Exclude:
33
+ - 'lib/habluhablu.rb'
34
+
35
+ Style/IfWithBooleanLiteralBranches:
36
+ Exclude:
37
+ - 'lib/languages/languages.rb'
38
+
39
+ Lint/ScriptPermission:
40
+ Exclude:
41
+ - 'bin/console'
42
+
43
+ Metrics/ClassLength:
44
+ Exclude:
45
+ - 'lib/languages/languages.rb'
46
+
47
+ Style/OptionalBooleanParameter:
48
+ Exclude:
49
+ - 'lib/languages/languages.rb'
50
+ - 'lib/habluhablu.rb'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- habluhablu (0.1.9)
4
+ habluhablu (0.2.5)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,49 +1,52 @@
1
- # HabluHablu
2
-
3
- HabluHablu is a gem which allows you to generate language file with translations of the most useful phrases.
4
-
5
- There is also an option to add countries flag using bootstrap (for more informations go to languages/Countries_Flags.md).
6
-
7
- ## Supported languages
8
-
9
- - English
10
- - Polish
11
- - Spanish
12
- - German
13
- - French
14
- - Hebrew
15
- - If you want to help me out and add your language, then contact me patrick.gramatowski@gmail.com
16
- - In progress...
17
-
18
- ### Installation
19
-
20
- Add this line to your application's Gemfile:
21
-
22
- Install [I18n gem](https://github.com/ruby-i18n/i18n)
23
-
24
- ```ruby
25
- gem 'habluhablu'
26
- ```
27
-
28
- And then execute:
29
-
30
- $ bundle install
31
-
32
- Or install it yourself as:
33
-
34
- $ gem install habluhablu
35
-
36
- ### Usage
37
-
38
- Generate file for a specific language using `habluhablu -l <symbol>` command.
39
- [List of symbols](https://www.w3.org/International/O-charset-lang.html)
40
-
41
- `habluhablu --help`
42
-
43
- ### Contributing
44
-
45
- Bug reports and pull requests are welcome on GitHub at https://github.com/patrickgramatowski/habluhablu_gem.
46
-
47
- ### License
48
-
49
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
1
+ [![Gem Version](https://badge.fury.io/rb/habluhablu.svg)](https://badge.fury.io/rb/habluhablu)
2
+
3
+ # HabluHablu
4
+
5
+ HabluHablu is a CLI written in Ruby, which allows you to generate language file with translations of the most useful phrases.
6
+
7
+ ## Supported languages
8
+
9
+ - English
10
+ - Polish
11
+ - Arabic
12
+ - Spanish
13
+ - Hebrew
14
+ - If you want to help me out and add your language, don't hesitate!
15
+ - In progress...
16
+
17
+ ### Installation
18
+
19
+ Add this line to your application's Gemfile:
20
+
21
+ Install [I18n gem](https://github.com/ruby-i18n/i18n)
22
+
23
+ ```ruby
24
+ gem 'habluhablu'
25
+ ```
26
+
27
+ And then execute:
28
+
29
+ $ bundle install
30
+
31
+ Or install it yourself as:
32
+
33
+ $ gem install habluhablu
34
+
35
+ ### Usage
36
+
37
+ Generate file for a specific language using `habluhablu -l <symbol>` command.
38
+ Generate an example language file using `habluhablu -l example` command (it generates empty file with keywords to fill).
39
+ Generate files for a more languages using `habluhablu -m <symbols>(separated by '_')` command.
40
+ [List of symbols](https://www.w3.org/International/O-charset-lang.html)
41
+
42
+ `habluhablu --help`
43
+
44
+ There is also an option to add countries flag using bootstrap (for more informations go to languages/Countries_Flags.md).
45
+
46
+ ### Contributing
47
+
48
+ Bug reports and pull requests are welcome on GitHub at https://github.com/patrickgramatowski/habluhablu_gem.
49
+
50
+ ### License
51
+
52
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/exe/habluhablu CHANGED
@@ -8,14 +8,37 @@ args = {}
8
8
  OptionParser.new do |opts|
9
9
  opts.banner = "Generate files including basic phrases translations (using with I18n gem)"
10
10
 
11
- opts.on("-l", "--language SYMBOL", "The unit of the unnamed, first amount argument")
11
+ opts.on("-l", "--language SYMBOL", "Symbol of the language you want to generate file for (en, es, ...).")
12
+ opts.on("-m", "--multi SYMBOLS", "Symbols of languages you want to generate files for (en es pl ar)")
13
+ opts.on("-k", "--keyword KEYWORD", "Add your own keyword for all language files (.yml).")
12
14
  end.parse!(into: args)
13
15
 
14
- Habluhablu.hablu(args[:language])
15
- if File.exist?("config/locales/#{args[:language]}.yml")
16
- puts "..."
17
- sleep 0.5
18
- puts "File for #{args[:language].upcase} language has been generated successfully!"
16
+ if args[:multi].nil?
17
+ if args[:keyword].nil?
18
+ Habluhablu.hablu(args[:language])
19
+ if File.exist?("config/locales/#{args[:language]}.yml")
20
+ puts "..."
21
+ sleep 0.5
22
+ puts "Everything was generated successfully!"
23
+ else
24
+ puts "Something went wrong!"
25
+ end
26
+ else
27
+ Habluhablu.keyword(args[:keyword])
28
+ puts "..."
29
+ sleep 0.5
30
+ puts "Everything was added successfully!"
31
+ end
19
32
  else
20
- puts "Something went wrong!"
33
+ languages_array = args[:multi].split("_")
34
+ languages_array.each do |language|
35
+ Habluhablu.hablu(language)
36
+ end
37
+ if File.exist?("config/locales/#{languages_array.last}.yml")
38
+ puts "..."
39
+ sleep 0.5
40
+ puts "Everything was generated successfully!"
41
+ else
42
+ puts "Something went wrong!"
43
+ end
21
44
  end
data/habluhablu.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.email = ["patrick.gramatowski@gmail.com"]
10
10
 
11
11
  spec.summary = "HabluHablu makes it easier to use I18n."
12
- spec.description = "The gem allows you to generate language file with translations of the most useful phrases."
12
+ spec.description = "Generate language file (for I18n) with translations of the most useful phrases."
13
13
  spec.homepage = "https://github.com/patrickgramatowski/habluhablu_gem"
14
14
  spec.license = "MIT"
15
15
  spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
data/lib/habluhablu.rb CHANGED
@@ -1,43 +1,52 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "habluhablu/version"
4
- require_relative "languages/languages"
5
-
6
- # Module HabluHablu
7
- module Habluhablu
8
- class Error < StandardError; end
9
-
10
- # Cutom error with helpful message
11
- class WrongSymbolError < Error
12
- def initialize(language)
13
- super("Wrong language symbol: #{language}!")
14
- end
15
- end
16
-
17
- # Cutom error with helpful message
18
- class GemI18nError < Error
19
- def initialize
20
- super("Install I18n gem!")
21
- end
22
- end
23
-
24
- def self.hablu(language)
25
- # Check if I18n gem is included
26
- # if not, raise the custom error
27
- if Dir.exist?("./config/locales").eql?(false)
28
- raise GemI18nError.new
29
- end
30
-
31
- # Check if specified symbol's language does exist
32
- # if not, raise the custom error
33
- language_class = Languages.new(language)
34
- if language_class.include_language? == false
35
- raise WrongSymbolError.new(language)
36
- end
37
-
38
- # Create a file of specified language
39
- File.open("./config/locales/#{language}.yml", "w") do |f|
40
- f.write(language_class.render)
41
- end
42
- end
43
- end
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "habluhablu/version"
4
+ require_relative "languages/languages"
5
+
6
+ # Module HabluHablu
7
+ module Habluhablu
8
+ class Error < StandardError; end
9
+
10
+ # Cutom error with helpful message
11
+ class WrongSymbolError < Error
12
+ def initialize(language)
13
+ super("Wrong language symbol: #{language}!")
14
+ end
15
+ end
16
+
17
+ # Cutom error with helpful message
18
+ class GemI18nError < Error
19
+ def initialize
20
+ super("Install I18n gem!")
21
+ end
22
+ end
23
+
24
+ def self.hablu(language)
25
+ # Check if I18n gem is included
26
+ # if not, raise the custom error
27
+ if Dir.exist?("./config/locales").eql?(false)
28
+ raise GemI18nError.new
29
+ end
30
+
31
+ # Check if specified symbol's language does exist
32
+ # if not, raise the custom error
33
+ language_class = Languages.new(language)
34
+ if language_class.include_language? == false
35
+ raise WrongSymbolError.new(language)
36
+ end
37
+
38
+ # Create a file of specified language
39
+ File.open("./config/locales/#{language}.yml", "w") do |f|
40
+ f.write(language_class.render)
41
+ end
42
+ end
43
+
44
+ def self.keyword(keyword)
45
+ languages = Dir["config/locales/*.yml"]
46
+ languages.each do |file|
47
+ File.open(file.to_s, "a") do |f|
48
+ f.write(%(\n #{keyword}: => ""))
49
+ end
50
+ end
51
+ end
52
+ end
@@ -1,5 +1,5 @@
1
- # frozen_string_literal: true
2
-
3
- module Habluhablu
4
- VERSION = "0.1.9"
5
- end
1
+ # frozen_string_literal: true
2
+
3
+ module Habluhablu
4
+ VERSION = "0.2.5"
5
+ end
@@ -4,23 +4,178 @@ require "yaml"
4
4
 
5
5
  # Class comment
6
6
  class Languages
7
+ attr_writer :languages
8
+
7
9
  def initialize(language)
8
10
  @language = language.to_sym
9
11
  @languages = {
10
12
  ar: {
11
- "ar" => { "welcome" => "مرحبا" }
13
+ "ar" => {
14
+ "welcome" => "مرحبا",
15
+ "registration" => "عنوان البريد الإلكتروني",
16
+ "log_in" => "تسجيل الدخول",
17
+ "log_in_with" => "سجّل الدخول باستخدام حساب", # Example: 'with Facebook'
18
+ "log_out" => "تسجيل الخروج",
19
+ "email_address" => "عنوان البريد الإلكتروني",
20
+ "username" => "اسم االمستخدم",
21
+ "password" => "كلمه المرور",
22
+ "remember_me" => "تذكرنى",
23
+ "forgot_password" => "نسيت كلمة مرورك",
24
+ "do_not_have_account" => "ليس لديك حساب؟",
25
+ "lorem" => "غينيا واستمر العصبة ضرب قد. وباءت الأمريكي الأوربيين هو به،, هو العالم، الثقيلة بال. مع وايرلندا الأوروبيّون كان, قد بحق أسابيع العظمى واعتلاء. انه كل وإقامة المواد. "
26
+ }
12
27
  },
13
28
  en: {
14
- "en" => { "welcome" => "Welcome" }
29
+ "en" => {
30
+ "welcome" => "Welcome",
31
+ "registration" => "Registartion",
32
+ "log_in" => "Log in",
33
+ "log_in_with" => "Log in with", # Example: 'with Facebook'
34
+ "log_out" => "Log out",
35
+ "email_address" => "Email address",
36
+ "username" => "Username",
37
+ "password" => "Password",
38
+ "remember_me" => "Remember me",
39
+ "forgot_password" => "Forgot password?",
40
+ "do_not_have_account" => "Don't You have an account?",
41
+ "lorem" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
42
+ }
15
43
  },
16
44
  es: {
17
- "es" => { "welcome" => "Bienvenido" }
45
+ "es" => {
46
+ "date" => {
47
+ "months_names" => %w[
48
+ Enero Febrero Marzo Abril Mayo Junio Julio Agosto Septiembre Octubre Noviembre Dieciembre
49
+ ],
50
+ "abbr_month_names" => %w[
51
+ Ene Feb Mar Abr May Jun Jul Ago Set Oct Nov Dic
52
+ ]
53
+ },
54
+ "welcome" => "Bienvenido",
55
+ "registration" => "Regístrate",
56
+ "log_in" => "Iniciar sesión",
57
+ "log_in_with" => "Iniciar sesión con", # Example: 'with Facebook'
58
+ "log_out" => "Cerrar la sesión",
59
+ "email_address" => "Dirección de correo electrónico",
60
+ "username" => "Nombre de usuario",
61
+ "password" => "Contraseña",
62
+ "remember_me" => "Recordarme",
63
+ "forgot_password" => "¿Has olvidado tu contraseña?",
64
+ "do_not_have_account" => "¿No tienes una cuenta?",
65
+ "lorem" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
66
+ }
18
67
  },
19
68
  pl: {
20
- "pl" => { "welcome" => "Witaj" }
69
+ "pl" => {
70
+ "date" => {
71
+ "months_names" => %w[
72
+ Styczeń Luty Marzec Kwiecień Maj Czerwiec Lipiec Sierpień Wrzesień Październik Listopad Grudzień
73
+ ],
74
+ "abbr_month_names" => %w[
75
+ Sty Lut Mar Kwi Maj Cze Lip Sie Wrz Paź Lis Gru
76
+ ]
77
+ },
78
+ "welcome" => "Witaj",
79
+ "registration" => "Zarejestruj się",
80
+ "log_in" => "Zaloguj się",
81
+ "log_in_with" => "Zaloguj się za pomocą", # Example: 'with Facebook'
82
+ "log_out" => "Wyolguj się",
83
+ "email_address" => "Adres email",
84
+ "username" => "Nazwa użytkownika",
85
+ "password" => "Hasło",
86
+ "remember_me" => "Zapamiętaj mnie!",
87
+ "forgot_password" => "Zapomniałeś hasła?",
88
+ "do_not_have_account" => "Nie masz jeszcze konta?",
89
+ "lorem" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
90
+ }
21
91
  },
22
92
  iw: {
23
- "iw" => { "welcome" => "שלום" }
93
+ "iw" => {
94
+ # I'm not sure about this translation, it has to be checked!!
95
+ "welcome" => "שלום",
96
+ "registration" => "הירשם",
97
+ "log_in" => "להתחבר",
98
+ "log_in_with" => "התחבר ל", # Example: 'with Facebook'
99
+ "log_out" => "להתנתק",
100
+ "email_address" => "אימייל",
101
+ "username" => "שם משתמש",
102
+ "password" => "סיסמה",
103
+ "remember_me" => "זכור אותי",
104
+ "forgot_password" => "שכחת את הסיסמא?",
105
+ "do_not_have_account" => "אין לך חשבון?",
106
+ "lorem" => "כדי יסוד מונחים מועמדים של, דת דפים מאמרשיחהצפה זאת. אתה דת שונה כלשהו, גם אחר ליום בשפות, או ניווט פולנית לחיבור ארץ. ויש בקלות ואמנות אירועים או, אל אינו כלכלה שתי."
107
+ }
108
+ },
109
+ fr: {
110
+ "fr" => {
111
+ "welcome" => "Bienvenu", # bienvenue female
112
+ "registration" => "Créer un compte",
113
+ "log_in" => "Connexion",
114
+ "log_in_with" => "Se connecter avec", # Example: 'with Facebook'
115
+ "log_out" => "Déconnexion",
116
+ "email_address" => "Adresse e-mail",
117
+ "username" => "Nom d'utilisateur",
118
+ "password" => "Mot de passe",
119
+ "remember_me" => "Mémoriser",
120
+ "forgot_password" => "Mot de passe oublié",
121
+ "do_not_have_account" => "Vous n'avez pas de compte?",
122
+ "lorem" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
123
+ }
124
+ },
125
+ it: {
126
+ "it" => {
127
+ "welcome" => "Benvenuto", # benvenuta female
128
+ "registration" => "Iscriviti",
129
+ "log_in" => "Accedi",
130
+ "log_in_with" => "Accedi con", # Example: 'with Facebook'
131
+ "log_out" => "Esci",
132
+ "email_address" => "Indirizzo e-mail",
133
+ "username" => "Nome utente",
134
+ "password" => "Password",
135
+ "remember_me" => "Ricordami",
136
+ "forgot_password" => "Ho dimenticato la password",
137
+ "do_not_have_account" => "Non possiedi un account?",
138
+ "lorem" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
139
+ }
140
+ },
141
+ de: {
142
+ "de" => {
143
+ "welcome" => "Willkommen",
144
+ "registration" => "Registrieren",
145
+ "log_in" => "Anmelden",
146
+ "log_in_with" => "Anmeldung mit", # Example: 'with Facebook'
147
+ "log_out" => "Abmelden",
148
+ "email_address" => "E-Mail-Adresse",
149
+ "username" => "Nutzername",
150
+ "password" => "Passwort",
151
+ "remember_me" => "Merken",
152
+ "forgot_password" => "Passwort vergessen?",
153
+ "do_not_have_account" => "Hast du noch kein FACEBOOK-Konto?", # Change facebook!
154
+ "lorem" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
155
+
156
+ }
157
+ },
158
+ example: {
159
+ "example" => {
160
+ "date" => {
161
+ "months_names" => %w[
162
+ ],
163
+ "abbr_month_names" => %w[
164
+ ]
165
+ },
166
+ "welcome" => "",
167
+ "registration" => "",
168
+ "log_in" => "",
169
+ "log_in_with" => "", # Example: 'with Facebook'
170
+ "log_out" => "",
171
+ "email_address" => "",
172
+ "username" => "",
173
+ "password" => "",
174
+ "remember_me" => "",
175
+ "forgot_password" => "",
176
+ "do_not_have_account" => "",
177
+ "lorem" => ""
178
+ }
24
179
  }
25
180
  }
26
181
  end
@@ -30,6 +185,6 @@ class Languages
30
185
  end
31
186
 
32
187
  def render
33
- @languages.key?(@language) ? @languages[@language].to_yaml : "No language in the lib."
188
+ @languages.key?(@language) ? @languages[@language].to_yaml : "No language in the lib (YET!)"
34
189
  end
35
190
  end
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: habluhablu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Gramatowski
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-05-06 00:00:00.000000000 Z
11
+ date: 2021-05-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: The gem allows you to generate language file with translations of the
14
- most useful phrases.
13
+ description: Generate language file (for I18n) with translations of the most useful
14
+ phrases.
15
15
  email:
16
16
  - patrick.gramatowski@gmail.com
17
17
  executables: