Skip to content

Commit

Permalink
Fixed a require problem that caused an error when you would gem check…
Browse files Browse the repository at this point in the history
… --test RedCloth. [#91 state:resolved]
  • Loading branch information
jgarber committed Dec 3, 2008
1 parent b331934 commit 0d28813
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Expand Up @@ -2,6 +2,8 @@

* Mentioned the three supported platforms and what's necessary to build RedCloth in the README file.

* Fixed a require problem that caused an error when you would gem check --test RedCloth. #91

=== 4.1.1 / November 19, 2008

* Added 'lib/case_sensitive_require' back into gemspec. It got left out in the conversion to echoe, so "require 'RedCloth'" didn't work. #88
Expand Down
2 changes: 1 addition & 1 deletion test/test_custom_tags.rb
@@ -1,6 +1,6 @@
#!/usr/bin/env ruby

require 'helper'
require File.join(File.dirname(__FILE__), 'helper')

class TestCustomTags < Test::Unit::TestCase

Expand Down
2 changes: 1 addition & 1 deletion test/test_erb.rb
@@ -1,6 +1,6 @@
#!/usr/bin/env ruby

require 'helper'
require File.join(File.dirname(__FILE__), 'helper')

class TestErb < Test::Unit::TestCase

Expand Down
2 changes: 1 addition & 1 deletion test/test_extensions.rb
@@ -1,6 +1,6 @@
#!/usr/bin/env ruby

require 'helper'
require File.join(File.dirname(__FILE__), 'helper')

class TestExtensions < Test::Unit::TestCase

Expand Down
2 changes: 1 addition & 1 deletion test/test_formatters.rb
@@ -1,6 +1,6 @@
#!/usr/bin/env ruby

require 'helper'
require File.join(File.dirname(__FILE__), 'helper')

class TestFormatters < Test::Unit::TestCase

Expand Down
2 changes: 1 addition & 1 deletion test/test_parser.rb
@@ -1,6 +1,6 @@
#!/usr/bin/env ruby

require 'helper'
require File.join(File.dirname(__FILE__), 'helper')

class TestParser < Test::Unit::TestCase

Expand Down
2 changes: 1 addition & 1 deletion test/test_restrictions.rb
@@ -1,6 +1,6 @@
#!/usr/bin/env ruby

require 'helper'
require File.join(File.dirname(__FILE__), 'helper')

class TestRestrictions < Test::Unit::TestCase

Expand Down
3 changes: 2 additions & 1 deletion test/validate_fixtures.rb
@@ -1,6 +1,7 @@
#!/usr/bin/env ruby

require 'helper'
require File.join(File.dirname(__FILE__), 'helper')

require 'erb'
require 'w3c_validators'

Expand Down

0 comments on commit 0d28813

Please sign in to comment.