simple-address-generator 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +13 -3
- data/lib/simple-address-generator/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
#
|
|
1
|
+
# simple-address-generator
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
simple-address-generator is a Rails 3 generator that creates a small scaffold class called address that contains all the inputs needed for global address storage system. It is also ready with geocoding and Google maps integration.
|
|
4
|
+
|
|
5
|
+
# Demo
|
|
6
|
+
|
|
7
|
+
[simple-address-generator DEMO]: http://young-fire-9461.heroku.com/addresses
|
|
4
8
|
|
|
5
9
|
## Installation
|
|
6
10
|
|
|
@@ -18,7 +22,13 @@ Or install it yourself as:
|
|
|
18
22
|
|
|
19
23
|
## Usage
|
|
20
24
|
|
|
21
|
-
|
|
25
|
+
After adding to your Gemfile, you should run:
|
|
26
|
+
|
|
27
|
+
run g simple_address_generator
|
|
28
|
+
|
|
29
|
+
Then you can access the following URL:
|
|
30
|
+
|
|
31
|
+
http://localhost:3000/addresses
|
|
22
32
|
|
|
23
33
|
## Contributing
|
|
24
34
|
|