lib/icapps/translations/import/base.rb in icapps-translations-0.2.0 vs lib/icapps/translations/import/base.rb in icapps-translations-0.2.1

- old
+ new

@@ -1,8 +1,8 @@ require 'colorize' -require "icapps/translations/http" +require 'icapps/translations/http' module Icapps module Translations module Import class Base @@ -12,10 +12,10 @@ languages_json = fetch_languages puts "[VERBOSE] There are currently #{languages_json.count} language(s) for this project.".colorize(:white) if options[:verbose] languages_json.each { |language| fetch_language_file language } - puts "[MESSAGE] Finished importing translation.".colorize(:green) + puts '[MESSAGE] Finished importing translation.'.colorize(:green) end def options ::Icapps::Translations.options end