Sha256: 6e5a85179337a3b0f2c93dd85cb46e5d217957f3df81a38938af13e8dae32960

Contents?: true

Size: 400 Bytes

Versions: 6

Compression:

Stored size: 400 Bytes

Contents

desc "Build the gem"
task :gem do
  sh "bundle exec gem build motion-sparkle.gemspec"
  sh "mkdir -p pkg"
  sh "mv *.gem pkg/"
end
task :build => :gem

desc "Clear gem builds"
task :clean do
  FileUtils.rm_rf 'pkg'
  FileUtils.rm_rf 'tmp'
end
task :clear => :clean

desc "Run all the specs"
task :spec do
  sh "bundle exec bacon -q #{FileList['spec/*_spec.rb'].join(' ')}"
end
task :default => :spec

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
motion-sparkle-0.0.6 Rakefile
motion-sparkle-0.0.5 Rakefile
motion-sparkle-0.0.4 Rakefile
motion-sparkle-0.0.3 Rakefile
motion-sparkle-0.0.2 Rakefile
motion-sparkle-0.0.1 Rakefile