Skip to content
This repository has been archived by the owner on Dec 23, 2020. It is now read-only.

Commit

Permalink
Update manifest and fix names for test files and classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kommen committed Jan 10, 2009
1 parent d286890 commit 62aaa21
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
14 changes: 8 additions & 6 deletions Manifest.txt
Expand Up @@ -4,12 +4,14 @@ PostInstall.txt
README.rdoc
Rakefile
bin/freckle
freckle-gem.gemspec
lib/freckle-gem.rb
lib/freckle-gem/entry.rb
lib/freckle-gem/project.rb
freckle.gemspec
lib/freckle.rb
lib/freckle/app_config.rb
lib/freckle/cli.rb
test/test_=freckle_cli.rb
test/test_freckle-gem.rb
lib/freckle/entry.rb
lib/freckle/project.rb
script/console
script/destroy
script/generate
test/test_freckle_cli.rb
test/test_helper.rb
4 changes: 2 additions & 2 deletions Rakefile
@@ -1,9 +1,9 @@
%w[rubygems rake rake/clean fileutils newgem rubigen].each { |f| require f }
require File.dirname(__FILE__) + '/lib/freckle-gem'
require File.dirname(__FILE__) + '/lib/freckle'

# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.new('freckle-gem', FreckleGem::VERSION) do |p|
$hoe = Hoe.new('freckle', Freckle::VERSION) do |p|
p.developer('Dieter Komendera', 'dieter@abloom.at')
p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
p.post_install_message = 'PostInstall.txt'
Expand Down
6 changes: 3 additions & 3 deletions test/test_=freckle_cli.rb → test/test_freckle_cli.rb
@@ -1,10 +1,10 @@
require File.join(File.dirname(__FILE__), "test_helper.rb")
require '=freckle/cli'
require 'freckle/cli'

class Test=freckleCli < Test::Unit::TestCase
class TestFreckleCli < Test::Unit::TestCase
def setup
@stdout_io = StringIO.new
=freckle::CLI.execute(@stdout_io, [])
Freckle::CLI.execute(@stdout_io, [])
@stdout_io.rewind
@stdout = @stdout_io.read
end
Expand Down

0 comments on commit 62aaa21

Please sign in to comment.