SassyStrings 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d70bcfa2579e805f82da0912eef6f090541410bf
4
- data.tar.gz: 1dc25991030d97b6a074736f6c8586be02c6e6e2
3
+ metadata.gz: 877e613d3654d3817ecfa46b732bf4216d3da942
4
+ data.tar.gz: 4012bbb0c53f87352a1028d0203d465ba7c10671
5
5
  SHA512:
6
- metadata.gz: 57479ce6911600c434b4ae2d69e8e5d2e19e110885d77156b2980d346990392f2cd0c4605ddef84d1c6949c6653e959c27ce7dcd1545483ca48484e0f1458473
7
- data.tar.gz: fe84136981c67e4782df41f6d19eaa51f7ab6765aced5c0d10643eef55fb81bd316519011f1c879860d5018da734009f07f59e11deff92b6175f1447c740202c
6
+ metadata.gz: 2cc3a07fee17bf0e5c748a5a8440851a389ab521a02faaaca0db39f102b6147a6104769107f6b1b0b21ca8eb2b22d135eb6976092b0be9b7884fb6c192d700bb
7
+ data.tar.gz: e465732e3dd0ecb9dceefa82e6d1958a7461a521c45f2c3371bb310b77f94629a57df5635fd28c22c5af94d84acdafc946c95198468481ba5c4a34888ef4644f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # Changelog
2
2
 
3
+ * `1.1.1`: fixed an error when using private functions
3
4
  * `1.1.0`: dissociated error checking from function logic, and added some missing imports
4
5
  * `1.0.1`: fixed a lot of tiny bugs ([#8](https://github.com/HugoGiraudel/SassyStrings/pull/8))
5
6
  * `1.0.0`: initial commit
data/lib/SassyStrings.rb CHANGED
@@ -4,8 +4,8 @@ extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
4
4
  Compass::Frameworks.register("SassyStrings", :path => "#{File.dirname(__FILE__)}/..")
5
5
 
6
6
  module SassyStrings
7
- VERSION = "1.1.0"
8
- DATE = "2014-09-28"
7
+ VERSION = "1.1.1"
8
+ DATE = "2014-10-04"
9
9
  end
10
10
 
11
11
  # Sassy String Functions
@@ -18,7 +18,7 @@
18
18
  @for $i from 1 through length($elements) {
19
19
  $index: str-index($result, $breaker);
20
20
  @if $index {
21
- $result: str-slice($result, 1, $index - 1) + stringify(nth($elements, $i)) + str-slice($result, $index + str-length($breaker));
21
+ $result: str-slice($result, 1, $index - 1) + _ss-stringify(nth($elements, $i)) + str-slice($result, $index + str-length($breaker));
22
22
  }
23
23
  @else {
24
24
  @return $result;
@@ -26,4 +26,4 @@
26
26
  }
27
27
 
28
28
  @return $result;
29
- }
29
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: SassyStrings
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
  - Hugo Giraudel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-28 00:00:00.000000000 Z
11
+ date: 2014-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass