~ubuntu-branches/ubuntu/utopic/ruby-excon/utopic

« back to all changes in this revision

Viewing changes to excon.gemspec

  • Committer: Package Import Robot
  • Author(s): Praveen Arimbrathodiyil
  • Date: 2014-01-14 18:44:24 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20140114184424-3nx5mqudhzjpcrjs
Tags: 0.31.0-1
* Team upload
* New upstream release
* Refresh patches
* Bump standards version to 3.9.5 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
  ## If your rubyforge_project name is different, then edit it and comment out
14
14
  ## the sub! line in the Rakefile
15
15
  s.name              = 'excon'
16
 
  s.version           = '0.25.1'
17
 
  s.date              = '2013-07-02'
 
16
  s.version           = '0.31.0'
 
17
  s.date              = '2013-12-16'
18
18
  s.rubyforge_project = 'excon'
19
19
 
20
20
  ## Make sure your summary is short. The description may be as long
28
28
  s.authors  = ["dpiddy (Dan Peterson)", "geemus (Wesley Beary)", "nextmat (Matt Sanders)"]
29
29
  s.email    = 'geemus@gmail.com'
30
30
  s.homepage = 'https://github.com/geemus/excon'
 
31
  s.license  = 'MIT'
31
32
 
32
33
  ## This gets added to the $LOAD_PATH so that 'lib/NAME.rb' can be required as
33
34
  ## require 'NAME.rb' or'/lib/NAME/file.rb' can be as require 'NAME/file.rb'
97
98
    lib/excon/constants.rb
98
99
    lib/excon/errors.rb
99
100
    lib/excon/middlewares/base.rb
 
101
    lib/excon/middlewares/decompress.rb
100
102
    lib/excon/middlewares/expects.rb
101
103
    lib/excon/middlewares/idempotent.rb
102
104
    lib/excon/middlewares/instrumentor.rb
103
105
    lib/excon/middlewares/mock.rb
 
106
    lib/excon/middlewares/redirect_follower.rb
 
107
    lib/excon/middlewares/response_parser.rb
104
108
    lib/excon/response.rb
105
109
    lib/excon/socket.rb
106
110
    lib/excon/ssl_socket.rb
107
111
    lib/excon/standard_instrumentor.rb
 
112
    lib/excon/unix_socket.rb
 
113
    lib/excon/utils.rb
108
114
    tests/authorization_header_tests.rb
109
115
    tests/bad_tests.rb
110
116
    tests/basic_tests.rb
113
119
    tests/data/xs
114
120
    tests/errors_tests.rb
115
121
    tests/header_tests.rb
 
122
    tests/middlewares/canned_response_tests.rb
 
123
    tests/middlewares/decompress_tests.rb
116
124
    tests/middlewares/idempotent_tests.rb
117
125
    tests/middlewares/instrumentation_tests.rb
118
126
    tests/middlewares/mock_tests.rb
 
127
    tests/middlewares/redirect_follower_tests.rb
 
128
    tests/pipeline_tests.rb
119
129
    tests/proxy_tests.rb
120
130
    tests/query_string_tests.rb
121
131
    tests/rackups/basic.rb
122
132
    tests/rackups/basic.ru
123
133
    tests/rackups/basic_auth.ru
 
134
    tests/rackups/deflater.ru
124
135
    tests/rackups/proxy.ru
125
136
    tests/rackups/query_string.ru
126
137
    tests/rackups/request_headers.ru
130
141
    tests/rackups/ssl_verify_peer.ru
131
142
    tests/rackups/thread_safety.ru
132
143
    tests/rackups/timeout.ru
 
144
    tests/rackups/webrick_patch.rb
133
145
    tests/request_headers_tests.rb
134
146
    tests/request_method_tests.rb
135
 
    tests/requests_tests.rb
 
147
    tests/request_tests.rb
 
148
    tests/response_tests.rb
136
149
    tests/servers/bad.rb
137
150
    tests/servers/eof.rb
138
151
    tests/servers/error.rb
 
152
    tests/servers/good.rb
139
153
    tests/test_helper.rb
140
154
    tests/thread_safety_tests.rb
141
155
    tests/timeout_tests.rb
 
156
    tests/utils_tests.rb
142
157
  ]
143
158
  # = MANIFEST =
144
159