Browse Source

Fixed dev-req.txt and changed lesscss path to the more generic one

main
Lakshmi Vyasarajan 14 years ago
parent
commit
5bdfc478cc
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      dev-req.txt
  2. +1
    -1
      hyde/tests/ext/test_less.py

+ 1
- 0
dev-req.txt View File

@@ -2,6 +2,7 @@ commando==0.1.1a
PyYAML==3.09 PyYAML==3.09
Markdown==2.0.3 Markdown==2.0.3
MarkupSafe==0.11 MarkupSafe==0.11
pygments
smartypants==1.6.0.3 smartypants==1.6.0.3
-e git://github.com/hyde/typogrify.git#egg=typogrify -e git://github.com/hyde/typogrify.git#egg=typogrify
Jinja2==2.5.5 Jinja2==2.5.5


+ 1
- 1
hyde/tests/ext/test_less.py View File

@@ -29,7 +29,7 @@ class TestLess(object):
def test_can_execute_less(self): def test_can_execute_less(self):
s = Site(TEST_SITE) s = Site(TEST_SITE)
s.config.plugins = ['hyde.ext.plugins.less.LessCSSPlugin'] s.config.plugins = ['hyde.ext.plugins.less.LessCSSPlugin']
s.config.less = Expando(dict(app='~/local/bin/lessc'))
s.config.less = Expando(dict(app='/usr/local/share/npm/bin/lessc'))
source = TEST_SITE.child('content/media/css/site.less') source = TEST_SITE.child('content/media/css/site.less')
target = File(Folder(s.config.deploy_root_path).child('media/css/site.css')) target = File(Folder(s.config.deploy_root_path).child('media/css/site.css'))
gen = Generator(s) gen = Generator(s)


Loading…
Cancel
Save