inline-css-html-converter 0.1.7 → 0.1.8

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: d0c559afbb78f2661bfcbf46d234ffcb3ff13bc3
4
- data.tar.gz: 51c213b4274a59ac9f478e8eefaa6e7a16f23662
3
+ metadata.gz: c2eaa9a3f1dc19a2bb452c36690c93ffaaf1e196
4
+ data.tar.gz: 377951f2ffbd36200ab2db6b7ef1159fcc8c4b41
5
5
  SHA512:
6
- metadata.gz: b239784ad9dbbf1733e28e30b6c891e8a5f64b0834adcf2bbc900f15c660f407d831db1d85687ef4a40d36a49ee5aa587c5327e5f5bff2842b23a94e21f55682
7
- data.tar.gz: 8f13ea2d8f9d578ae5c63b9d2c9fccff943b19f572d52951c0ed956bba209bbd2fd4c2de18146637c726efb0131ae189492de678e7087788b8d82ebcfa9de726
6
+ metadata.gz: 894f1bd64e44df4d103f5556e13abea056d3f0d78ce7237613a434a7eea944a04d671d16b801d02ff7ccb47383aec393dd40e647a742360b88782dc5f366af9d
7
+ data.tar.gz: ab6c1f24121c0703358a37750c111fe32e2ed837883773b11f7615e6fdda2bccce96272e68b7d0cbe1356ca886db920a94e8c0a847465404ba6e86e650f85ed5
@@ -0,0 +1,9 @@
1
+ ## MIT License
2
+
3
+ Copyright (c) 2016 Bennet Palluthe
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -2,7 +2,7 @@ Inline CSS HTML Converter
2
2
  ==
3
3
  [![Build Status](https://travis-ci.org/Garllon/inline-css-html-converter.svg?branch=master)](https://travis-ci.org/Garllon/inline-css-html-converter)
4
4
  [![Code Climate](https://codeclimate.com/github/Garllon/inline-css-html-converter.png)](https://codeclimate.com/github/Garllon/inline-css-html-converter)
5
- [![Gem Version](https://badge.fury.io/rb/inline-css-html-converter.png)](https://badge.fury.io/rb/inline-css-html-converter)
5
+ [![Gem Version](https://badge.fury.io/rb/inline-css-html-converter.svg)](https://badge.fury.io/rb/inline-css-html-converter)
6
6
 
7
7
  I use the MailChimpAPI
8
8
 
@@ -26,6 +26,12 @@ require 'inline-css-html-converter'
26
26
  InlineCssHtmlConverter::Worker.new(your_apikey, your_html).perform
27
27
  ```
28
28
 
29
- In Progress
29
+ ## License
30
+
31
+ InlineCssHtmlConverter is released under the [MIT License](http://www.opensource.org/licenses/MIT).
32
+
33
+ In Progress(obsoleted)
30
34
  ===
31
35
  At the moment i work on a version, which works with MailChimp 3.0.
36
+
37
+ MailChimp doesn't support this API endpoint any longer. :(
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "inline-css-html-converter"
3
- s.version = '0.1.7'
3
+ s.version = '0.1.8'
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
6
6
  s.required_ruby_version = '>= 2.2.2'
@@ -21,4 +21,5 @@ Gem::Specification.new do |s|
21
21
  s.summary = 'convert css style to inline html'
22
22
  s.description = "convert css style to inline html"
23
23
  s.homepage = 'https://github.com/Garllon/inline-css-html-converter/blob/master/README.md'
24
+ s.license = 'MIT'
24
25
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inline-css-html-converter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bennet Palluthe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-24 00:00:00.000000000 Z
11
+ date: 2016-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -82,6 +82,7 @@ files:
82
82
  - ".rspec"
83
83
  - ".travis.yml"
84
84
  - Gemfile
85
+ - LICENSE.md
85
86
  - README.md
86
87
  - Rakefile
87
88
  - inline-css-html-converter.gemspec
@@ -92,7 +93,8 @@ files:
92
93
  - spec/spec_helper.rb
93
94
  - spec/worker_spec.rb
94
95
  homepage: https://github.com/Garllon/inline-css-html-converter/blob/master/README.md
95
- licenses: []
96
+ licenses:
97
+ - MIT
96
98
  metadata: {}
97
99
  post_install_message:
98
100
  rdoc_options: []