slim2html 0.3.1 → 0.3.2

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: 697f2fac2d15b095b8a3282019860fc6a92248b0
4
- data.tar.gz: 4a3eee75df0b9d9792f2e0405361d52fa224fcaf
3
+ metadata.gz: 0ed5e637387e290b4f6c7786288e7072041307c7
4
+ data.tar.gz: 79256357ef583b7b72cd7c5d1568db07d670c2f7
5
5
  SHA512:
6
- metadata.gz: b167fa3da454d47ad9398be5ba8467219a6675437bde6d15979210bb477e51f2fdd2976716c3c0741914534ae6eb2b6a52d9445a9ef300cdde367bdd63977290
7
- data.tar.gz: 653cadcaeec41eace2f089202e52ce6edc0d8afe29c180f7f7e2410e8423caf82fd80cf515c7216be222b11d4f71b1c7418ef17ba967543815b6c82752e985c6
6
+ metadata.gz: c40767020d200ed5e7399e9369f4c642090b61698d65214f12cbcdbd3a4834bc569052eca6fae1494891037dfd734529d6d4919020fb4b75606c87558a0737d5
7
+ data.tar.gz: 709259620f6e6a9b0135d270aa9856743927dc5088bc0388c645a35cd63cf36d409c69753030f5d00fab885063a9083ebbbd1ca5ba8d1b2b6afecdfb9d84f726
data/bin/slim2html CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'slim2html'
3
- puts Slim2html.convert!(ARGV)
3
+ Slim2html.convert!(ARGV)
@@ -1,3 +1,3 @@
1
1
  module Slim2html
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slim2html
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - xioota
@@ -80,8 +80,6 @@ files:
80
80
  - LICENSE.txt
81
81
  - README.md
82
82
  - Rakefile
83
- - bin/console
84
- - bin/setup
85
83
  - bin/slim2html
86
84
  - lib/slim2html.rb
87
85
  - lib/slim2html/version.rb
@@ -111,3 +109,4 @@ signing_key:
111
109
  specification_version: 4
112
110
  summary: Slim to HTML convertor
113
111
  test_files: []
112
+ has_rdoc:
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "slim2html"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here