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 version: 0.1.0.0
synopsis: a tool to access the OSX keychain synopsis: a tool to access the OSX keychain
description: description:
is a command line tool used to quickly access passwords stored skeleton is a command line tool used to quickly access passwords
in the OSX keychain. You can search for by account, server name stored in the OSX keychain. You can search by account, server
or any other available attribute and get a list of fuzzy matched name or any other available attribute and get a list of fuzzy
result. The first match is be copied to the clipbdoard. matched result. The first match is be copied to the clipbdoard.
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE

View File

@ -1,8 +1,8 @@
{-# LANGUAGE RecordWildCards #-} {-# LANGUAGE RecordWildCards #-}
import Types import Skeleton.Types
import Pretty import Skeleton.Pretty
import Parser import Skeleton.Parser
import Control.Monad (when) import Control.Monad (when)
import Data.List (isInfixOf) import Data.List (isInfixOf)

View File

@ -6,7 +6,8 @@ module Parser
, runParser , runParser
) where ) where
import Types import Skeleton.Types
import Control.Applicative import Control.Applicative
import Data.Attoparsec.ByteString.Char8 import Data.Attoparsec.ByteString.Char8
import Data.ByteString.Char8 (pack, unpack) import Data.ByteString.Char8 (pack, unpack)

View File

@ -1,13 +1,13 @@
{-# LANGUAGE RecordWildCards, ViewPatterns #-} {-# LANGUAGE RecordWildCards, ViewPatterns #-}
{-# LANGUAGE FlexibleInstances, TypeSynonymInstances #-} {-# LANGUAGE FlexibleInstances, TypeSynonymInstances #-}
module Pretty module Skeleton.Pretty
( Pretty ( Pretty
, pretty , pretty
, pprint , pprint
) where ) where
import Types import Skeleton.Types
import Data.List (intercalate) import Data.List (intercalate)
import System.FilePath (takeBaseName) import System.FilePath (takeBaseName)

View File

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