Sha256: b188abcf3f2c876a824f70999c76067e161feb1c3bf0b80db47278ebc8917f66

Contents?: true

Size: 1.4 KB

Versions: 19

Compression:

Stored size: 1.4 KB

Contents

# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require File.expand_path('../config/application', __FILE__)
require 'rake'

EventCalendar::Application.load_tasks

excluded_files = %w(config/database.yml)

Engineer::Tasks.new do |gem|
  gem.name = "event_calendar_engine"
  gem.summary = %Q{Simple versioned event management for Rails 3.}
  gem.description = %Q{Provides basic event management features with versioned history of changes.}
  gem.email = ["jason.lapier@gmail.com", "jeremiah@inertialbit.net"]
  gem.homepage = "http://github.com/inertialbit/event_calendar"
  gem.authors = ["Jason LaPier", "Jeremiah Heller"]
  gem.require_path = 'lib'
  gem.files =  FileList[
    "[A-Z]*",
    "{app,config,lib,public,vendor}/**/*",
    "db/**/*.rb"
  ]
  gem.test_files = FileList["spec/**/*"]
  excluded_files.each{|f| gem.files.exclude(f)}

  # Include Bundler dependencies
  Bundler.definition.dependencies.each do |dependency|
    next if dependency.name == "engineer"

    if (dependency.groups & [:default, :production]).any?
      gem.add_dependency dependency.name, *dependency.requirement.as_list
    else
      gem.add_development_dependency dependency.name, *dependency.requirement.as_list
    end
  end

  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
event_calendar_engine-0.2.6 Rakefile
event_calendar_engine-0.2.5 Rakefile
event_calendar_engine-0.2.4 Rakefile
event_calendar_engine-0.2.3 Rakefile
event_calendar_engine-0.2.2 Rakefile
event_calendar_engine-0.2.1 Rakefile
event_calendar_engine-0.2.0 Rakefile
event_calendar_engine-0.1.11 Rakefile
event_calendar_engine-0.1.10 Rakefile
event_calendar_engine-0.1.9 Rakefile
event_calendar_engine-0.1.8 Rakefile
event_calendar_engine-0.1.7 Rakefile
event_calendar_engine-0.1.6 Rakefile
event_calendar_engine-0.1.5 Rakefile
event_calendar_engine-0.1.4 Rakefile
event_calendar_engine-0.1.3 Rakefile
event_calendar_engine-0.1.2 Rakefile
event_calendar_engine-0.1.1 Rakefile
event_calendar_engine-0.1.0 Rakefile