Sha256: d2caadb31a014982bc4e14ff237afda0c9ecb8361ca8fea4bedc90a445836204

Contents?: true

Size: 825 Bytes

Versions: 3

Compression:

Stored size: 825 Bytes

Contents

# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.

begin
  require 'bones'
  Bones.setup
rescue LoadError
  begin
    load 'tasks/setup.rb'
  rescue LoadError
    raise RuntimeError, '### please install the "bones" gem ###'
  end
end

ensure_in_path 'lib'
require 'iphone_testify'

task :default => 'test:run'

PROJ.name = 'iphone_testify'
PROJ.authors = 'Paul Wilson'
PROJ.email = 'paul.wilson@merecomplexities.com'
PROJ.url = 'http://github.com/paulanthonywilson/iphone_testify/'
PROJ.version = IphoneTestify::VERSION

PROJ.exclude << '\.gitignore'
PROJ.notes.exclude = %w(^README\.txt$ ^data/)
PROJ.readme_file = 'README.rdoc'

depend_on "paulanthonywilson-osx_watchfolder"
depend_on "rake"

# EOF

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
paulanthonywilson-iphone_testify-0.0.4 Rakefile
paulanthonywilson-iphone_testify-0.0.5 Rakefile
paulanthonywilson-iphone_testify-0.0.6 Rakefile