-Foundation for Emails (previously known as Ink) is a framework for creating responsive HTML emails that work in any email client—even Outlook. Our HTML/CSS components have been tested across every major email client to ensure consistency. And with the [Inky](https://github.com/zurb/inky) templating language, writing HTML emails is now even easier.
+Foundation for Emails (previously known as Ink) is a framework for creating responsive HTML emails that work in any email client — even Outlook. Our HTML/CSS components have been tested across every major email client to ensure consistency. And with the [Inky](https://github.com/zurb/inky) templating language, writing HTML emails is now even easier.
## Getting Started
--- /dev/null
+/.bundle/
+/.yardoc
+/Gemfile.lock
+/_yardoc/
+/coverage/
+/doc/
+/pkg/
+/spec/reports/
+/tmp/
--- /dev/null
+--format documentation
+--color
--- /dev/null
+sudo: false
+language: ruby
+rvm:
+ - 2.3.0
+before_install: gem install bundler -v 1.12.4
--- /dev/null
+source 'https://rubygems.org'
+
+# Specify dependencies in foundation-emails.gemspec
+gemspec
--- /dev/null
+Copyright (c) 2016 ZURB, inc.
+
+The MIT License
+
+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:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+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.
--- /dev/null
+# Foundation::Emails
+
+Foundation for Emails (previously known as Ink) is a framework for creating responsive HTML emails that work in any email client — even Outlook. Our HTML/CSS components have been tested across every major email client to ensure consistency.
+
+## Installation
+
+Add this line to your application's Gemfile:
+
+```ruby
+gem 'foundation-emails'
+```
+
+Or install it yourself as:
+
+ $ gem install foundation-emails
+
+## Usage
+
+To include in your assets, place the following in your desired stylesheets manifest:
+
+```scss
+ @import "foundation-emails";
+```
+
+## License
+
+The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
--- /dev/null
+require "bundler/gem_tasks"
+require "rspec/core/rake_task"
+
+RSpec::Core::RakeTask.new(:spec)
+
+task :default => :spec
--- /dev/null
+#!/usr/bin/env ruby
+
+require "bundler/setup"
+require "foundation/emails"
+
+require "irb"
+IRB.start
--- /dev/null
+#!/usr/bin/env bash
+set -euo pipefail
+IFS=$'\n\t'
+set -vx
+
+bundle install
--- /dev/null
+# coding: utf-8
+lib = File.expand_path("../lib", __FILE__)
+$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
+require "foundation/emails/version"
+
+Gem::Specification.new do |spec|
+ spec.name = "foundation-emails"
+ spec.version = Foundation::Emails::VERSION
+ spec.authors = ["ZURB"]
+ spec.email = ["foundation@zurb.com"]
+
+ spec.summary = %q{A framework for responsive emails made by ZURB.}
+ spec.description = %q{Foundation for Emails (previously known as Ink) is a framework for creating responsive HTML emails that work in any email client.}
+ spec.homepage = "http://foundation.zurb.com/emails"
+ spec.license = "MIT"
+
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
+ spec.bindir = "exe"
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ spec.require_paths = ["lib"]
+
+ spec.add_development_dependency "bundler", "~> 1.12"
+ spec.add_development_dependency "rake", "~> 10.0"
+ spec.add_development_dependency "rspec", "~> 3.0"
+end
--- /dev/null
+require "foundation/emails/version"
+
+module Foundation
+ module Emails
+ # Your code goes here...
+ end
+end
--- /dev/null
+module Foundation
+ module Emails
+ VERSION = "0.1.0"
+ end
+end
--- /dev/null
+require "spec_helper"
+
+describe Foundation::Emails do
+ it "has a version number" do
+ expect(Foundation::Emails::VERSION).not_to be nil
+ end
+end
--- /dev/null
+$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
+require 'foundation/emails'