Skip to content

Commit ad0aa7e

Browse files
committed
Improve documentation for hex.pm
The README.md file was improved to be used as the main page of the documentaion on hex.pm The TODOs containg possible features have been moved to github issues. Closes #4
1 parent 0975218 commit ad0aa7e

File tree

3 files changed

+52
-31
lines changed

3 files changed

+52
-31
lines changed

README.md

+40-26
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,53 @@
22

33
**A module to generate a random string based on a given string pattern**
44

5+
## Installation
6+
7+
The package can be installed by adding `random_string_generator` to your list of dependencies in `mix.exs`:
8+
9+
```elixir
10+
def deps do
11+
[
12+
{:random_string_generator, "~> 0.1.1"}
13+
]
14+
end
15+
```
16+
17+
## Usage
18+
519
#### Accepted string patterns:
620

721
Use `l` for lower case letter from a to z
8-
22+
923
Use `L` for upper case letter from A to Z
10-
24+
1125
Use `d` for digit from 0 to 9
12-
26+
1327
Use `p` for punctuation
1428

1529
#### Punctuation is any character on the following group:
1630

17-
@punctuation [
18-
"!", "\"", "#", "$", "%", "&", "'", "(", ")", "*", "+", ",", "-",
19-
".", "/", ":", ";", "<", "=", ">", "?", "@", "[", "\\", "]", "^",
20-
"_", "`", "{", "|","}", "~"
21-
]
31+
`!`, `"`, `#`, `$`, `%`, `&`, `'`, `(`, `)`, `*`, `+`, `,`, `-`,
32+
`.`, `/`, `:`, `;`, `<`, `=`, `>`, `?`, `@`, `[`, ` \ `, `]`, `^`,
33+
`_`, `{`, `|`,`}`, `~` and `` ` ``
2234

2335
##### Generate a string containing 2 lower case letters followed by 2 digits.
24-
25-
RandomStringGenerator.generate("lldd")
36+
```elixir
37+
iex> RandomStringGenerator.generate("lldd")
38+
"ol68"
39+
```
2640

2741
##### Generate a string containing 2 upper case letters.
28-
29-
RandomStringGenerator.generate("LL")
42+
```elixir
43+
iex> RandomStringGenerator.generate("LL")
44+
"VR"
45+
```
46+
47+
##### Generate a string containing 2 punctuations.
48+
```elixir
49+
iex> RandomStringGenerator.generate("pp")
50+
"?!"
51+
```
3052

3153
**Delimiters**
3254

@@ -35,28 +57,20 @@
3557
a lower case letter followed by a question mark.
3658

3759
##### Generate a string containing 2 letters followed by a hyphen.
38-
39-
RandomStringGenerator.generate("ll-")
60+
```elixir
61+
iex> RandomStringGenerator.generate("ll-")
62+
"yz-"
63+
```
4064

4165
**Scape**
4266

4367
In order to generate a string containing the characters `l`,`L`,`d` and `p`
4468
as a delimiter you need to use the backslash twice in order to scape it.
4569

4670
##### Generate a string containing 2 digits followed by the letters `lLdp`.
47-
48-
RandomStringGenerator.generate("dd\\l\\L\\d\\p")
49-
50-
## Installation
51-
52-
The package can be installed by adding `random_string_generator` to your list of dependencies in `mix.exs`:
53-
5471
```elixir
55-
def deps do
56-
[
57-
{:random_string_generator, "~> 0.1.0"}
58-
]
59-
end
72+
iex> RandomStringGenerator.generate("dd\\l\\L\\d\\p")
73+
"39lLdp"
6074
```
6175

6276
Full documentation at [https://hexdocs.pm/random_string_generator](https://hexdocs.pm/random_string_generator).

lib/random_string_generator.ex

-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ defmodule RandomStringGenerator do
5050
"}", "~"
5151
]
5252

53-
# TODO accept list of chars to be used as special case
54-
# TODO implement pattern repetition like d{1}
55-
5653
@doc """
5754
Given a `pattern` string, returns a random generated string.
5855

mix.exs

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
defmodule RandomStringGenerator.Mixfile do
22
use Mix.Project
3+
@version "0.1.1"
34

45
def project do
56
[
67
app: :random_string_generator,
7-
version: "0.1.0",
8+
version: @version,
89
elixir: "~> 1.5",
910
start_permanent: Mix.env == :prod,
1011
deps: deps(),
1112
description: description(),
1213
package: package(),
13-
source_url: "https://github.com/caioceccon/random_string_generator/",
14+
docs: docs()
1415
]
1516
end
1617

@@ -44,4 +45,13 @@ defmodule RandomStringGenerator.Mixfile do
4445
links: %{"GitHub" => "https://github.com/caioceccon/random_string_generator"}
4546
]
4647
end
48+
49+
defp docs do
50+
[
51+
source_ref: "v#{@version}",
52+
extras: ["README.md"],
53+
main: "readme",
54+
source_url: "https://github.com/caioceccon/random_string_generator/",
55+
]
56+
end
4757
end

0 commit comments

Comments
 (0)