crystalmeta 0.9.2 → 0.9.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.
data/CHANGELOG.markdown CHANGED
@@ -1,3 +1,7 @@
1
+ ### 0.9.3 2013-02-03
2
+
3
+ * Fix interpolation bug
4
+
1
5
  ### 0.9.2 2013-01-02
2
6
 
3
7
  * Ignore `Gemfile.lock`
@@ -7,8 +7,8 @@ module Crystal
7
7
  private
8
8
 
9
9
  def interpolate_tag!(tag)
10
- if tag.value.respond_to?(:gsub!)
11
- tag.value.gsub!(/%\{([\w:-]+)\}/) do |match|
10
+ if tag.value.respond_to?(:gsub)
11
+ tag.value = tag.value.gsub(/%\{([\w:-]+)\}/) do |match|
12
12
  interpolate_tag!(tags.find_by_name($1))
13
13
  end
14
14
  end
@@ -1,3 +1,3 @@
1
1
  module Crystal
2
- VERSION = '0.9.2'
2
+ VERSION = '0.9.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crystalmeta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.2
4
+ version: 0.9.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-03 00:00:00.000000000 Z
12
+ date: 2013-02-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -182,3 +182,4 @@ test_files:
182
182
  - spec/unit/meta_spec.rb
183
183
  - spec/unit/tag_spec.rb
184
184
  - spec/unit/tags_spec.rb
185
+ has_rdoc: