http_configuration 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/Rakefile +7 -4
  2. metadata +16 -11
data/Rakefile CHANGED
@@ -15,24 +15,27 @@ end
15
15
  desc 'Generate documentation for http_configuration.'
16
16
  Rake::RDocTask.new(:rdoc) do |rdoc|
17
17
  rdoc.rdoc_dir = 'rdoc'
18
- rdoc.title = 'Http Configuration'
19
- rdoc.options << '--line-numbers' << '--inline-source'
18
+ rdoc.options << '--title' << 'HTTP Configuration' << '--line-numbers' << '--inline-source' << '--main' << 'README'
20
19
  rdoc.rdoc_files.include('README')
21
20
  rdoc.rdoc_files.include('lib/**/*.rb')
22
21
  end
23
22
 
24
23
  spec = Gem::Specification.new do |s|
25
24
  s.name = "http_configuration"
26
- s.version = "1.0.1"
25
+ s.version = "1.0.2"
27
26
  s.author = "Brian Durand"
28
27
  s.platform = Gem::Platform::RUBY
29
28
  s.summary = "Provide configuration options for Net::HTTP"
30
29
  s.files = FileList["lib/*", "init.rb", "MIT-LICENSE", 'Rakefile'].to_a
31
30
  s.require_path = "lib"
32
- s.autorequire = "init.rb"
33
31
  s.test_files = FileList["{spec}/**/*_spec.rb"].to_a
34
32
  s.has_rdoc = true
33
+ s.rdoc_options << '--title' << 'HTTP Configuration' << '--line-numbers' << '--inline-source' << '--main' << 'README'
35
34
  s.extra_rdoc_files = ["README"]
35
+ s.homepage = "http://httpconfig.rubyforge.org"
36
+ s.rubyforge_project = "httpconfig"
37
+ s.email = 'brian@embellishedvisions.com'
38
+ s.requirements = 'rspec 1.0.8 or higher is needed to run the tests'
36
39
  end
37
40
 
38
41
  Rake::GemPackageTask.new(spec) do |pkg|
metadata CHANGED
@@ -1,20 +1,20 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http_configuration
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Durand
8
- autorequire: init.rb
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2007-12-23 00:00:00 -06:00
12
+ date: 2008-01-17 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
16
  description:
17
- email:
17
+ email: brian@embellishedvisions.com
18
18
  executables: []
19
19
 
20
20
  extensions: []
@@ -28,10 +28,15 @@ files:
28
28
  - Rakefile
29
29
  - README
30
30
  has_rdoc: true
31
- homepage:
31
+ homepage: http://httpconfig.rubyforge.org
32
32
  post_install_message:
33
- rdoc_options: []
34
-
33
+ rdoc_options:
34
+ - --title
35
+ - HTTP Configuration
36
+ - --line-numbers
37
+ - --inline-source
38
+ - --main
39
+ - README
35
40
  require_paths:
36
41
  - lib
37
42
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -46,10 +51,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
46
51
  - !ruby/object:Gem::Version
47
52
  version: "0"
48
53
  version:
49
- requirements: []
50
-
51
- rubyforge_project:
52
- rubygems_version: 0.9.5
54
+ requirements:
55
+ - rspec 1.0.8 or higher is needed to run the tests
56
+ rubyforge_project: httpconfig
57
+ rubygems_version: 1.0.1
53
58
  signing_key:
54
59
  specification_version: 2
55
60
  summary: Provide configuration options for Net::HTTP