moj_template 0.5.7 → 0.5.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.
- checksums.yaml +4 -4
- data/README.md +8 -8
- data/lib/moj_template/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4adb5399cdd2f407b2e06df7ea72c5f232efa854
|
|
4
|
+
data.tar.gz: 426df0c9ece8f33489b6de53906a8d84994acafe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6ca28b6f454954afe41a759f5303f42bfc95fba8254983e18cd3e5ab96d837a40d3e808a3e540087708e2516c504f18003a319fbf164a9a0e5af1f7d4240c1b
|
|
7
|
+
data.tar.gz: 2ec86aec898d520d6eb4f8ff82dea655c1c529eee958d0bc8082249644aade302e6c1e94c3944ab877eead9778c82e6f62c033f47dd72848a0211e54b93dc5c2
|
data/README.md
CHANGED
|
@@ -14,16 +14,16 @@ The Ruby language (1.9.3+), the build tool [Rake](http://rake.rubyforge.org/) &
|
|
|
14
14
|
|
|
15
15
|
At present this generates 5 output formats:
|
|
16
16
|
|
|
17
|
-
1. a gem containing a Rails engine
|
|
18
|
-
2. a tarball containing Play Framework templates
|
|
19
|
-
3. a folder containing Mustache templates
|
|
20
|
-
4. a tarball containing Mustache Inheritance templates
|
|
21
|
-
5. a tarball
|
|
22
|
-
6. a django python package
|
|
17
|
+
1. [a gem containing a Rails engine](#gem-version)
|
|
18
|
+
2. [a tarball containing Play Framework templates](#play-version)
|
|
19
|
+
3. [a folder containing Mustache templates](#mustache-version)
|
|
20
|
+
4. [a tarball containing Mustache Inheritance templates](#mustache-inheritance-version)
|
|
21
|
+
5. [a tarball](#tarball-version)
|
|
22
|
+
6. [a django python package](#django-version)
|
|
23
23
|
|
|
24
24
|
### Gem version
|
|
25
25
|
|
|
26
|
-
To use it, add this line to your application's Gemfile (change the tag to the version you would like to use):
|
|
26
|
+
The gem is available on [rubygems.org](https://rubygems.org/gems/moj_template). To use it, add this line to your application's Gemfile (change the tag to the version you would like to use):
|
|
27
27
|
|
|
28
28
|
gem 'moj_template', '~> 0.1.0'
|
|
29
29
|
|
|
@@ -56,7 +56,7 @@ In order for these files to work, you will need to set a number of variables in
|
|
|
56
56
|
|
|
57
57
|
### Django version
|
|
58
58
|
|
|
59
|
-
To use the django package, add the following package to `requirements.txt`:
|
|
59
|
+
The Django package is available on [pypi.python.org](https://pypi.python.org/pypi/django-moj-template). To use the django package, add the following package to `requirements.txt`:
|
|
60
60
|
|
|
61
61
|
django-moj-template==0.1.0
|
|
62
62
|
|
data/lib/moj_template/version.rb
CHANGED