rake-compiler 0.9.8 → 0.9.9

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ec7ebae4f473ba999ae9dc16fb6773db029e2848
4
- data.tar.gz: 160c988ceee5fc727a22575dd605a062b8087969
3
+ metadata.gz: 42d579996813d84b29302613b898fd3412125229
4
+ data.tar.gz: b785572b1100a1b4a1f5c07f7bc0312917751879
5
5
  SHA512:
6
- metadata.gz: 3c261f508c93e5bc0d9abfd7ce983041d4d813ff57882f00f4b84143a884d8c3f394da245f6428f6c6afb0bc36c13dcf7e30c03bae4afd60143baa882c2e8a12
7
- data.tar.gz: c01257df3153ab2513df71a128f84067c15f8ebd3c30b2fdcab1fc49dab2d1f195a121cbc1a4332c7fd0ffecfdf3bcd2dac9e25d37c0af3c6d0914ca808f858e
6
+ metadata.gz: 2d56ae8f38d037dcaca636c427a9a2f7dc399917b9b0780667dd832a9f6c81877a5bfb7bdc1921492df926bedf91af66d65b91c9773674e0bbc605c31a365e4f
7
+ data.tar.gz: 84ca89985be0eb6082bf28ecce3e47254e6abd48100e357e07b7749c318a2770c22397aa272430123817c1bafa7f21051d040643963839a3821401f4cd62a18b
@@ -1,3 +1,9 @@
1
+ === 0.9.9 / 2016-05-10
2
+
3
+ * Bugfixes:
4
+ * Support Symbol as extension name again.
5
+ #134 [Patch by Takashi Kokubun]
6
+
1
7
  === 0.9.8 / 2016-04-29
2
8
 
3
9
  * Enhancements:
@@ -46,6 +46,7 @@ module Rake
46
46
 
47
47
  def define
48
48
  fail "Extension name must be provided." if @name.nil?
49
+ @name = @name.to_s
49
50
 
50
51
  define_compile_tasks
51
52
  end
@@ -17,6 +17,11 @@ describe Rake::ExtensionTask do
17
17
  ext.name.should == 'extension_one'
18
18
  end
19
19
 
20
+ it 'should allow symbol as extension name assignation' do
21
+ ext = Rake::ExtensionTask.new(:extension_one)
22
+ ext.name.should == 'extension_one'
23
+ end
24
+
20
25
  it 'should allow string as extension name using block assignation' do
21
26
  ext = Rake::ExtensionTask.new do |ext|
22
27
  ext.name = 'extension_two'
@@ -3,7 +3,7 @@ require 'rubygems/package_task'
3
3
  GEM_SPEC = Gem::Specification.new do |s|
4
4
  # basic information
5
5
  s.name = "rake-compiler"
6
- s.version = "0.9.8"
6
+ s.version = "0.9.9"
7
7
  s.platform = Gem::Platform::RUBY
8
8
 
9
9
  # description and details
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake-compiler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.8
4
+ version: 0.9.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-04-29 00:00:00.000000000 Z
12
+ date: 2016-05-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake