getinline 0.1.0
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 +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/Gemfile +11 -0
- data/LICENSE.txt +21 -0
- data/README.md +46 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/exe/getinline +49 -0
- data/getinline.gemspec +25 -0
- data/lib/getinline/transformer.rb +32 -0
- data/lib/getinline/version.rb +3 -0
- data/lib/getinline.rb +2 -0
- metadata +102 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 09a05db327f32692a0b317922c4ba8ccf78617d0
|
4
|
+
data.tar.gz: 1dbf186eefa0d144cd263bbaedd5e50f232b6288
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: eff7dd871a48fd166b4a0f9e9f1d3f546462e4d62579ffa4623ac76026561b2d579cb2896b6341f8355453222cce11c6856dc42cdcf5daa11814b95cbcb18a01
|
7
|
+
data.tar.gz: 27b594ff4cbaffa3df0d7f62938cc65135065b886c05e7e4ae9834500784e31f2485ab3bf90a2dc37db8cc86b908814d3f3ebeda7c3df6074528571e39839ed7
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Jellyvision
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# Getinline
|
2
|
+
|
3
|
+
Inlines CSS styles for HTML email development and preserves ERB tags.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'getinline'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install getinline
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
`getinline` can be invoked in any of the following ways:
|
24
|
+
|
25
|
+
```shell
|
26
|
+
getinline file_name
|
27
|
+
getinline < file_name
|
28
|
+
cat file_name | getinline
|
29
|
+
```
|
30
|
+
|
31
|
+
Output is printed to stdout.
|
32
|
+
|
33
|
+
## Development
|
34
|
+
|
35
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
36
|
+
|
37
|
+
To install this gem onto your local machine, run `bundle exec rake install`. 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 tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
38
|
+
|
39
|
+
## Contributing
|
40
|
+
|
41
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/jellyvision/getinline.
|
42
|
+
|
43
|
+
|
44
|
+
## License
|
45
|
+
|
46
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "getinline"
|
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
ADDED
data/exe/getinline
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
|
4
|
+
|
5
|
+
require 'getinline'
|
6
|
+
require 'optparse'
|
7
|
+
|
8
|
+
options = {}
|
9
|
+
|
10
|
+
option_parser = OptionParser.new do |opts|
|
11
|
+
executable_name = File.basename($PROGRAM_NAME)
|
12
|
+
opts.banner = "
|
13
|
+
getinline inlines CSS styles for HTML email development
|
14
|
+
|
15
|
+
Usage:
|
16
|
+
#{executable_name} file_name
|
17
|
+
#{executable_name} < file_name
|
18
|
+
cat file_name | #{executable_name}
|
19
|
+
"
|
20
|
+
|
21
|
+
opts.on('-h', '--help', 'Print usage instructions') do
|
22
|
+
options[:show_help] = true
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
begin
|
27
|
+
option_parser.parse!
|
28
|
+
rescue OptionParser::InvalidOption => error
|
29
|
+
abort "Getinline doesn't recognize that #{error}"
|
30
|
+
rescue OptionParser::AmbiguousOption => error
|
31
|
+
abort "That's an #{error}"
|
32
|
+
end
|
33
|
+
|
34
|
+
if options[:show_help] == true
|
35
|
+
puts option_parser.banner
|
36
|
+
exit
|
37
|
+
end
|
38
|
+
|
39
|
+
def transform (file_contents)
|
40
|
+
transformer = Getinline::Transformer.new(file_contents)
|
41
|
+
puts transformer.transform
|
42
|
+
end
|
43
|
+
|
44
|
+
if ARGF.filename != '-' or (not STDIN.tty? and not STDIN.closed?)
|
45
|
+
transform ARGF.read
|
46
|
+
else
|
47
|
+
puts option_parser.banner
|
48
|
+
exit
|
49
|
+
end
|
data/getinline.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'getinline/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "getinline"
|
8
|
+
spec.version = Getinline::VERSION
|
9
|
+
spec.authors = ["Jeremy Kahn"]
|
10
|
+
spec.email = ["jeremy@jellyvision.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Inlines CSS styles for HTML email development}
|
13
|
+
spec.description = %q{Inlines CSS styles for HTML email development and preserves ERB tags}
|
14
|
+
spec.homepage = "https://github.com/jellyvision/getinline"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
+
spec.bindir = "exe"
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
24
|
+
spec.add_development_dependency "rspec"
|
25
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require "premailer"
|
2
|
+
|
3
|
+
TOKEN = "@TOKEN"
|
4
|
+
TOKENIZED_ERB_FILE_NAME = "/tmp/tokenized.erb"
|
5
|
+
|
6
|
+
module Getinline
|
7
|
+
class Transformer
|
8
|
+
def initialize (raw_text)
|
9
|
+
@raw_text = raw_text
|
10
|
+
end
|
11
|
+
|
12
|
+
def transform
|
13
|
+
matches = @raw_text.scan(/<%.+?%>/)
|
14
|
+
tokenized_text = @raw_text.dup
|
15
|
+
matches.each do |match|
|
16
|
+
tokenized_text.sub!(match, TOKEN)
|
17
|
+
end
|
18
|
+
|
19
|
+
File.write(TOKENIZED_ERB_FILE_NAME, tokenized_text)
|
20
|
+
|
21
|
+
@premailer = Premailer.new(TOKENIZED_ERB_FILE_NAME, :warn_level => Premailer::Warnings::SAFE)
|
22
|
+
premailed_tokenized_text = @premailer.to_inline_css
|
23
|
+
premailed_text = premailed_tokenized_text.dup
|
24
|
+
|
25
|
+
matches.each do |match|
|
26
|
+
premailed_text.sub!(TOKEN, match)
|
27
|
+
end
|
28
|
+
|
29
|
+
premailed_text
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
data/lib/getinline.rb
ADDED
metadata
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: getinline
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jeremy Kahn
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-12-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.10'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.10'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: Inlines CSS styles for HTML email development and preserves ERB tags
|
56
|
+
email:
|
57
|
+
- jeremy@jellyvision.com
|
58
|
+
executables:
|
59
|
+
- getinline
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- ".gitignore"
|
64
|
+
- ".rspec"
|
65
|
+
- ".travis.yml"
|
66
|
+
- Gemfile
|
67
|
+
- LICENSE.txt
|
68
|
+
- README.md
|
69
|
+
- Rakefile
|
70
|
+
- bin/console
|
71
|
+
- bin/setup
|
72
|
+
- exe/getinline
|
73
|
+
- getinline.gemspec
|
74
|
+
- lib/getinline.rb
|
75
|
+
- lib/getinline/transformer.rb
|
76
|
+
- lib/getinline/version.rb
|
77
|
+
homepage: https://github.com/jellyvision/getinline
|
78
|
+
licenses:
|
79
|
+
- MIT
|
80
|
+
metadata: {}
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
requirements: []
|
96
|
+
rubyforge_project:
|
97
|
+
rubygems_version: 2.4.5.1
|
98
|
+
signing_key:
|
99
|
+
specification_version: 4
|
100
|
+
summary: Inlines CSS styles for HTML email development
|
101
|
+
test_files: []
|
102
|
+
has_rdoc:
|