--- !ruby/object:Gem::Specification
name: html_email_creator
version: !ruby/object:Gem::Version
  version: 1.0.18
  prerelease: 
platform: ruby
authors:
- Pekka Mattila
autorequire: 
bindir: bin
cert_chain: []
date: 2012-12-03 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
  name: commander
  requirement: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: 4.0.6
  type: :runtime
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: 4.0.6
- !ruby/object:Gem::Dependency
  name: kramdown
  requirement: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: 0.13.3
  type: :runtime
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: 0.13.3
- !ruby/object:Gem::Dependency
  name: liquid
  requirement: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: 2.3.0
  type: :runtime
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: 2.3.0
- !ruby/object:Gem::Dependency
  name: nokogiri
  requirement: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: 1.5.0
  type: :runtime
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: 1.5.0
- !ruby/object:Gem::Dependency
  name: inline-style
  requirement: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: 0.5.0
  type: :runtime
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: 0.5.0
- !ruby/object:Gem::Dependency
  name: rspec
  requirement: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
  type: :development
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: '0'
- !ruby/object:Gem::Dependency
  name: rake
  requirement: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: 0.9.2
  type: :development
  prerelease: false
  version_requirements: !ruby/object:Gem::Requirement
    none: false
    requirements:
    - - ! '>='
      - !ruby/object:Gem::Version
        version: 0.9.2
description: An easy way to create HTML and plain text emails using Markdown markup
  and Liquid layouts.
email: pekka.mattila@gmail.com
executables:
- html_email_creator
extensions: []
extra_rdoc_files: []
files:
- .gitignore
- Gemfile
- Gemfile.lock
- README.markdown
- Rakefile
- bin/html_email_creator
- html_email_creator.gemspec
- lib/html_email_creator.rb
- lib/html_email_creator/callbacks.rb
- lib/html_email_creator/email.rb
- lib/html_email_creator/email_creator.rb
- lib/html_email_creator/email_version.rb
- lib/html_email_creator/extensions.rb
- lib/html_email_creator/filters.rb
- lib/html_email_creator/formatter.rb
- lib/html_email_creator/formatters/formatter.rb
- lib/html_email_creator/formatters/html_email.rb
- lib/html_email_creator/formatters/markdown.rb
- lib/html_email_creator/formatters/plain_text_email.rb
- lib/html_email_creator/formatters/unknown_formatter.rb
- lib/html_email_creator/helper.rb
- lib/html_email_creator/information.rb
- lib/html_email_creator/layout.rb
- lib/html_email_creator/processor.rb
- lib/html_email_creator/settings.rb
- lib/html_email_creator/tags/include_tag.rb
- lib/html_email_creator/version.rb
- spec/fixtures/complex_with_config/Emails/Aweber/.html_config.yaml
- spec/fixtures/complex_with_config/Emails/Aweber/polite_email.yaml
- spec/fixtures/complex_with_config/Emails/Mailchimp/.html_config.yaml
- spec/fixtures/complex_with_config/Emails/Mailchimp/polite_email.yaml
- spec/fixtures/complex_with_config/Includes/Emails/love.md
- spec/fixtures/complex_with_config/Includes/Footers/polite.md
- spec/fixtures/complex_with_config/Layouts/.keep
- spec/fixtures/complex_with_config/Layouts/basic.liquid
- spec/fixtures/complex_with_config/Output/.keep
- spec/fixtures/default_config/Emails/Newsletter/.keep
- spec/fixtures/default_config/Layouts/.keep
- spec/fixtures/default_config/Output/.keep
- spec/fixtures/with_config/.html_config.yaml
- spec/fixtures/with_config/Emails/first_email.yaml
- spec/fixtures/with_config/Includes/Emails/barfoo.md
- spec/fixtures/with_config/Includes/Emails/foobar.md
- spec/fixtures/with_config/Includes/Quotes/henry_ford.txt
- spec/fixtures/with_config/Layouts/.keep
- spec/fixtures/with_config/Layouts/simple.liquid
- spec/fixtures/with_config/Output/.keep
- spec/fixtures/with_mailchimp_config/.html_config.yaml
- spec/fixtures/with_mailchimp_config/Emails/first_email.yaml
- spec/fixtures/with_mailchimp_config/Includes/Emails/barfoo.md
- spec/fixtures/with_mailchimp_config/Includes/Emails/foobar.md
- spec/fixtures/with_mailchimp_config/Includes/Quotes/henry_ford.txt
- spec/fixtures/with_mailchimp_config/Layouts/.keep
- spec/fixtures/with_mailchimp_config/Layouts/simple.liquid
- spec/fixtures/with_mailchimp_config/Output/.keep
- spec/html_email_creator/email_creator_spec.rb
- spec/html_email_creator/email_spec.rb
- spec/html_email_creator/formatter_spec.rb
- spec/html_email_creator/layout_spec.rb
- spec/html_email_creator/processor_spec.rb
- spec/html_email_creator/settings_spec.rb
- spec/html_email_creator/tags/include_tag_spec.rb
- spec/spec_helper.rb
homepage: https://github.com/pekkaj/HTML-Email-Creator
licenses: []
post_install_message: 
rdoc_options: []
require_paths:
- lib
required_ruby_version: !ruby/object:Gem::Requirement
  none: false
  requirements:
  - - ! '>='
    - !ruby/object:Gem::Version
      version: 1.9.2
