actionmailer-textgiri 0.1.2 → 0.2

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: 971e172d5a2915165f210f86c8a2e699e04e7345
4
- data.tar.gz: 0112853482c9a489eeacf62d4b4bae9a360a30be
3
+ metadata.gz: 00553d141204ed223e3667587ecbe791d6d9f594
4
+ data.tar.gz: f68b5677f32bc904a522c7626230c1c909ec46fe
5
5
  SHA512:
6
- metadata.gz: 38c3e6504d7e1ecdb52dce6de242fa8f0a5ccbac4decacb28cd0d597ff3ad831de839059ea361143da99b47bfb7a44eac317d759f4639043ac29fd775cad690c
7
- data.tar.gz: e2cc90b0a9a0ef76d0fc0eab9140163a3cb9bf9ba1c9c89a27c7311dc4337098c61070029d25cf452b8bdf9421379a5ececaa7cefff746755fb74afe0da78457
6
+ metadata.gz: 7d9c66167c8e895c2b0412c559571b1ed9d78ac1f46e73577fc259082e4eecfb73ae1bdeb3ea1837128f9e83b7081e7431652f060e491b159d7a5add10884d55
7
+ data.tar.gz: 0bb7be25b7b7e4cb86de6e7a87e29f1c3da8aa58934c1595e02231a9a377ca3668c2b68351dd7ae3a3753252eced0d7773e1011205a7e31080d015685d5a4a32
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- actionmailer-textgiri (0.1.2)
4
+ actionmailer-textgiri (0.2)
5
5
  actionmailer
6
6
  htmlentities
7
7
 
@@ -1,9 +1,9 @@
1
1
  $LOAD_PATH.push File.expand_path('../lib', __FILE__)
2
- require 'actionmailer-text/version'
2
+ require 'actionmailer-textgiri/version'
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = 'actionmailer-textgiri'
6
- s.version = ActionMailer::Text::VERSION
6
+ s.version = ActionMailer::Textgiri::VERSION
7
7
  s.authors = ['Daniel Doubrovkine', 'Cameron Craig', 'Simplybuilt']
8
8
  s.email = 'sentrathis96@gmail.com'
9
9
  s.platform = Gem::Platform::RUBY
@@ -1,7 +1,7 @@
1
1
  require 'nokogiri'
2
2
 
3
3
  module ActionMailer
4
- module Text
4
+ module Textgiri
5
5
  module HtmlToPlainText
6
6
  def convert_to_text(html_body)
7
7
  body_parts = []
@@ -1,5 +1,5 @@
1
1
  module ActionMailer
2
- module Text
2
+ module Textgiri
3
3
  def self.included(klass)
4
4
  klass.class_eval do
5
5
  include ActionMailer::Text::HtmlToPlainText
@@ -0,0 +1,5 @@
1
+ module ActionMailer
2
+ module Textgiri
3
+ VERSION = '0.2'
4
+ end
5
+ end
@@ -0,0 +1,4 @@
1
+ require 'action_mailer'
2
+ require 'actionmailer-textgiri/version'
3
+ require 'actionmailer-textgiri/html_to_plain_text'
4
+ require 'actionmailer-textgiri/text'
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmailer-textgiri
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: '0.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Doubrovkine
@@ -54,11 +54,12 @@ files:
54
54
  - README.md
55
55
  - Rakefile
56
56
  - actionmailer-textgiri.gemspec
57
- - lib/actionmailer-text.rb
58
- - lib/actionmailer-text/html_to_plain_text.rb
59
- - lib/actionmailer-text/text.rb
60
- - lib/actionmailer-text/version.rb
61
- - lib/actionmailer_text.rb
57
+ - lib/actionmailer-textgiri.rb
58
+ - lib/actionmailer-textgiri/html_to_plain_text.rb
59
+ - lib/actionmailer-textgiri/text.rb
60
+ - lib/actionmailer-textgiri/version.rb
61
+ - lib/actionmailer_textgiri.rb
62
+ - pkg/actionmailer-textgiri-0.1.2.gem
62
63
  - spec/actionmailer-text/html_to_plain_text_spec.rb
63
64
  - spec/actionmailer-text/multipart_spec.rb
64
65
  - spec/actionmailer-text/version_spec.rb
@@ -1,5 +0,0 @@
1
- module ActionMailer
2
- module Text
3
- VERSION = '0.1.2'
4
- end
5
- end
@@ -1,4 +0,0 @@
1
- require 'action_mailer'
2
- require 'actionmailer-text/version'
3
- require 'actionmailer-text/html_to_plain_text'
4
- require 'actionmailer-text/text'