ezmlm 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/ezmlm.rb +3 -3
  3. data/lib/ezmlm/list.rb +2 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a255b2d3807466ae69a474e75ffeccf6f245c478
4
- data.tar.gz: 5c06a675c3be6edab4a804a5ef9e916c100b60c3
3
+ metadata.gz: 1a7a83d944995b08cab01dfdaa2b9cbb003cd010
4
+ data.tar.gz: 562a9857331d93f7288b0158c652b5887cd5b8e8
5
5
  SHA512:
6
- metadata.gz: ff96a67813867191d1333d3947a15f8861b461e2b73d6089d972f4f2aa3766d26b548b033a86a5198653819547dc0e5ba7f1b8a3e0870663e6058f4659f5d82d
7
- data.tar.gz: e5962affdda9dd00308d12e94b37f6c7281136b9148bd7288b6df40e7dca5575b0e197515f0c947d373cc04e24ea7d631921914db432e6e317e113a97c7cfa24
6
+ metadata.gz: a032a42a032c5f98960f4c66ee498b7680cefce301d2a9aa02387b76c7727e8a5b051a19e60e401b7e3202c849cc139612825d77728262a3be0e739debd1fe0a
7
+ data.tar.gz: b29434e5b847df18bf35f733968c5d4ed91b5260f1313dffbacf722e590edb5de59ab4518e515cc0ba7d5c16b4c3489f12b0991cb6a2448224aba337ef4bdb9c
@@ -11,10 +11,10 @@ require 'pathname'
11
11
  # end
12
12
  #
13
13
  module Ezmlm
14
- # $Id: ezmlm.rb,v f8873b391f3d 2017/05/24 22:42:39 mahlon $
14
+ # $Id: ezmlm.rb,v 81cc7d47f68f 2017/05/30 18:08:48 mahlon $
15
15
 
16
16
  # Package version
17
- VERSION = '1.1.0'
17
+ VERSION = '1.1.1'
18
18
 
19
19
  # Suck in the components.
20
20
  #
@@ -35,7 +35,7 @@ module Ezmlm
35
35
  def find_directories( listsdir )
36
36
  listsdir = Pathname.new( listsdir )
37
37
  return Pathname.glob( listsdir + '*' ).sort.select do |entry|
38
- entry.directory? && ( entry + 'mailinglist' ).exist?
38
+ entry.directory? && ( entry + 'ezmlmrc' ).exist?
39
39
  end
40
40
  end
41
41
 
@@ -14,7 +14,7 @@ require 'ezmlm' unless defined?( Ezmlm )
14
14
  #
15
15
  #---
16
16
  class Ezmlm::List
17
- # $Id: list.rb,v f8873b391f3d 2017/05/24 22:42:39 mahlon $
17
+ # $Id: list.rb,v 81cc7d47f68f 2017/05/30 18:08:48 mahlon $
18
18
 
19
19
  # Valid subdirectories/sections for subscriptions.
20
20
  SUBSCRIPTION_DIRS = %w[ deny mod digest allow ]
@@ -25,7 +25,7 @@ class Ezmlm::List
25
25
  ###
26
26
  def initialize( listdir )
27
27
  listdir = Pathname.new( listdir ) unless listdir.is_a?( Pathname )
28
- unless listdir.directory? && ( listdir + 'mailinglist' ).exist?
28
+ unless listdir.directory? && ( listdir + 'ezmlmrc' ).exist?
29
29
  raise ArgumentError, "%p doesn't appear to be an ezmlm-idx list." % [ listdir.to_s ]
30
30
  end
31
31
  @listdir = listdir
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ezmlm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mahlon E. Smith
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-05-24 00:00:00.000000000 Z
13
+ date: 2017-05-30 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: mail