Sha256: ee0131f966b469b2a4dbfdeef04083e624ece6b62cbf0c6d7cff04638f14c528
Contents?: true
Size: 1.95 KB
Versions: 5
Compression:
Stored size: 1.95 KB
Contents
#!/usr/bin/env ruby require 'rubygems' begin require 'cucumber/rake/task' Cucumber::Rake::Task.new do |t| t.binary = "bin/cucumber" t.cucumber_opts = "--require features/ features/" end rescue LoadError end begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "visage-app" gemspec.summary = "a web (interface | service) for viewing collectd statistics" gemspec.description = "Visage is a web interface for viewing collectd statistics. It also provides a JSON interface onto collectd's RRD data, giving you an easy way to mash up the data." gemspec.email = "lindsay@holmwood.id.au" gemspec.homepage = "http://auxesis.github.com/visage" gemspec.authors = ["Lindsay Holmwood"] gemspec.add_dependency "sinatra", "1.0" gemspec.add_dependency "tilt", "1.0.1" gemspec.add_dependency "haml", "3.0.13" gemspec.add_dependency "errand", "0.7.2" gemspec.add_dependency "yajl-ruby", "0.7.6" end rescue LoadError puts "Jeweler not available. Install it with: gem install jeweler" end desc "push gem" task :push => :lintian do filenames = Dir.glob("pkg/*.gem") filenames_with_times = filenames.map do |filename| [filename, File.mtime(filename)] end newest = filenames_with_times.sort_by { |tuple| tuple.last }.last newest_filename = newest.first command = "gem push #{newest_filename}" system(command) end desc "perform lintian checks on the JavaScript about to be shipped" task :lintian do require 'pathname' @root = Pathname.new(File.dirname(__FILE__)).expand_path javascripts_path = @root.join('lib/visage/public/javascripts') count = `grep -c 'console.log' #{javascripts_path.join('graph.js')}`.strip.to_i abort("#{count} instances of console.log found in graph.js!") if count > 0 end desc "clean up various generated files" task :clean do [ "webrat.log", "pkg/", "visage-app-*.spec", "_site/"].each do |filename| puts "Removing #{filename}" FileUtils.rm_rf(filename) end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
visage-app-0.3.2 | Rakefile |
visage-app-0.3.1 | Rakefile |
visage-app-0.3.0 | Rakefile |
visage-app-0.2.7 | Rakefile |
visage-app-0.2.6 | Rakefile |