koara-html 0.9.0 → 0.12.0

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
  SHA1:
3
- metadata.gz: 2daab273db0f5c73aceb653b38791f2dae6e268b
4
- data.tar.gz: 5d365037c6e3aab4be193fd10bba0476c348e7e8
3
+ metadata.gz: 03165f0aca539beb2051d1b1df6a4f43864f1d5d
4
+ data.tar.gz: 51ab7ad99d06f8f2bb38db38784ff845a223823d
5
5
  SHA512:
6
- metadata.gz: 991b54240e34fafc40e2c363b8e505f90d4ee18d707811c155732bcff144fefe36f4c0e9d2bbe53293633376465bf08724a0e1e930038bb0c2250c059f6afaf6
7
- data.tar.gz: da6cb46e4e637c6972a000bd5185368c577a4b1c6a6ef052fcd2d308ad57bbed7f832c80b8badb477990d4fb9e7d27a8e86cb0caf7ff090c0f4059d3c842ebe9
6
+ metadata.gz: d5028fd0cbec0bae20aaf798077e71ce614b8a4ca2c58875540ef331626a2d46e5297e8734697a582eae8b823087383b13eafb8f0b0f3cb490ce271b71b1661f
7
+ data.tar.gz: 03d407cd978410d5ef30ddfea7789632d1546a19c6adb007e2598a6c6652898a7ab2ccb0cd4634f4b0abf4667d45409ad17a31c1db95530170d3714e3e874839
data/Gemfile CHANGED
@@ -1,5 +1,5 @@
1
- source "https://rubygems.org"
1
+ source "https://rubygems.org/"
2
2
 
3
- gem 'koara', '= 0.9.0'
3
+ gem "koara", "~>0.12.0"
4
4
 
5
5
  gemspec
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Build Status](https://img.shields.io/travis/koara/koara-rb-html.svg)](https://travis-ci.org/koara/koara-rb-html)
4
4
  [![Coverage Status](https://img.shields.io/coveralls/koara/koara-rb-html.svg)](https://coveralls.io/github/koara/koara-rb-html?branch=master)
5
- [![Gem](https://img.shields.io/gem/v/koara-html.svg?maxAge=2592000)]()
5
+ [![Gem](https://img.shields.io/gem/v/koara-html.svg?maxAge=2592000)](https://rubygems.org/gems/koara-html)
6
6
  [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/koara/koara-rb-html/blob/master/LICENSE)
7
7
 
8
8
  # Koara-rb-html
data/Rakefile CHANGED
@@ -1,3 +1,6 @@
1
+ require 'bundler'
2
+ Bundler.setup
3
+
1
4
  task :default => 'test:unit'
2
5
 
3
6
  require 'rake/testtask'
@@ -2,9 +2,13 @@
2
2
  lib = File.expand_path("../lib", __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
+ require 'koara/html'
6
+
5
7
  Gem::Specification.new do |s|
6
8
  s.name = 'koara-html'
7
- s.version = '0.9.0'
9
+ s.version = Koara::Html::VERSION
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+
8
12
  s.authors = ['Andy Van Den Heuvel']
9
13
  s.email = ['andy.vandenheuvel@gmail.com']
10
14
  s.summary = 'Koara to HTML parser written in Ruby'
@@ -3,6 +3,6 @@ require 'koara/html/html5renderer'
3
3
 
4
4
  module Koara
5
5
  module Html
6
- VERSION = "0.9.0"
6
+ VERSION = "0.12.0"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: koara-html
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Van Den Heuvel