Sha256: 1fdd8b2e40bf406bc2f30c8e25004db634d5f836e8bc5293a4ceadd11ad33241

Contents?: true

Size: 1.82 KB

Versions: 14

Compression:

Stored size: 1.82 KB

Contents

# Generated this engine with docs found here:
# http://nepalonrails.com/blog/2010/09/Creating-a-Rails-engine-with-tests-and-a-dummy-rails-application-embedded-in-it


require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "phocoder-rails"
  gem.homepage = "http://github.com/jagthedrummer/phocoder-rails"
  gem.license = "MIT"
  gem.summary = %Q{Rails engine for easy integration with phocoder.com}
  gem.description = %Q{Rails engine for easy integration with phocoder.com}
  gem.email = "jagthedrummer@gmail.com"
  gem.authors = ["Jeremy Green"]
  # Include your dependencies below. Runtime dependencies are required when using your gem,
  # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
  #  gem.add_runtime_dependency 'jabber4r', '> 0.1'
  #  gem.add_development_dependency 'rspec', '> 1.2.3'
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
  spec.rspec_opts = ['--color']
  spec.rcov_opts = ['--exclude', '^spec,/gems/,/\.bundler/']
end

task :default => :spec

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "phocoder-rails #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
phocoder-rails-0.0.50 Rakefile
phocoder-rails-0.0.49 Rakefile
phocoder-rails-0.0.48 Rakefile
phocoder-rails-0.0.47 Rakefile
phocoder-rails-0.0.46 Rakefile
phocoder-rails-0.0.45 Rakefile
phocoder-rails-0.0.44 Rakefile
phocoder-rails-0.0.43 Rakefile
phocoder-rails-0.0.42 Rakefile
phocoder-rails-0.0.41 Rakefile
phocoder-rails-0.0.40 Rakefile
phocoder-rails-0.0.39 Rakefile
phocoder-rails-0.0.38 Rakefile
phocoder-rails-0.0.37 Rakefile