tamem-scss 1.0.3 → 1.0.4

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: 83693eeb1f2c4f690fc5378b55d6e9a030abd130
4
- data.tar.gz: 42f4836a49abcf3e3b521de274152408814f6017
3
+ metadata.gz: ea35f243a37e04614ecf67d0cd24fe1f5266ba20
4
+ data.tar.gz: 6c8669faab762ead11355356c753755755038d6f
5
5
  SHA512:
6
- metadata.gz: 4eeb66fb616cf4d1caf24df68f17bc1e6d954ec8a894b00b8faa0497742f1bd825377cab8f448b0dee92b2886ccd4147e32e5e0f4c05caa75ca600624fcaf468
7
- data.tar.gz: 6c2701f077a9d01d11dba0b2c2d3ca800bee9760b410a361c7e0382192ab99606f980ac1ecfd7060dc40eda3de138687f1e7233b7cb5efa1adc59a80ad272af0
6
+ metadata.gz: dffc41accaef58b83102273b70d28a4ca095710dd48a1a68d258a6523c1b86cc72889f2ee117cf946f50ba97d420614f0a8f2e9a296e136cc5ccf2109337c259
7
+ data.tar.gz: f1f23c6acf6be5d8c54118bbc6830ab328046ce34d6403e629dae384eab5e6347c70d7d75923f9e58ff13671a523ee8c60043f56189cfa1ed59e1b2e67326b59
data/README.md CHANGED
@@ -1,4 +1,9 @@
1
1
  # tamem-scss
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/tamem-scss.svg)](https://badge.fury.io/rb/tamem-scss)
4
+ [![npm version](https://badge.fury.io/js/tamem-scss.svg)](https://badge.fury.io/js/tamem-scss)
5
+ [![Bower version](https://badge.fury.io/bo/tamem-scss.svg)](https://badge.fury.io/bo/tamem-scss)
6
+
2
7
  Tamem-scss is cross browser helper for sass. You can enjoy coding without create vendor prefix :D
3
8
 
4
9
  ## Installation
@@ -6,6 +11,8 @@ Tamem-scss is cross browser helper for sass. You can enjoy coding without create
6
11
 
7
12
  [Npm](https://www.npmjs.com/package/tamem-scss) `npm install tamem-scss --save-dev`
8
13
 
14
+ [Gem](https://rubygems.org/gems/tamem-scss) `gem install tamem-scss`
15
+
9
16
  Or you can direct download from this repo and extract into your sass project.
10
17
 
11
18
  Check the [documentation](https://fesuydev.github.io/tamem-scss/)
data/bower.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "Fesuy <fesuydev@gmail.com>"
6
6
  ],
7
7
  "description": "Tamem-scss is a cross browser helper for sass. You can enjoy coding without create vendor prefix :D",
8
- "main": "_tamem.scss",
8
+ "main": "sass/_tamem.scss",
9
9
  "keywords": [
10
10
  "tamem",
11
11
  "scss",
@@ -20,6 +20,8 @@
20
20
  "node_modules",
21
21
  "bower_components",
22
22
  "test",
23
- "tests"
23
+ "tests",
24
+ "lib",
25
+ "pkg"
24
26
  ]
25
27
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tamem-scss",
3
- "version": "1.0.1",
3
+ "version": "1.0.4",
4
4
  "description": "Tamem-scss is a cross browser helper for sass. You can enjoy coding without create vendor prefix :D",
5
5
  "main": "_tamem.scss",
6
6
  "style": "_tamem.scss",
@@ -393,7 +393,7 @@
393
393
  /// box-shadow: 0px 2px 4px rgba(0,0,0,0.4);
394
394
  /// }
395
395
  ///
396
- @mixin box-shadow($value) {
396
+ @mixin box-shadow($value...) {
397
397
  -webkit-box-shadow: $value; // Chrome 4.0, Safari 3.1
398
398
  -moz-box-shadow: $value; // Firefox 3.5
399
399
  box-shadow: $value;
@@ -18,7 +18,7 @@
18
18
  /// transform: translate(50%, 50%);
19
19
  /// }
20
20
  ///
21
- @mixin transform($value) {
21
+ @mixin transform($value...) {
22
22
  -webkit-transform: $value;
23
23
  -moz-transform: $value;
24
24
  -ms-transform: $value;
@@ -17,7 +17,7 @@
17
17
  /// transition: width ease-in .2s;
18
18
  /// }
19
19
  ///
20
- @mixin transition($value) {
20
+ @mixin transition($value...) {
21
21
  -webkit-transition: $value;
22
22
  -moz-transition: $value;
23
23
  -o-transition: $value;
@@ -1,11 +1,10 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'tamem/scss/version'
5
4
 
6
5
  Gem::Specification.new do |spec|
7
6
  spec.name = "tamem-scss"
8
- spec.version = "1.0.3"
7
+ spec.version = "1.0.4"
9
8
  spec.authors = ["Fesuy"]
10
9
  spec.email = ["fesuydev@gmail.com"]
11
10
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tamem-scss
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fesuy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-07 00:00:00.000000000 Z
11
+ date: 2017-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -65,7 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
65
65
  version: '0'
66
66
  requirements: []
67
67
  rubyforge_project:
68
- rubygems_version: 2.2.2
68
+ rubygems_version: 2.6.8
69
69
  signing_key:
70
70
  specification_version: 4
71
71
  summary: Sass helper for cross browser