apache_secure_download 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 198ebad44d9c9cbe6f2a19311a7a12e1cce6a34e
4
+ data.tar.gz: b567c585546daa178fce907da4434509a7f2b8fd
5
+ SHA512:
6
+ metadata.gz: aec99b1a7a0b7e27c6b5079237c55415d1fa663b276d329c06efaf8a74cf0aecff8440ff92c139cf9394b4b03588b47cbf45e50c70da6efe47703bde69ee1f47
7
+ data.tar.gz: 85ea7b198c60d7b24e2b50c9b22c04947b61ab4922e82f826c2af1e8bdcd88e3244f5a68b8d03c1473165fb137ed70bfd7e7f131e48922e3f5828ca9f5ea0fcd
data/ChangeLog CHANGED
@@ -1,5 +1,11 @@
1
+ # markup: rd
2
+
1
3
  = Revision history for apache_secure_download
2
4
 
5
+ == 0.2.2 [2013-12-19]
6
+
7
+ * Housekeeping.
8
+
3
9
  == 0.2.1 [2011-11-08]
4
10
 
5
11
  * Fixed case with missing parameter
data/README CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  == VERSION
4
4
 
5
- This documentation refers to apache_secure_download version 0.2.1
5
+ This documentation refers to apache_secure_download version 0.2.2
6
6
 
7
7
 
8
8
  == DESCRIPTION
@@ -48,21 +48,23 @@ See Apache::SecureDownload::Util.secure_url for more examples.
48
48
  == LINKS
49
49
 
50
50
  <b></b>
51
- Documentation:: http://prometheus.rubyforge.org/apache_secure_download
52
- Source code:: http://github.com/blackwinter/apache_secure_download
53
- RubyForge project:: http://rubyforge.org/projects/prometheus
51
+ Documentation:: http://blackwinter.github.com/apache_secure_download
52
+ Source code:: http://github.com/blackwinter/apache_secure_download
53
+ RubyGem:: http://rubygems.org/gems/apache_secure_download
54
54
 
55
55
 
56
56
  == AUTHORS
57
57
 
58
- * Jens Wille <mailto:jens.wille@uni-koeln.de>
58
+ * Jens Wille <mailto:jens.wille@gmail.com>
59
59
 
60
60
 
61
61
  == LICENSE AND COPYRIGHT
62
62
 
63
- Copyright (C) 2008-2011 University of Cologne,
63
+ Copyright (C) 2008-2012 University of Cologne,
64
64
  Albertus-Magnus-Platz, 50923 Cologne, Germany
65
65
 
66
+ Copyright (C) 2013 Jens Wille
67
+
66
68
  apache_secure_download is free software: you can redistribute it and/or modify
67
69
  it under the terms of the GNU Affero General Public License as published by
