lib/ayadn/tvshow.rb in ayadn-1.7.3 vs lib/ayadn/tvshow.rb in ayadn-1.7.4

- old
+ new

@@ -3,11 +3,11 @@ class TvShow require 'tvdb_party' - AYADN_TVDB_API_KEY = '3F21527FE4C9C274' + AYADN_TVDB_API_KEY = 'E874ACBC542CAA53' attr_accessor :language, :name, :poster_url, :banner_url, :plot, :text, :imdb_link, :tag, :link, :date def initialize @language = 'en' @@ -63,9 +63,10 @@ end end def ok @view.clear_screen + puts Status.writing puts "\nYour post:\n\n".color(:cyan) puts @text puts "\n\nIs it ok? (y/N)".color(:yellow) STDIN.getch == ("y" || "Y") ? true : false end