-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsendgrid-parse.gemspec
More file actions
21 lines (19 loc) · 1.01 KB
/
Copy pathsendgrid-parse.gemspec
File metadata and controls
21 lines (19 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/sendgrid-parse/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Rob Forman"]
gem.email = ["rob@robforman.com"]
gem.description = %q{Library to dynamically set or change the encoding type for fields, ie params from SendGrid Parse API.}
gem.summary = %q{Library to dynamically set or change the encoding type for fields, ie params from SendGrid Parse API.}
gem.homepage = "https://github.com/robforman/sendgrid-parse"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "sendgrid-parse"
gem.require_paths = ["lib"]
gem.version = Sendgrid::Parse::VERSION
gem.add_dependency "json", "~> 1.8.0"
gem.add_development_dependency "rspec", "~> 2.10.0"
gem.add_development_dependency "active_support", "~> 3.0.0"
gem.add_development_dependency "rake"
end