Sha256: ae36ea4a689a5cd76d708c033dcb18fd6ac610fff02c9d22dec3f7bfa84a3d87

Contents?: true

Size: 1.32 KB

Versions: 2

Compression:

Stored size: 1.32 KB

Contents

require 'rake/clean'
require "rubygems"
require "lib/fsr"
require "pathname"

PROJECT_COPYRIGHT = File.read(Pathname.new(__FILE__).dirname.join("License.txt"))
PROJECT_README = Pathname.new(__FILE__).dirname.join("README").expand_path.to_s
PROJECT_FILES  = %x{git ls-files}.split
RELEASE_FILES  = PROJECT_FILES.reject { |f| f.match(/^(?:contrib)(?:\/|$)/) }
GEM_FILES      = RELEASE_FILES.reject { |f| f.match(/^(?:spec)(?:\/|$)/) }
PROJECT_SPECS  = (RELEASE_FILES - GEM_FILES).reject { |d| d.match(/(?:helper.rb)$/) }
GEM_FILES << "spec/helper.rb" if Pathname.new("spec/helper.rb").file?


GEMSPEC = Gem::Specification.new do |spec|
  spec.name = "freeswitcher"
  spec.version = ENV["FSR_VERSION"] || FSR::VERSION
  spec.summary = 'A library for interacting with the "FreeSWITCH":http://freeswitch.org telephony platform'
  spec.authors = ["Jayson Vaughn", "Michael Fellinger", "Kevin Berry", "TJ Vanderpoel"]
  spec.email = "FreeSWITCHeR@rubyists.com"
  spec.homepage = "http://code.rubyists.com/projects/fs"
  spec.add_dependency "eventmachine"
  
  spec.files = GEM_FILES
  spec.test_files = PROJECT_SPECS
  spec.require_path = "lib"

  description = File.read(PROJECT_README)
  spec.description = description
  spec.rubyforge_project = "freeswitcher"
  spec.post_install_message = description
end

import(*Dir['tasks/*rake'])

task :default => :bacon

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
bougyman-freeswitcher-0.1.4 Rakefile
freeswitcher-0.1.4 Rakefile