Sha256: b38b2dc4624b178b1a2d4a08d70360ce07a90e9d28e9e3418500ce38e42cbd0f

Contents?: true

Size: 1.24 KB

Versions: 1

Compression:

Stored size: 1.24 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'
require './lib/marvel/version.rb'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = 'marvel_api'
  gem.version = Marvel::Version
  gem.homepage = 'http://github.com/O-I/marvel'
  gem.license = 'MIT'
  gem.summary = %Q{Ruby bindings for the Marvel API}
  gem.description = %Q{Explore the Marvel Universe like never before.}
  gem.email = 'hore.rahul@gmail.com'
  gem.authors = ['Rahul Horé']
  gem.required_ruby_version = '>= 1.9.3'
  # 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

task :default => :spec

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = Marvel::Version

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
marvel_api-0.2.1 Rakefile