68
70
  the Free Software Foundation, either version 3 of the License, or (at your
data/Rakefile CHANGED
@@ -4,16 +4,15 @@ begin
4
4
  require 'hen'
5
5
 
6
6
  Hen.lay! {{
7
- :rubyforge => {
8
- :project => %q{prometheus},
9
- :package => %q{apache_secure_download}
10
- },
11
-
12
7
  :gem => {
13
- :version => Apache::SecureDownload::VERSION,
14
- :summary => %q{Apache module providing secure downloading functionality, just like Mongrel Secure Download does for mongrel.},
15
- :author => %q{Jens Wille},
16
- :email => %q{jens.wille@uni-koeln.de}
8
+ :name => %q{apache_secure_download},
9
+ :version => Apache::SecureDownload::VERSION,
10
+ :summary => %q{Apache module providing secure downloading functionality, just like Mongrel Secure Download does for mongrel.},
11
+ :author => %q{Jens Wille},
12
+ :email => %q{jens.wille@gmail.com},
13
+ :license => %q{AGPL-3.0},
14
+ :homepage => :blackwinter,
15
+ :dependencies => %w[]
17
16
  }
18
17
  }}
19
18
  rescue LoadError => err
@@ -4,12 +4,14 @@
4
4
  # apache_secure_download -- Apache module providing secure downloading #
5
5
  # functionality #
6
6
  # #
7
- # Copyright (C) 2008-2010 University of Cologne, #
7
+ # Copyright (C) 2008-2012 University of Cologne, #
8
8
  # Albertus-Magnus-Platz, #
9
9
  # 50923 Cologne, Germany #
10
10
  # #
11
+ # Copyright (C) 2013 Jens Wille #
12
+ # #
11
13
  # Authors: #
12
- # Jens Wille <jens.wille@uni-koeln.de> #
14
+ # Jens Wille <jens.wille@gmail.com> #
13
15
  # #
14
16
  # apache_secure_download is free software: you can redistribute it and/or #
15
17
  # modify it under the terms of the GNU Affero General Public License as #
@@ -3,12 +3,14 @@
3
3
  # #
4
4
  # A component of apache_secure_download. #
5
5
  # #
6
- # Copyright (C) 2008-2011 University of Cologne, #
6
+ # Copyright (C) 2008-2012 University of Cologne, #
7
7
  # Albertus-Magnus-Platz, #
8
8
  # 50923 Cologne, Germany #
9
9
  # #
10
+ # Copyright (C) 2013 Jens Wille #
11
+ # #
10
12
  # Authors: #
11
- # Jens Wille <jens.wille@uni-koeln.de> #
13
+ # Jens Wille <jens.wille@gmail.com> #
12
14
  # #
13
15
  # apache_secure_download is free software: you can redistribute it and/or #
14
16
  # modify it under the terms of the GNU Affero General Public License as #
@@ -6,7 +6,7 @@ module Apache
6
6
 
7
7
  MAJOR = 0
8
8
  MINOR = 2
9
- TINY = 1
9
+ TINY = 2
10
10
 
11
11
  class << self
12
12
 
metadata CHANGED
@@ -1,85 +1,72 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: apache_secure_download
3
- version: !ruby/object:Gem::Version
4
- hash: 21
5
- prerelease:
6
- segments:
7
- - 0
8
- - 2
9
- - 1
10
- version: 0.2.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.2
11
5
  platform: ruby
12
- authors:
6
+ authors:
13
7
  - Jens Wille
14
8
  autorequire:
15
9
  bindir: bin
16
10
  cert_chain: []
17
-
18
- date: 2011-11-08 00:00:00 Z
11
+ date: 2013-12-19 00:00:00.000000000 Z
19
12
  dependencies: []
20
-
21
- description: Apache module providing secure downloading functionality, just like Mongrel Secure Download does for mongrel.
22
- email: jens.wille@uni-koeln.de
13
+ description: Apache module providing secure downloading functionality, just like Mongrel
14
+ Secure Download does for mongrel.
15
+ email: jens.wille@gmail.com
23
16
  executables: []
24
-
25
17
  extensions: []
26
-
27
- extra_rdoc_files:
18
+ extra_rdoc_files:
28
19
  - README
29
20
  - COPYING
30
21
  - ChangeLog
31
- files:
32
- - lib/apache/secure_download.rb
22
+ files:
33
23
  - lib/apache/mock_constants.rb
24
+ - lib/apache/secure_download.rb
34
25
  - lib/apache/secure_download/util.rb
35
26
  - lib/apache/secure_download/version.rb
36
- - ChangeLog
37
27
  - COPYING
28
+ - ChangeLog
38
29
  - README
39
30
  - Rakefile
40
- - spec/apache/secure_download_spec.rb
41
31
  - spec/apache/secure_download/util_spec.rb
32
+ - spec/apache/secure_download_spec.rb
42
33
  - spec/spec_helper.rb
43
- - .rspec
44
- homepage: http://prometheus.rubyforge.org/apache_secure_download
45
- licenses: []
34
+ homepage: http://github.com/blackwinter/apache_secure_download
35
+ licenses:
36
+ - AGPL-3.0
37
+ metadata: {}
38
+ post_install_message: |2+
46
39
 
47
- post_install_message:
48
- rdoc_options:
49
- - --title
50
- - apache_secure_download Application documentation (v0.2.1)
51
- - --line-numbers
52
- - --main
53
- - README
54
- - --all
55
- - --charset
40
+ apache_secure_download-0.2.2 [2013-12-19]:
41
+
42
+ * Housekeeping.
43
+
44
+ rdoc_options:
45
+ - "--title"
46
+ - apache_secure_download Application documentation (v0.2.2)
47
+ - "--charset"
56
48
  - UTF-8
57
- require_paths:
49
+ - "--line-numbers"
50
+ - "--all"
51
+ - "--main"
52
+ - README
53
+ require_paths:
58
54
  - lib
59
- required_ruby_version: !ruby/object:Gem::Requirement
60
- none: false
61
- requirements:
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ requirements:
62
57
  - - ">="
63
- - !ruby/object:Gem::Version
64
- hash: 3
65
- segments:
66
- - 0
67
- version: "0"
68
- required_rubygems_version: !ruby/object:Gem::Requirement
69
- none: false
70
- requirements:
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
+ requirements:
71
62
  - - ">="
72
- - !ruby/object:Gem::Version
73
- hash: 3
74
- segments:
75
- - 0
76
- version: "0"
63
+ - !ruby/object:Gem::Version
64
+ version: '0'
77
65
  requirements: []
78
-
79
- rubyforge_project: prometheus
80
- rubygems_version: 1.8.11
66
+ rubyforge_project:
67
+ rubygems_version: 2.1.11
81
68
  signing_key:
82
- specification_version: 3
83
- summary: Apache module providing secure downloading functionality, just like Mongrel Secure Download does for mongrel.
69
+ specification_version: 4
70
+ summary: Apache module providing secure downloading functionality, just like Mongrel
71
+ Secure Download does for mongrel.
84
72
  test_files: []
85
-
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --colour
2
- --debug
3
- --require spec/spec_helper.rb