Sha256: 23fd6ca0817d54cbe51eb0eaa2a0154ce544f728a45bd8dab4bc12cda82036b9
Contents?: true
Size: 1.3 KB
Versions: 7
Compression:
Stored size: 1.3 KB
Contents
# encoding: utf-8 require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'jeweler' Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options gem.name = "smshelper" gem.homepage = "http://github.com/voipscout/smshelper" gem.license = "MIT" gem.summary = %Q{send sms with 10+ gateways} gem.description = %Q{send sms with multiple gateways, like esendex, bulksms, clickatell etc..} gem.email = "voipscout@gmail.com" gem.authors = ["Voip Scout"] # dependencies defined in Gemfile end Jeweler::RubygemsDotOrgTasks.new require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end RSpec::Core::RakeTask.new(:rcov) do |spec| spec.pattern = 'spec/**/*_spec.rb' spec.rcov = true end task :default => :spec require 'rdoc/task' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "smshelper #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
smshelper-0.4.12 | Rakefile |
smshelper-0.4.11 | Rakefile |
smshelper-0.4.10 | Rakefile |
smshelper-0.4.9 | Rakefile |
smshelper-0.4.8 | Rakefile |
smshelper-0.4.7 | Rakefile |
smshelper-0.4.6 | Rakefile |