Sha256: 4c830d3310a84a92bea0228fcf15e91af58ea3e28e8d3f53ca7bc2a91d136107

Contents?: true

Size: 1.81 KB

Versions: 16

Compression:

Stored size: 1.81 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 = "sklik-api"
  gem.homepage = "http://github.com/ondrejbartas/sklik-api"
  gem.license = "MIT"
  gem.summary = %Q{Sklik advertising PPC api for creating campaigns}
  gem.description = %Q{Sklik advertising PPC api for creating campaigns and updating them when they runs}
  gem.email = "ondrej@bartas.cz"
  gem.authors = ["Ondrej Bartas"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new


#get directories!
CONF_DIR = File.expand_path(File.join("..", "config"), __FILE__)

#copy example config files for redis and elastic if they don't exists
unless File.exists?(File.join(CONF_DIR, "access.rb")) 
  FileUtils.cp(File.join(CONF_DIR, "access.rb.example"), File.join(CONF_DIR, "access.rb") ) 
  puts "WARNING: you need to setup your config/access.rb -> I created this file for you with example usage"
end

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/unit/*.rb'
  test.verbose = true
end

require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
  test.libs << 'test'
  test.pattern = 'test/unit/*.rb'
  test.verbose = true
  test.rcov_opts << '--exclude "gems/*"'
end

task :default => :test

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "sklik-api #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
sklik-api-0.0.16 Rakefile
sklik-api-0.0.15 Rakefile
sklik-api-0.0.14 Rakefile
sklik-api-0.0.13 Rakefile
sklik-api-0.0.12 Rakefile
sklik-api-0.0.11 Rakefile
sklik-api-0.0.10 Rakefile
sklik-api-0.0.9 Rakefile
sklik-api-0.0.8 Rakefile
sklik-api-0.0.7 Rakefile
sklik-api-0.0.6 Rakefile
sklik-api-0.0.5 Rakefile
sklik-api-0.0.4 Rakefile
sklik-api-0.0.3 Rakefile
sklik-api-0.0.2 Rakefile
sklik-api-0.0.1 Rakefile