required_rubygems_version: !ruby/object:Gem::Requirement
  none: false
  requirements:
  - - ! '>='
    - !ruby/object:Gem::Version
      version: '0'
      segments:
      - 0
      hash: -3527931030771086284
requirements: []
rubyforge_project: html_email_creator
rubygems_version: 1.8.23
signing_key: 
specification_version: 3
summary: An easy way to create HTML and plain text emails!
test_files:
- spec/fixtures/complex_with_config/Emails/Aweber/.html_config.yaml
- spec/fixtures/complex_with_config/Emails/Aweber/polite_email.yaml
- spec/fixtures/complex_with_config/Emails/Mailchimp/.html_config.yaml
- spec/fixtures/complex_with_config/Emails/Mailchimp/polite_email.yaml
- spec/fixtures/complex_with_config/Includes/Emails/love.md
- spec/fixtures/complex_with_config/Includes/Footers/polite.md
- spec/fixtures/complex_with_config/Layouts/.keep
- spec/fixtures/complex_with_config/Layouts/basic.liquid
- spec/fixtures/complex_with_config/Output/.keep
- spec/fixtures/default_config/Emails/Newsletter/.keep
- spec/fixtures/default_config/Layouts/.keep
- spec/fixtures/default_config/Output/.keep
- spec/fixtures/with_config/.html_config.yaml
- spec/fixtures/with_config/Emails/first_email.yaml
- spec/fixtures/with_config/Includes/Emails/barfoo.md
- spec/fixtures/with_config/Includes/Emails/foobar.md
- spec/fixtures/with_config/Includes/Quotes/henry_ford.txt
- spec/fixtures/with_config/Layouts/.keep
- spec/fixtures/with_config/Layouts/simple.liquid
- spec/fixtures/with_config/Output/.keep
- spec/fixtures/with_mailchimp_config/.html_config.yaml
- spec/fixtures/with_mailchimp_config/Emails/first_email.yaml
- spec/fixtures/with_mailchimp_config/Includes/Emails/barfoo.md
- spec/fixtures/with_mailchimp_config/Includes/Emails/foobar.md
- spec/fixtures/with_mailchimp_config/Includes/Quotes/henry_ford.txt
- spec/fixtures/with_mailchimp_config/Layouts/.keep
- spec/fixtures/with_mailchimp_config/Layouts/simple.liquid
- spec/fixtures/with_mailchimp_config/Output/.keep
- spec/html_email_creator/email_creator_spec.rb
- spec/html_email_creator/email_spec.rb
- spec/html_email_creator/formatter_spec.rb
- spec/html_email_creator/layout_spec.rb
- spec/html_email_creator/processor_spec.rb
- spec/html_email_creator/settings_spec.rb
- spec/html_email_creator/tags/include_tag_spec.rb
- spec/spec_helper.rb