Sha256: 3faa57a4cc1a7eb115f88ab7dc199c390f9b955be7b52639921ab78cd5b1a4b5

Contents?: true

Size: 1.12 KB

Versions: 6

Compression:

Stored size: 1.12 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 = "ruby_android"
  gem.homepage = "https://github.com/tajchert/ruby_apk"
  gem.license = "MIT"
  gem.summary = %Q{static analysis tool for android apk}
  gem.description = %Q{static analysis tool for android apk}
  gem.email = "thetajchert@gmail.com"
  gem.authors = ["Michal Tajchert","SecureBrain"]
  # 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 'yard'
require 'yard/rake/yardoc_task'
YARD::Rake::YardocTask.new do |t|
  t.files = ['lib/**/*.rb']
  t.options = []
  t.options << '--debug' << '--verbose' if $trace
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
ruby_android_apk-0.7.7.1 Rakefile
ruby_android-0.7.7 Rakefile
ruby_android-0.7.6 Rakefile
ruby_android-0.7.5 Rakefile
ruby_android-0.7.3 Rakefile
ruby_android-0.7.2 Rakefile