Give it a name

This commit is contained in:
rnhmjoj 2015-07-07 22:41:47 +02:00
parent b84ea019ce
commit 5fc2e9633d
5 changed files with 13 additions and 13 deletions

View File

@ -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

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -1,4 +1,4 @@
module Types where
module Skeleton.Types where
import Data.Time (LocalTime)