sass-zero 1.0.15 → 1.0.16

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c5925adc6e996a6977ee2c549b616cf6a8468443a3b13cdc2c8cff1e01e86a6
4
- data.tar.gz: 77d7811259a53c6ee18776ccf10cc333dc735c7c585b23a6b3d81a10259347fb
3
+ metadata.gz: 776c9fc40ca0e6b68ff6ac295cd73a77549af43cf0847b2ee8975033570c07b4
4
+ data.tar.gz: 3e4a3125bd4b4a56d7bbb6c0168dd0a0eecaed705b534c8f22592fbdeafe4579
5
5
  SHA512:
6
- metadata.gz: bdef8d62a10e44347adbffef5fcc8358b58d326628c0976947e57ac8c5ab455c63082a1a8539f2b32f5957f8649796b4923442b6de4f2ba7b5d083a5d3ae0d97
7
- data.tar.gz: 0ba83b65d3365d43b5f8ab3b5dfde4df00d5ea6efb701c2e1de6ec286c0c0db9724b4b4436ddffe56eab6e7a0c6161ab4e04bce4f2864289dc633d46e8c3af76
6
+ metadata.gz: 9a8d4b5a131342c76c83e7bd4e13b1fa70496bdc9811603d133e015bccc8ec23e343c80be30099bd7b9dfe75d71da88a6824ff9a4d7bc1cdd3c8dc2ef092fe79
7
+ data.tar.gz: 24152dd48eb838f18ba51bc8f018eb5755c7e3763cc69a0e2bd0f28b55334f978c1ba19c34ea1ffeb100a6e6d7e5a16beb1242426b255dc4be02b829d1547a12
data/Gemfile CHANGED
@@ -4,3 +4,5 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
4
 
5
5
  # Specify your gem's dependencies in sass-zero.gemspec
6
6
  gemspec
7
+
8
+ gem "rake", "~> 13.0"
data/Gemfile.lock ADDED
@@ -0,0 +1,19 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ sass-zero (1.0.16)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ rake (13.0.6)
10
+
11
+ PLATFORMS
12
+ x86_64-darwin-21
13
+
14
+ DEPENDENCIES
15
+ rake (~> 13.0)
16
+ sass-zero!
17
+
18
+ BUNDLED WITH
19
+ 2.3.9
data/README.md CHANGED
@@ -118,6 +118,10 @@ Create some stylesheet using [BEM](http://getbem.com/naming) and [SASS-ZERO Vari
118
118
  - [Shape UP](https://basecamp.com/shapeup)
119
119
  - [Boxicons](https://boxicons.com)
120
120
 
121
+ ## Development
122
+
123
+ To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
124
+
121
125
  ## License
122
126
 
123
127
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ task default: %i[]
@@ -20,7 +20,7 @@ $h-3-6: 50%;
20
20
  $h-4-6: 66.666667%;
21
21
  $h-5-6: 83.333333%;
22
22
  $h-full: 100%;
23
- $h-screen: 100vw;
23
+ $h-screen: 100vh;
24
24
  $h-min: min-content;
25
25
  $h-max: max-content;
26
26
  $h-fit: fit-content;
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module Zero
3
- VERSION = "1.0.15"
3
+ VERSION = "1.0.16"
4
4
  end
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sass-zero",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "A CSS framework for rapid UI development based on tailwindcss, miligram and BEM.",
5
5
  "homepage": "https://github.com/lazaronixon/sass-zero",
6
6
  "repository": "lazaronixon/sass-zero",
data/sass-zero.gemspec CHANGED
@@ -1,7 +1,4 @@
1
-
2
- lib = File.expand_path("../lib", __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "sass_zero/version"
1
+ require_relative "lib/sass_zero/version"
5
2
 
6
3
  Gem::Specification.new do |spec|
7
4
  spec.name = "sass-zero"
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.15
4
+ version: 1.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - lazaronixon
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-14 00:00:00.000000000 Z
11
+ date: 2022-04-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description:
13
+ description:
14
14
  email:
15
15
  - lazaronixon@hotmail.com
16
16
  executables: []
@@ -21,7 +21,9 @@ files:
21
21
  - ".gitignore"
22
22
  - Example.html
23
23
  - Gemfile
24
+ - Gemfile.lock
24
25
  - README.md
26
+ - Rakefile
25
27
  - app/assets/stylesheets/sass-zero/base.scss
26
28
  - app/assets/stylesheets/sass-zero/base/preflight.scss
27
29
  - app/assets/stylesheets/sass-zero/breadboard.scss
@@ -63,7 +65,7 @@ homepage: http://github.com/lazaronixon/sass-zero
63
65
  licenses:
64
66
  - MIT
65
67
  metadata: {}
66
- post_install_message:
68
+ post_install_message:
67
69
  rdoc_options: []
68
70
  require_paths:
69
71
  - lib
@@ -78,8 +80,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
78
80
  - !ruby/object:Gem::Version
79
81
  version: '0'
80
82
  requirements: []
81
- rubygems_version: 3.1.4
82
- signing_key:
83
+ rubygems_version: 3.3.7
84
+ signing_key:
83
85
  specification_version: 4
84
86
  summary: A CSS framework for rapid UI development based on tailwindcss, miligram and
85
87
  BEM.