Merge pull request #2670 from DarwinAwardWinner/ido-ubiquitous-refactor

New recipes for ido-ubiquitous and ido-completing-read+
This commit is contained in:
Donald Curtis 2015-04-11 19:29:36 -07:00
commit 4a227a6d44
3 changed files with 11 additions and 9 deletions

View file

@ -267,17 +267,17 @@ causes the default value shown above to be prepended to the specified file list.
### Example: Single File Repository
[ido-ubiquitous](https://github.com/DarwinAwardWinner/ido-ubiquitous) is a repository that contains two files:
[smex](https://github.com/nonsequitur/smex) is a repository that
contains two files:
* `README.md`
* `ido-ubiquitous.el`
* `README.markdown`
* `smex.el`
Since there is only one `.el` file, this package only needs the `:url` and `:fetcher` specified,
Since there is only one `.el` file, this package only needs the `:url`
and `:fetcher` specified,
```lisp
(ido-ubiquitous
:url "https://github.com/DarwinAwardWinner/ido-ubiquitous.git"
:fetcher git)
(smex :repo "nonsequitur/smex" :fetcher github)
```
### Example: Multiple Packages in one Repository

View file

@ -0,0 +1,2 @@
(ido-completing-read+ :repo "DarwinAwardWinner/ido-ubiquitous" :fetcher github
:files ("ido-completing-read+.el"))

View file

@ -1,2 +1,2 @@
(ido-ubiquitous :repo "DarwinAwardWinner/ido-ubiquitous" :fetcher github)
(ido-ubiquitous :repo "DarwinAwardWinner/ido-ubiquitous" :fetcher github
:files ("ido-ubiquitous.el"))