Remarkably 0.6.0 → 0.6.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.
@@ -26,7 +26,10 @@ module Remarkably
26
26
  @css_prefix_rendered = true
27
27
  @css_first_use = false
28
28
  end
29
- @output << "#{sym.gsub('_','-')}:#{args.map{|a|a.to_s}.join(' ')};"
29
+ # XXX This line below is more complex than it needs to be, for some
30
+ # reason gsub in ruby 1.9.2 throws a method_missing breaking
31
+ # everything :(
32
+ @output << "#{sym.to_s.split('').map{|n|n=='_' ? '-' : n}.join('')}:#{args.map{|a|a.to_s}.join(' ')};"
30
33
  end
31
34
  self
32
35
  end
@@ -1,3 +1,3 @@
1
1
  module Remarkably
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 6
8
- - 0
9
- version: 0.6.0
8
+ - 1
9
+ version: 0.6.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Clive Crous
@@ -110,7 +110,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
110
110
  requirements:
111
111
  - - ">="
112
112
  - !ruby/object:Gem::Version
113
- hash: 880848145
113
+ hash: 86614031
114
114
  segments:
115
115
  - 0
116
116
  version: "0"
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
119
  requirements:
120
120
  - - ">="
121
121
  - !ruby/object:Gem::Version
122
- hash: 880848145
122
+ hash: 86614031
123
123
  segments:
124
124
  - 0
125
125
  version: "0"