hoe-seattlerb 1.1.0 → 1.1.1

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.
data.tar.gz.sig CHANGED
Binary file
@@ -1,3 +1,9 @@
1
+ === 1.1.1 / 2009-06-22
2
+
3
+ * 1 bug fix:
4
+
5
+ * Fixed activation bug in seattlerb
6
+
1
7
  === 1.1.0 / 2009-06-17
2
8
 
3
9
  * 2 minor enhancements:
@@ -13,7 +13,7 @@ module Hoe::Email
13
13
 
14
14
  def initialize_email
15
15
  with_config do |config, _|
16
- @email_to = config["email"]["to"]
16
+ @email_to = config["email"]["to"] rescue nil
17
17
  end
18
18
  end
19
19
 
@@ -39,11 +39,10 @@ module Hoe::Email
39
39
 
40
40
  smtp = Net::SMTP.new(host, port)
41
41
  smtp.set_debug_output $stderr if $DEBUG
42
- smtp.start(*start_args) do |smtp|
43
- smtp.send_message message, Array(email).first, *email_to
42
+ smtp.start(*start_args) do |server|
43
+ server.send_message message, Array(email).first, *email_to
44
44
  end
45
45
  end
46
46
  end
47
47
  end
48
48
  end
49
-
@@ -1,11 +1,5 @@
1
1
  module Hoe::Minitest
2
- VERSION = "1.1.0"
3
-
4
- def initialize_minitest
5
- self.testlib = :minitest
6
- end
7
-
8
2
  def define_minitest_tasks
9
- # nothing to do
3
+ self.testlib = :minitest
10
4
  end
11
5
  end
@@ -1,8 +1,8 @@
1
- Hoe.plugin :minitest
2
- Hoe.plugin :perforce
3
- Hoe.plugin :email
1
+ Hoe.plugin :minitest, :perforce, :email
4
2
 
5
3
  module Hoe::Seattlerb
4
+ VERSION = "1.1.1"
5
+
6
6
  def define_seattlerb_tasks
7
7
  # nothing to do
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hoe-seattlerb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Davis
@@ -30,7 +30,7 @@ cert_chain:
30
30
  FBHgymkyj/AOSqKRIpXPhjC6
31
31
  -----END CERTIFICATE-----
32
32
 
33
- date: 2009-06-17 00:00:00 -07:00
33
+ date: 2009-06-23 00:00:00 -07:00
34
34
  default_executable:
35
35
  dependencies:
36
36
  - !ruby/object:Gem::Dependency
@@ -41,7 +41,7 @@ dependencies:
41
41
  requirements:
42
42
  - - ">="
43
43
  - !ruby/object:Gem::Version
44
- version: 2.1.0
44
+ version: 2.3.0
45
45
  version:
46
46
  description: |-
47
47
  Hoe plugins providing tasks used by seattle.rb including minitest,
metadata.gz.sig CHANGED
Binary file