k33l0r-redclothcoderay 0.3.1 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. metadata +3 -3
  2. data/Rakefile +0 -23
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: k33l0r-redclothcoderay
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - August Lilleaas
@@ -37,8 +37,8 @@ description: "Adds CodeRay syntax highlighting support to RedCloth, with a \xE2\
37
37
  email: augustlilleaas@gmail.com
38
38
  executables: []
39
39
 
40
- extensions:
41
- - Rakefile
40
+ extensions: []
41
+
42
42
  extra_rdoc_files: []
43
43
 
44
44
  files: []
data/Rakefile DELETED
@@ -1,23 +0,0 @@
1
- require 'rake'
2
- require 'rake/testtask'
3
- $LOAD_PATH << File.join(File.dirname(__FILE__), 'test')
4
-
5
- task :default => "test:v4"
6
-
7
- namespace :test do
8
- desc "Test RedCloth 3"
9
- task :v3 do
10
- gem 'RedCloth', "< 4.0.0"
11
- require 'RedCloth'
12
-
13
- load "test/redclothcoderay_test.rb"
14
- end
15
-
16
- desc "Test RedCloth 4"
17
- task :v4 do
18
- gem 'RedCloth', ">= 4.0.0"
19
- require 'RedCloth'
20
-
21
- load "test/redclothcoderay_test.rb"
22
- end
23
- end