htauth 1.0.2 → 1.0.3

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/HISTORY CHANGED
@@ -1,24 +1,22 @@
1
- = HTAuth
1
+ = Changelog
2
+ == Version 1.0.3 2008-12-20
2
3
 
3
- == Version 1.0.2 (2008-11-30)
4
+ * update highline dependency
4
5
 
5
- * Change project layout
6
+ == Version 1.0.2 2008-11-30
6
7
 
7
- == Version 1.0.1 (2008-02-06)
8
+ === Minor enhancement
8
9
 
9
- === Changes
10
+ * Change project layout
10
11
 
11
- * Bugs
12
- - fix require dependency chain
13
- - fix gem dependency on rake
12
+ == Version 1.0.1 2008-02-06
14
13
 
15
- === Release Notes
16
-
17
- * Look at 'htpasswd-ruby' and 'htdigest-ruby' to get started.
14
+ === Bugfixes
18
15
 
19
- == Version 1.0.0 (2008-02-05)
16
+ * fix require dependency chain
17
+ * fix gem dependency on rake
20
18
 
21
- === Changes
19
+ == Version 1.0.0 2008-02-05
22
20
 
23
21
  * Initial public release
24
22
 
data/gemspec.rb CHANGED
@@ -21,7 +21,7 @@ HTAuth::GEM_SPEC = Gem::Specification.new do |spec|
21
21
 
22
22
  # add dependencies here
23
23
  # spec.add_dependency("rake", ">= 0.8.1")
24
- spec.add_dependency("highline", "~> 1.4.0")
24
+ spec.add_dependency("highline", "~> 1.5.0")
25
25
 
26
26
 
27
27
  if rdoc = Configuration.for_if_exist?('rdoc') then
@@ -3,7 +3,7 @@ module HTAuth
3
3
  module Version
4
4
  MAJOR = 1
5
5
  MINOR = 0
6
- BUILD = 2
6
+ BUILD = 3
7
7
 
8
8
  def to_a
9
9
  [MAJOR, MINOR, BUILD]
@@ -48,13 +48,13 @@ module Utils
48
48
  # release. This is done by looking in the history file and grabbing the
49
49
  # information for the most recent release. The history file is assumed to
50
50
  # be in RDoc format and version release are 2nd tier sections separated by
51
- # '== Version X.Y.Z'
51
+ # '=== Version X.Y.Z'
52
52
  #
53
53
  # returns:: A hash of notes keyed by version number
54
54
  #
55
55
  def release_notes_from(history_file)
56
56
  releases = {}
57
- File.read(history_file).split(/^(?==)/).each do |section|
57
+ File.read(history_file).split(/^(?=== Version)/).each do |section|
58
58
  lines = section.split("\n")
59
59
  md = %r{Version ((\w+\.)+\w+)}.match(lines.first)
60
60
  next unless md
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: htauth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Hinegardner
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-11-30 00:00:00 -07:00
12
+ date: 2008-12-21 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ~>
22
22
  - !ruby/object:Gem::Version
23
- version: 1.4.0
23
+ version: 1.5.0
24
24
  version:
25
25
  description: HTAuth is a pure ruby replacement for the Apache support programs htdigest and htpasswd. Command line and API access are provided for access to htdigest and htpasswd files.
26
26
  email: jeremy@copiousfreetime.org