Rakefile in sms-uslugi-api-0.6.1 vs Rakefile in sms-uslugi-api-0.7.0

- old
+ new

@@ -4,11 +4,11 @@ require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message - $stderr.puts "Run `bundle install` to install missing gems" + $stderr.puts 'Run `bundle install` to install missing gems' exit e.status_code end require 'rake' require 'rspec/core/rake_task' @@ -16,26 +16,26 @@ RSpec::Core::RakeTask.new(:spec) require 'jeweler' Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options - gem.name = "sms-uslugi-api" - gem.homepage = "http://github.com/drakmail/sms-uslugi-api" - gem.license = "MIT" - gem.summary = %Q{API for sms-uslugi service} - gem.description = %Q{Simple gem for send SMS through sms-uslugi service} - gem.email = "drakmail@delta.pm" - gem.authors = ["Alexander Maslov"] + gem.name = 'sms-uslugi-api' + gem.homepage = 'http://github.com/drakmail/sms-uslugi-api' + gem.license = 'MIT' + gem.summary = 'API for sms-uslugi service' + gem.description = 'Sms-uslugi.ru API gem' + gem.email = 'drakmail@gmail.com' + gem.authors = ['Alexander Maslov'] # dependencies defined in Gemfile end Jeweler::RubygemsDotOrgTasks.new require 'rdoc/task' Rake::RDocTask.new do |rdoc| - version = File.exist?('VERSION') ? File.read('VERSION') : "" + version = File.exist?('VERSION') ? File.read('VERSION') : '' rdoc.rdoc_dir = 'rdoc' - rdoc.title = "sms-uslugi-api #{version}" + rdoc.title = 'sms-uslugi-api #{version}' rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end task default: :spec