Sha256: aba315b657b1d504fe3750abaf3ee6d617153248f70d85108a69435eb29c1bd0
Contents?: true
Size: 1.09 KB
Versions: 6
Compression:
Stored size: 1.09 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 = "natives-catalog" gem.homepage = "http://github.com/teohm/natives-catalog" gem.license = "MIT" gem.summary = %Q{A catalog of native packages for ruby gems.} gem.description = %Q{A catalog of native packages in different platforms required by ruby gems.} gem.email = "teohuiming@gmail.com" gem.authors = ["Huiming Teo"] # 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 RSpec::Core::RakeTask.new(:coverage) do |spec| ENV['COVERAGE'] = 'true' end task :default => :spec require 'yard' YARD::Rake::YardocTask.new
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
natives-catalog-0.3.3 | Rakefile |
natives-catalog-0.3.2 | Rakefile |
natives-catalog-0.3.1 | Rakefile |
natives-catalog-0.3.0 | Rakefile |
natives-catalog-0.2.1 | Rakefile |
natives-catalog-0.2.0 | Rakefile |