Sha256: 179b801813ae85c29f800c5ed5b59dd2e11ce24c45743a7104e5092433d37560
Contents?: true
Size: 1.28 KB
Versions: 4
Compression:
Stored size: 1.28 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "CSS-Push" gem.summary = "See updates you make to css files appear immediately in all of your browsers without having to refresh." gem.email = "tilleryj@gmail.com" gem.homepage = "http://github.com/tilleryj/CSS-Push" gem.authors = ["Jason Tillery", "Vishu Ramanathan"] # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings end rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler" end require 'spec/rake/spectask' Spec::Rake::SpecTask.new(:spec) do |spec| spec.libs << 'lib' << 'spec' spec.spec_files = FileList['spec/**/*_spec.rb'] end Spec::Rake::SpecTask.new(:rcov) do |spec| spec.libs << 'lib' << 'spec' spec.pattern = 'spec/**/*_spec.rb' spec.rcov = true end task :default => :spec require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| if File.exist?('VERSION.yml') config = YAML.load(File.read('VERSION.yml')) version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}" else version = "" end rdoc.rdoc_dir = 'rdoc' rdoc.title = "CSS-Push #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
tilleryj-CSS-Push-0.0.0 | Rakefile |
tilleryj-CSS-Push-1.0.1 | Rakefile |
tilleryj-CSS-Push-1.0.2 | Rakefile |
tilleryj-CSS-Push-1.0.3 | Rakefile |