Sha256: 2889ad20a7ac74ca22a7b18545495f9f4d23a543a09e5c24e89e2d7c0e1f8b9e

Contents?: true

Size: 1.09 KB

Versions: 35

Compression:

Stored size: 1.09 KB

Contents

require 'bundler/gem_tasks'
require 'rake/testtask'
require 'rake/version_task'

Rake::TestTask.new do |t|
  t.libs << 'test'
end

task :default => :test


# -*- encoding: utf-8 -*-
lib = File.expand_path('./lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

spec = Gem::Specification.new do |gem|
  gem.name = 'mxhero-api'
  gem.authors = ['Maximiliano Dello Russo', 'Juan Pablo Royo', 'mxHero']
  gem.email = ['maxidr@mxhero.com','juanpablo.royo@gmail.com', 'mxhero@mxhero.com']
  gem.summary = %q{A MxHero API client for ruby}
  gem.description = %q{A gem to provide easy access to the API of MxHero platform (http://www.mxhero.com/)}
  gem.homepage = 'http://github.com/mxhero/mxhero-api'
  gem.license = 'GPL-3'

  gem.files = `git ls-files`.split($\)
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.add_development_dependency('vcr', '2.5.0') 
  gem.add_development_dependency('webmock', '1.11.0')
  
  gem.add_dependency('httpclient', '2.3.3')

end

Rake::VersionTask.new do |task|
  task.with_git_tag = true
  task.with_gemspec = spec
end

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
mxhero-api-0.1.39 Rakefile
mxhero-api-0.1.38 Rakefile
mxhero-api-0.1.37 Rakefile
mxhero-api-0.1.36 Rakefile
mxhero-api-0.1.35 Rakefile
mxhero-api-0.1.34 Rakefile
mxhero-api-0.1.33 Rakefile
mxhero-api-0.1.32 Rakefile
mxhero-api-0.1.31 Rakefile
mxhero-api-0.1.30 Rakefile
mxhero-api-0.1.29 Rakefile
mxhero-api-0.1.28 Rakefile
mxhero-api-0.1.27 Rakefile
mxhero-api-0.1.26 Rakefile
mxhero-api-0.1.25 Rakefile
mxhero-api-0.1.24 Rakefile
mxhero-api-0.1.23 Rakefile
mxhero-api-0.1.22 Rakefile
mxhero-api-0.1.21 Rakefile
mxhero-api-0.1.20 Rakefile