parse-css 1.0.0 → 1.0.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
  SHA256:
3
- metadata.gz: 65c805a944d8d10b13a41d955bc4f06231bded1a436ca09942484872eeae2952
4
- data.tar.gz: e3c85fd4f482b45f3cd29c95b4dccec5a1b61e0663d9106677c54b311ba8a732
3
+ metadata.gz: 33ef606a990bf464d5311c1132468101ff26741b5899db61231355f58abe4d17
4
+ data.tar.gz: fc5d1aa8af2af9318fb63df5a9df89db4e317bf5deacc502b573a96205525672
5
5
  SHA512:
6
- metadata.gz: 1a4742ed47acf9426d3c989f09b9b7fdee689fe914d34b387f67caed0a3ec919514021b197516389d89d07de363ab77143e92e97c89944d29d823a6348b2cae4
7
- data.tar.gz: 014c990d7d981bb9b2d91972003a96ebb11743ccda4098e4538c843d9a2335d73099496bce2f4750cb26b33afd3cffed995c7b167c6d321e6909c2dc78baf6bd
6
+ metadata.gz: 3c8b15df41842db2a91b4b73b1328f4c53cd105d9639e9c4248010d4c99269d6ba3113958e5cda2dc25de718c41c4aaa6909783edd84fbf58498b6692f86daef
7
+ data.tar.gz: fc8b7b87bd3dc2260ac2764b7e409557bf288cc9cf687e0088f89fa1f9822cc9e96f3bd92c96b1336b6634c1989dab5fdb3094c500ea9644c37fb09d5b8bb797
data/CHANGELOG.md CHANGED
@@ -1,2 +1,5 @@
1
+ # 1.0.1
2
+ * Include the vendor/ directory in the published gem.
3
+
1
4
  # 1.0.0
2
5
  * Birthday!
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ParseCSS
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
data/parse-css.gemspec CHANGED
@@ -14,5 +14,5 @@ Gem::Specification.new do |s|
14
14
 
15
15
  s.add_dependency "mini_racer", "~> 0.19"
16
16
 
17
- s.files = Dir["{lib,test}/**/*", "Gemfile", "LICENSE", "CHANGELOG.md", "README.md", "Rakefile", "parse-css.gemspec"]
17
+ s.files = Dir["{lib,test,vendor}/**/*", "Gemfile", "LICENSE", "CHANGELOG.md", "README.md", "Rakefile", "parse-css.gemspec"]
18
18
  end