emailyak 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +3 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +22 -0
- data/Rakefile +2 -0
- data/emailyak.gemspec +23 -0
- data/lib/data/ca-certificates.crt +3524 -0
- data/lib/emailyak/version.rb +3 -0
- data/lib/emailyak.rb +220 -0
- metadata +104 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
emailyak (0.0.1)
|
5
|
+
json
|
6
|
+
rest-client
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: http://rubygems.org/
|
10
|
+
specs:
|
11
|
+
json (1.6.1)
|
12
|
+
mime-types (1.16)
|
13
|
+
rest-client (1.6.7)
|
14
|
+
mime-types (>= 1.16)
|
15
|
+
|
16
|
+
PLATFORMS
|
17
|
+
ruby
|
18
|
+
|
19
|
+
DEPENDENCIES
|
20
|
+
emailyak!
|
21
|
+
json
|
22
|
+
rest-client
|
data/Rakefile
ADDED
data/emailyak.gemspec
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "emailyak/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "emailyak"
|
7
|
+
s.version = Emailyak::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Scott Ballantyne", 'Greg Brockman']
|
10
|
+
s.email = ["ussballantyne@gmail.cm", 'gdb@gregbrockman.com']
|
11
|
+
s.homepage = ""
|
12
|
+
s.summary = %q{making several different emailyak projects into a gem}
|
13
|
+
s.description = %q{making several different emailyak projects into a gem description}
|
14
|
+
|
15
|
+
s.rubyforge_project = "emailyak"
|
16
|
+
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
|
+
s.require_paths = ["lib"]
|
21
|
+
s.add_dependency(%q<rest-client>, [">= 0"])
|
22
|
+
s.add_dependency(%q<json>, [">= 0"])
|
23
|
+
end
|