Sha256: f66621fcb89d94a2049e436985194ad6265199f3521f48b7d105e2ac5d4befea

Contents?: true

Size: 1.3 KB

Versions: 5

Compression:

Stored size: 1.3 KB

Contents

# -*- ruby -*-


begin
  require 'rubygems'
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "calendar_date_select"
    gemspec.version = File.read("VERSION").strip
    gemspec.summary = "Calendar date picker for rails"
    gemspec.description = "Calendar date picker for rails"
    gemspec.email = ""
    gemspec.homepage = "http://github.com/timcharper/calendar_date_select"
    gemspec.authors = ["Shih-gian Lee", "Enrique Garcia Cota (kikito)", "Tim Charper", "Lars E. Hoeg"]
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install jeweler"
end

desc "Set the current gem version in the code according to the VERSION file"
task :set_version do
  VERSION=File.read("VERSION").strip
  ["lib/calendar_date_select/calendar_date_select.rb", "public/javascripts/calendar_date_select/calendar_date_select.js"].each do |file|
    abs_file = File.dirname(__FILE__) + "/" + file
    src = File.read(abs_file)
    src = src.map do |line|
      case line
      when /^ *VERSION/                        then "  VERSION = '#{VERSION}'\n"
      when /^\/\/ CalendarDateSelect version / then "// CalendarDateSelect version #{VERSION} - a prototype based date picker\n"
      else
        line
      end
    end.join
    File.open(abs_file, "wb") { |f| f << src }
  end
end
# vim: syntax=Ruby

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
calendar_date_select_rails3-1.16.2 Rakefile
calendar_date_select-1.16.4 Rakefile
webroar-0.7.0 src/admin_panel/vendor/plugins/calendar_date_select/Rakefile
calendar_date_select-1.16.3 Rakefile
calendar_date_select-1.16.2 Rakefile