Sha256: 83f704c421009e176a8be4785834f947fbc9b0beec88e77d67345c35961ca340

Contents?: true

Size: 1.21 KB

Versions: 9

Compression:

Stored size: 1.21 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 = "ragios-client"
  gem.homepage = "http://github.com/obi-a/ragios-client"
  gem.license = "MIT"
  gem.summary = %Q{Ruby client for ragios}
  gem.description = %Q{ruby client for ragios}
  gem.email = "obioraakubue@yahoo.com"
  gem.authors = ["obi-a"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

task :repl do
  ragios_client_file = File.expand_path(File.join(File.dirname(__FILE__), '..', 'ragios-client/lib/ragios-client'))
  irb = "bundle exec pry -r #{ragios_client_file}"
  sh irb
end

task :r => :repl

task :default => :test

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

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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
ragios-client-0.2.4 Rakefile
ragios-client-0.2.3 Rakefile
ragios-client-0.2.1 Rakefile
ragios-client-0.2.0 Rakefile
ragios-client-0.1.0 Rakefile
ragios-client-0.0.7 Rakefile
ragios-client-0.0.6 Rakefile
ragios-client-0.0.5 Rakefile
ragios-client-0.0.4 Rakefile