-# Foundation::Emails
+# Foundation for Emails Gem
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.
Add this line to your application's Gemfile:
```ruby
-gem 'foundation-emails'
+gem 'foundation_emails'
```
Or install it yourself as:
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
-require "foundation/emails/version"
+require "foundation_emails/version"
Gem::Specification.new do |spec|
- spec.name = "foundation-emails"
- spec.version = Foundation::Emails::VERSION
+ spec.name = "foundation_emails"
+ spec.version = FoundationEmails::VERSION
spec.authors = ["ZURB"]
spec.email = ["foundation@zurb.com"]
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|vendor)/}) }
- # Include symlinked files separately via Dir.glob
+ spec.files = Dir[ File.join("**", "*") ].reject { |p| File.directory?(p) || p.match(%{^(test|spec|features)/}) }
+ # Include symlinked files separately
spec.files += Dir.glob("vendor/assets/stylesheets/foundation-emails/**/*.*")
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }