Skip to content

Instantly share code, notes, and snippets.

View cadams500's full-sized avatar

Chris Adams cadams500

View GitHub Profile
@pepijnve
pepijnve / proguard.rb
Last active December 16, 2015 05:48
Buildr extension that adds support for obfuscation using Proguard
require 'buildr'
module Buildr
class ProguardTask < Rake::FileTask
# Proguard version number.
VERSION = '4.7'
OPTIONS = [:configuration,
:target,
:forceprocessing,
@aboisvert
aboisvert / proguard.rb
Created April 5, 2013 22:25
Proguard plugin for Apache Buildr
#
# Usage:
#
# Add the following at the top of your buildfile,
#
# require 'proguard.rb'
#
# And specify your proguard jar in your project,
#
# package(:proguard).tap do |proguard|