sass-prof 0.1.0 → 0.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: f8c7227a6056e4190559289cce3732ac60bd1e77
4
- data.tar.gz: 7fd772926246efbb3fabd0860e5ab27029bb3a87
3
+ metadata.gz: 342fc0dba26d7c663ad524ffd480330bc65f833d
4
+ data.tar.gz: b4387614c2082c05b60a41da37b7480d3fca57da
5
5
  SHA512:
6
- metadata.gz: 0b0e1399f9afb14770220663071b66639bc3dc1d1971d6fe5fbb43b817eec7bb19161d86a5895decef3d5abc75f08bd767e253bbd9e8f24744bf4a2eef53fad6
7
- data.tar.gz: 2e69778738c3402045b91e0c652059f6f8277fc9d2a963eb777bf6f757776d50b0dcbabd65891c9d370a072bae815222d25c8aa396857a3f4a9c2cd0c864dd48
6
+ metadata.gz: 15bd5e8088121c3b6d6d64976c7b5a73c470a5f1209469e046f36600aedd15445d331546d40f8dcd3400e7ef5f4dfe9a37651bae01a0a466aee5557dc6f4acc9
7
+ data.tar.gz: e1af4c6e5f38ac0609ef7914dfca03686ae1cfbd3af3d7856e6d5adb42e70edaaa8dd32ad69116c8fc719c65791cf99f564aa8083c85778634376a32dff2f8ff
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Gem](https://img.shields.io/gem/v/sass-prof.svg?style=flat-square)](https://rubygems.org/gems/sass-prof)
4
4
 
5
- Sass Prof is a code profiler for Sass. For each function, Sass Prof will show the execution time for the function, which file called it and what arguments were given when the function was called.
5
+ Sass Prof is a code profiler for [Sass](https://github.com/sass/sass). For each function, Sass Prof will show the execution time for the function, which file called it and what arguments were given when the function was called.
6
6
 
7
7
  ## Requirements
8
8
 
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module Prof
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
data/lib/sass/prof.rb CHANGED
@@ -64,7 +64,7 @@ module Sass
64
64
  end
65
65
 
66
66
  def fn_source
67
- return colorize("unknown file", :red).ljust 80 unless env
67
+ return colorize("unknown file", :red) unless env
68
68
 
69
69
  orig_filename = env.options.fetch :original_filename, "unknown file"
70
70
  filename = env.options.fetch :filename, "unknown file"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-prof
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ezekg