RedCloth 4.2.4.pre2-java → 4.2.4.pre3-java
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.
Potentially problematic release.
This version of RedCloth might be problematic. Click here for more details.
- data/Gemfile.lock +1 -1
- data/lib/redcloth/version.rb +1 -1
- data/tasks/release.rake +1 -1
- metadata +3 -3
data/Gemfile.lock
CHANGED
data/lib/redcloth/version.rb
CHANGED
@@ -3,7 +3,7 @@ module RedCloth
|
|
3
3
|
MAJOR = 4
|
4
4
|
MINOR = 2
|
5
5
|
TINY = 4
|
6
|
-
RELEASE_CANDIDATE = "
|
6
|
+
RELEASE_CANDIDATE = "pre3"
|
7
7
|
|
8
8
|
STRING = [MAJOR, MINOR, TINY, RELEASE_CANDIDATE].join('.')
|
9
9
|
TAG = "REL_#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('_')}".upcase.gsub(/\.|-/, '_')
|
data/tasks/release.rake
CHANGED
@@ -5,7 +5,7 @@ namespace :release do
|
|
5
5
|
desc 'Push all gems to rubygems.org (gemcutter)'
|
6
6
|
task :push_native_gems do
|
7
7
|
Dir.chdir('pkg') do
|
8
|
-
Dir['*.gem'].each do |gem_file|
|
8
|
+
Dir['*.gem'].select {|g| g =~ /\w+-[^-]+-\w+.gem/ }.each do |gem_file|
|
9
9
|
sh("gem push #{gem_file}")
|
10
10
|
end
|
11
11
|
end
|
metadata
CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
|
|
6
6
|
- 4
|
7
7
|
- 2
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 4.2.4.
|
9
|
+
- pre3
|
10
|
+
version: 4.2.4.pre3
|
11
11
|
platform: java
|
12
12
|
authors:
|
13
13
|
- Jason Garber
|
@@ -181,6 +181,6 @@ rubyforge_project: redcloth
|
|
181
181
|
rubygems_version: 1.3.6
|
182
182
|
signing_key:
|
183
183
|
specification_version: 3
|
184
|
-
summary: RedCloth-4.2.4.
|
184
|
+
summary: RedCloth-4.2.4.pre3
|
185
185
|
test_files: []
|
186
186
|
|