sass-timing 1.0.0

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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/SassTiming.rb +14 -0
  3. metadata +58 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ce7022b778963e92ad2cee455f3929fcba360656
4
+ data.tar.gz: 81d150854bae7c042505b5a63989b58826d4040c
5
+ SHA512:
6
+ metadata.gz: a1c335c18af8daaef4dbf4dc8b2280b5e0397d733ae94e58fc72367a5935bfcb6f9b2d470e12fcac0a5a6f96976dc8ab22a6df82205037389e10fc71e08606af
7
+ data.tar.gz: a0214ac518f76fedb912a5c689cf8b04ccfd59cf6c51d8021c4d87a8cb51c4fd29918799a7083f01c04262cbd1940db289f59bba6e47609ea4afd084d844d52e
data/lib/SassTiming.rb ADDED
@@ -0,0 +1,14 @@
1
+ require 'compass'
2
+
3
+ module Sass::Script::Functions
4
+ def timestamp()
5
+ return Sass::Script::String.new(Time.now.to_s)
6
+ end
7
+ end
8
+
9
+ module SassTiming
10
+
11
+ VERSION = "1.0"
12
+ DATE = "2014-08-13"
13
+
14
+ end
metadata ADDED
@@ -0,0 +1,58 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sass-timing
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Micah Godbolt
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-12-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: compass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0.12'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0.12'
27
+ description: ''
28
+ email: micahgodbolt@gmail.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - lib/SassTiming.rb
34
+ homepage: http://www.github.com/micahgodbolt/
35
+ licenses:
36
+ - MIT
37
+ metadata: {}
38
+ post_install_message:
39
+ rdoc_options: []
40
+ require_paths:
41
+ - lib
42
+ required_ruby_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ required_rubygems_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ requirements: []
53
+ rubyforge_project:
54
+ rubygems_version: 2.2.2
55
+ signing_key:
56
+ specification_version: 4
57
+ summary: A sass gem to help track time
58
+ test_files: []