bluecloth 2.0.7.pre126-x86-mingw32 → 2.0.7-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +12 -6
- data/lib/1.8/bluecloth_ext.so +0 -0
- data/lib/1.9/bluecloth_ext.so +0 -0
- data/rake/publishing.rb +9 -4
- metadata +2 -2
data/ChangeLog
CHANGED
@@ -1,4 +1,10 @@
|
|
1
|
-
|
1
|
+
128[tip] ba2087a764a2 2010-01-25 13:35 -0800 ged
|
2
|
+
Added tag 2.0.7 for changeset 2e54366aeac1
|
3
|
+
|
4
|
+
127[2.0.7] 2e54366aeac1 2010-01-25 13:35 -0800 ged
|
5
|
+
Added signature for changeset 961801a5b88a
|
6
|
+
|
7
|
+
126 961801a5b88a 2010-01-21 12:14 -0800 ged
|
2
8
|
Bumping version to 2.0.7.
|
3
9
|
|
4
10
|
125 8dd151abf28e 2010-01-21 12:13 -0800 ged
|
@@ -34,15 +40,15 @@
|
|
34
40
|
115 b715702c19f7 2010-01-02 15:08 -0800 ged
|
35
41
|
Adding a minimal test case for #60.
|
36
42
|
|
37
|
-
114:112
|
43
|
+
114:113,112 617e767c1331 2010-01-02 14:49 -0800 ged
|
38
44
|
Added spec for #56 so I can close it.
|
39
45
|
|
40
|
-
113:111
|
41
|
-
Updated build files.
|
42
|
-
|
43
|
-
112 5c81c9a5012f 2010-01-01 10:54 -0800 ged
|
46
|
+
113:111 5c81c9a5012f 2010-01-01 10:54 -0800 ged
|
44
47
|
Build with rake-compiler, fix some bugs.
|
45
48
|
|
49
|
+
112 8be386ec10a8 2009-11-04 15:56 -0800 ged
|
50
|
+
Updated build files.
|
51
|
+
|
46
52
|
111 ce4fb0ebf7c0 2009-08-03 12:58 -0700 ged
|
47
53
|
* Updated to Discount 1.5 (+bugfixes)
|
48
54
|
|
data/lib/1.8/bluecloth_ext.so
CHANGED
Binary file
|
data/lib/1.9/bluecloth_ext.so
CHANGED
Binary file
|
data/rake/publishing.rb
CHANGED
@@ -34,7 +34,13 @@ class Net::SMTP
|
|
34
34
|
|
35
35
|
def do_ssl_start( helodomain, user, secret, authtype )
|
36
36
|
raise IOError, 'SMTP session already started' if @started
|
37
|
-
|
37
|
+
if user or secret
|
38
|
+
if self.method( :check_auth_args ).arity == 3
|
39
|
+
check_auth_args( user, secret, authtype )
|
40
|
+
else
|
41
|
+
check_auth_args( user, secret )
|
42
|
+
end
|
43
|
+
end
|
38
44
|
|
39
45
|
# Open the connection
|
40
46
|
@debug_output << "opening connection to #{@address}...\n" if @debug_output
|
@@ -203,8 +209,7 @@ begin
|
|
203
209
|
email.to = RELEASE_ANNOUNCE_ADDRESSES
|
204
210
|
email.bcc = 'rubymage@gmail.com'
|
205
211
|
end
|
206
|
-
|
207
|
-
email.from = GEMSPEC.email
|
212
|
+
email.from = 'Michael Granger <mgranger@laika.com>'
|
208
213
|
email.subject = "[ANN] #{PKG_NAME} #{PKG_VERSION}"
|
209
214
|
email.body = File.read( RELEASE_ANNOUNCE_FILE )
|
210
215
|
email.date = Time.new
|
@@ -216,7 +221,7 @@ begin
|
|
216
221
|
email.to_s,
|
217
222
|
'---'
|
218
223
|
|
219
|
-
|
224
|
+
ask_for_confirmation( "Will send via #{SMTP_HOST}." ) do
|
220
225
|
pwent = Etc.getpwuid( Process.euid )
|
221
226
|
curuser = pwent ? pwent.name : 'unknown'
|
222
227
|
username = prompt_with_default( "SMTP user", curuser )
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bluecloth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.7
|
4
|
+
version: 2.0.7
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-01-
|
12
|
+
date: 2010-01-25 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|