Sha256: 57676014ba17ffd619851300359fe4efac3c345a4a5ab97c5bf0b6c08465a43d

Contents?: true

Size: 1.13 KB

Versions: 23

Compression:

Stored size: 1.13 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.required_ruby_version = '>= 2.3.0'

  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', '3.0.1') 
  gem.add_development_dependency('webmock', '1.22.6')
  
  gem.add_dependency('httpclient', '2.7.1')

end

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

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
mxhero-api-1.2.9 Rakefile
mxhero-api-1.2.8 Rakefile
mxhero-api-1.2.7 Rakefile
mxhero-api-1.2.6 Rakefile
mxhero-api-1.2.5 Rakefile
mxhero-api-1.2.4 Rakefile
mxhero-api-1.2.3 Rakefile
mxhero-api-1.2.2 Rakefile
mxhero-api-1.2.1 Rakefile
mxhero-api-1.2.0 Rakefile
mxhero-api-1.1.4 Rakefile
mxhero-api-1.1.3 Rakefile
mxhero-api-1.1.2 Rakefile
mxhero-api-1.1.1 Rakefile
mxhero-api-1.1.0 Rakefile
mxhero-api-1.0.5 Rakefile
mxhero-api-1.0.4 Rakefile
mxhero-api-1.0.3 Rakefile
mxhero-api-1.0.2 Rakefile
mxhero-api-1.0.1 Rakefile