Sha256: 08fc31b2ccba8880c295ad0315f2f95a1c7e15f572812466fbe3dba2de877bd4

Contents?: true

Size: 882 Bytes

Versions: 5

Compression:

Stored size: 882 Bytes

Contents

# encoding: UTF-8
require 'rake'
require 'rake/rdoctask'

require 'rubygems'

require 'rspec/core/rake_task'

require 'ci/reporter/rake/rspec'

require 'bundler'

require File.join(File.dirname(__FILE__), 'lib', 'social_stream', 'version')


RSpec::Core::RakeTask.new(:spec)

task :default => :spec

Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'SocialStream'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb', 'app/**/*.rb')
end

class Bundler::GemHelper
  def install_gem
    built_gem_path = build_gem
    out, err, code = sh_with_code("sudo gem install #{built_gem_path} --no-rdoc --no-ri")
    if err[/ERROR/]
      Bundler.ui.error err
    else
      Bundler.ui.confirm "#{name} (#{version}) installed"
    end
  end
end

Bundler::GemHelper.install_tasks

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
social_stream-0.4.1 Rakefile
social_stream-0.4.0 Rakefile
social_stream-0.3.6 Rakefile
social_stream-0.3.5 Rakefile
social_stream-0.3.4 Rakefile