Give it a name
This commit is contained in:
parent
b84ea019ce
commit
5fc2e9633d
@ -1,13 +1,12 @@
|
||||
name: keychain
|
||||
name: skeleton
|
||||
version: 0.1.0.0
|
||||
synopsis: a tool to access the OSX keychain
|
||||
description:
|
||||
|
||||
is a command line tool used to quickly access passwords stored
|
||||
in the OSX keychain. You can search for by account, server name
|
||||
or any other available attribute and get a list of fuzzy matched
|
||||
result. The first match is be copied to the clipbdoard.
|
||||
|
||||
skeleton is a command line tool used to quickly access passwords
|
||||
stored in the OSX keychain. You can search by account, server
|
||||
name or any other available attribute and get a list of fuzzy
|
||||
matched result. The first match is be copied to the clipbdoard.
|
||||
|
||||
license: MIT
|
||||
license-file: LICENSE
|
@ -1,8 +1,8 @@
|
||||
{-# LANGUAGE RecordWildCards #-}
|
||||
|
||||
import Types
|
||||
import Pretty
|
||||
import Parser
|
||||
import Skeleton.Types
|
||||
import Skeleton.Pretty
|
||||
import Skeleton.Parser
|
||||
|
||||
import Control.Monad (when)
|
||||
import Data.List (isInfixOf)
|
||||
|
@ -6,7 +6,8 @@ module Parser
|
||||
, runParser
|
||||
) where
|
||||
|
||||
import Types
|
||||
import Skeleton.Types
|
||||
|
||||
import Control.Applicative
|
||||
import Data.Attoparsec.ByteString.Char8
|
||||
import Data.ByteString.Char8 (pack, unpack)
|
@ -1,13 +1,13 @@
|
||||
{-# LANGUAGE RecordWildCards, ViewPatterns #-}
|
||||
{-# LANGUAGE FlexibleInstances, TypeSynonymInstances #-}
|
||||
|
||||
module Pretty
|
||||
module Skeleton.Pretty
|
||||
( Pretty
|
||||
, pretty
|
||||
, pprint
|
||||
) where
|
||||
|
||||
import Types
|
||||
import Skeleton.Types
|
||||
import Data.List (intercalate)
|
||||
import System.FilePath (takeBaseName)
|
||||
|
@ -1,4 +1,4 @@
|
||||
module Types where
|
||||
module Skeleton.Types where
|
||||
|
||||
import Data.Time (LocalTime)
|
||||
|
Loading…
Reference in New Issue
Block a user