Sha256: d5f8ef61846b4ba0a451aecd955a8907697157202dc67969a0b997de006fa027

Contents?: true

Size: 588 Bytes

Versions: 33

Compression:

Stored size: 588 Bytes

Contents

require 'corundum'
require 'corundum/tasklibs'

require 'corundum/rubyforge'

module Corundum
  describe "A fairly complete Rakefile" do
    before :each do
      tk = Toolkit.new do |tk|
      end

      tk.in_namespace do
        rspec = RSpec.new(tk)
        cov = SimpleCov.new(tk, rspec)
        gem = GemBuilding.new(tk)
        cutter = GemCutter.new(tk, gem)
        email = Email.new(tk)
        vc = Git.new(tk)
        docs = YARDoc.new(tk)
        pages = GithubPages.new(docs)
      end
    end

    it "should have some tasks" do
      true.should be_true
    end
  end
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
corundum-0.0.25 spec/smoking_spec.rb
corundum-0.0.24 spec/smoking_spec.rb
corundum-0.0.23 spec/smoking_spec.rb
corundum-0.0.22 spec/smoking_spec.rb
corundum-0.0.20 spec/smoking_spec.rb
corundum-0.0.19 spec/smoking_spec.rb
corundum-0.0.18 spec/smoking_spec.rb
corundum-0.0.17 spec/smoking_spec.rb
corundum-0.0.16 spec/smoking_spec.rb
corundum-0.0.15 spec/smoking_spec.rb
corundum-0.0.13 spec/smoking_spec.rb
corundum-0.0.12 spec/smoking_spec.rb
corundum-0.0.10 spec/smoking_spec.rb