public
Description: email => [http post, jabber]
Homepage: http://oss.techno-weenie.net/discussions/astrotrain
Clone URL: git://github.com/entp/astrotrain.git
astrotrain / astrotrain.gemspec
100644 131 lines (126 sloc) 4.973 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{astrotrain}
  s.version = "0.4.5"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["technoweenie"]
  s.date = %q{2009-10-30}
  s.email = %q{technoweenie@gmail.com}
  s.extra_rdoc_files = [
    "LICENSE",
     "README"
  ]
  s.files = [
    ".gitignore",
     "LICENSE",
     "README",
     "Rakefile",
     "VERSION",
     "astrotrain.gemspec",
     "config/sample.rb",
     "lib/astrotrain.rb",
     "lib/astrotrain/api.rb",
     "lib/astrotrain/logged_mail.rb",
     "lib/astrotrain/mapping.rb",
     "lib/astrotrain/mapping/http_post.rb",
     "lib/astrotrain/mapping/jabber.rb",
     "lib/astrotrain/mapping/transport.rb",
     "lib/astrotrain/message.rb",
     "lib/astrotrain/tmail.rb",
     "lib/astrotrain/worker.rb",
     "lib/vendor/rest-client/README.rdoc",
     "lib/vendor/rest-client/Rakefile",
     "lib/vendor/rest-client/bin/restclient",
     "lib/vendor/rest-client/foo.diff",
     "lib/vendor/rest-client/lib/rest_client.rb",
     "lib/vendor/rest-client/lib/rest_client/net_http_ext.rb",
     "lib/vendor/rest-client/lib/rest_client/payload.rb",
     "lib/vendor/rest-client/lib/rest_client/request_errors.rb",
     "lib/vendor/rest-client/lib/rest_client/resource.rb",
     "lib/vendor/rest-client/rest-client.gemspec",
     "lib/vendor/rest-client/spec/base.rb",
     "lib/vendor/rest-client/spec/master_shake.jpg",
     "lib/vendor/rest-client/spec/payload_spec.rb",
     "lib/vendor/rest-client/spec/request_errors_spec.rb",
     "lib/vendor/rest-client/spec/resource_spec.rb",
     "lib/vendor/rest-client/spec/rest_client_spec.rb",
     "test/api_test.rb",
     "test/fixtures/apple_multipart.txt",
     "test/fixtures/bad_content_type.txt",
     "test/fixtures/basic.txt",
     "test/fixtures/custom.txt",
     "test/fixtures/fwd.txt",
     "test/fixtures/gb2312_encoding.txt",
     "test/fixtures/gb2312_encoding_invalid.txt",
     "test/fixtures/html.txt",
     "test/fixtures/iso-8859-1.txt",
     "test/fixtures/mapped.txt",
     "test/fixtures/multipart.txt",
     "test/fixtures/multipart2.txt",
     "test/fixtures/multiple.txt",
     "test/fixtures/multiple_delivered_to.txt",
     "test/fixtures/multiple_with_body_recipients.txt",
     "test/fixtures/reply.txt",
     "test/fixtures/undisclosed.txt",
     "test/fixtures/utf-8.txt",
     "test/logged_mail_test.rb",
     "test/mapping_test.rb",
     "test/message_test.rb",
     "test/test_helper.rb",
     "test/transport_test.rb"
  ]
  s.homepage = %q{http://github.com/entp/astrotrain}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.4}
  s.summary = %q{email => http post}
  s.test_files = [
    "test/api_test.rb",
     "test/logged_mail_test.rb",
     "test/mapping_test.rb",
     "test/message_test.rb",
     "test/test_helper.rb",
     "test/transport_test.rb"
  ]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<addressable>, ["= 2.0.2"])
      s.add_runtime_dependency(%q<tmail>, ["= 1.2.3.1"])
      s.add_runtime_dependency(%q<dm-core>, ["= 0.9.11"])
      s.add_runtime_dependency(%q<dm-aggregates>, ["= 0.9.11"])
      s.add_runtime_dependency(%q<dm-timestamps>, ["= 0.9.11"])
      s.add_runtime_dependency(%q<dm-types>, ["= 0.9.11"])
      s.add_runtime_dependency(%q<dm-validations>, ["= 0.9.11"])
      s.add_development_dependency(%q<context>, [">= 0"])
      s.add_development_dependency(%q<rr>, [">= 0"])
      s.add_development_dependency(%q<sinatra>, [">= 0"])
      s.add_development_dependency(%q<xmppr4-simple>, [">= 0"])
    else
      s.add_dependency(%q<addressable>, ["= 2.0.2"])
      s.add_dependency(%q<tmail>, ["= 1.2.3.1"])
      s.add_dependency(%q<dm-core>, ["= 0.9.11"])
      s.add_dependency(%q<dm-aggregates>, ["= 0.9.11"])
      s.add_dependency(%q<dm-timestamps>, ["= 0.9.11"])
      s.add_dependency(%q<dm-types>, ["= 0.9.11"])
      s.add_dependency(%q<dm-validations>, ["= 0.9.11"])
      s.add_dependency(%q<context>, [">= 0"])
      s.add_dependency(%q<rr>, [">= 0"])
      s.add_dependency(%q<sinatra>, [">= 0"])
      s.add_dependency(%q<xmppr4-simple>, [">= 0"])
    end
  else
    s.add_dependency(%q<addressable>, ["= 2.0.2"])
    s.add_dependency(%q<tmail>, ["= 1.2.3.1"])
    s.add_dependency(%q<dm-core>, ["= 0.9.11"])
    s.add_dependency(%q<dm-aggregates>, ["= 0.9.11"])
    s.add_dependency(%q<dm-timestamps>, ["= 0.9.11"])
    s.add_dependency(%q<dm-types>, ["= 0.9.11"])
    s.add_dependency(%q<dm-validations>, ["= 0.9.11"])
    s.add_dependency(%q<context>, [">= 0"])
    s.add_dependency(%q<rr>, [">= 0"])
    s.add_dependency(%q<sinatra>, [">= 0"])
    s.add_dependency(%q<xmppr4-simple>, [">= 0"])
  end
end