Skip to content

Commit a7d665f

Browse files
hendrikgitoprypin
authored andcommitted
rename private to docopt instead of skipDirs
as suggested in #32
1 parent ae131a1 commit a7d665f

File tree

5 files changed

+3
-5
lines changed

5 files changed

+3
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
!README*
1010
!LICENSE
1111
!/src
12-
!/src/private
12+
!/src/docopt
1313
!/test
1414
!/examples
1515
!/.travis.yml

docopt.nimble

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
# Package
21
version = "0.6.5"
32
author = "Oleh Prypin"
43
description = "Command line option parser that will make you smile"
54
license = "MIT"
65
srcDir = "src"
7-
skipDirs = @["private"]
86

97
requires "nim >= 0.15.0"
108

src/docopt.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
import nre, options, os, tables
77
from sequtils import deduplicate, delete, filter_it
8-
import private/util
8+
import docopt/util
99

1010
export tables
1111

12-
include private/value
12+
include docopt/value
1313

1414

1515
type
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)