awestruct 0.5.2 → 0.5.2.1

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.
@@ -92,9 +92,15 @@ task :preview => :check do
92
92
  run_awestruct '-d'
93
93
  end
94
94
 
95
- desc 'Generate the site using the development profile'
96
- task :gen => :check do
97
- run_awestruct '-P development -g --force'
95
+ # provide a serve task for those used to Jekyll commands
96
+ desc 'An alias to the preview task'
97
+ task :serve => :preview
98
+
99
+ desc 'Generate the site using the specified profile (default: development)'
100
+ task :gen, [:profile] => :check do |task, args|
101
+ profile = args[:profile] || 'development'
102
+ profile = 'production' if profile == 'prod'
103
+ run_awestruct "-P #{profile} -g --force"
98
104
  end
99
105
 
100
106
  desc 'Generate the site and deploy to production'
@@ -11,7 +11,7 @@ layout: base
11
11
  .panel
12
12
  %h3 Get started
13
13
  %p This site is all setup to use Foundation 4 with Awestruct.
14
- %a.button{:href=>'http://awestruct.org'} Check out Foundation 4
14
+ %a.button{:href=>'http://foundation.zurb.com'} Check out Foundation 4
15
15
  %a.button.secondary{:href=>'http://awestruct.org'} Check out Awestruct
16
16
 
17
17
  .row
@@ -1,4 +1,4 @@
1
1
 
2
2
  module Awestruct
3
- VERSION='0.5.2'
3
+ VERSION='0.5.2.1'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awestruct
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.2.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-06-19 00:00:00.000000000 Z
12
+ date: 2013-07-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: haml
@@ -32,17 +32,17 @@ dependencies:
32
32
  requirement: !ruby/object:Gem::Requirement
33
33
  none: false
34
34
  requirements:
35
- - - ! '>='
35
+ - - '='
36
36
  - !ruby/object:Gem::Version
37
- version: 1.5.6
37
+ version: 1.5.10
38
38
  type: :runtime
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
41
41
  none: false
42
42
  requirements:
43
- - - ! '>='
43
+ - - '='
44
44
  - !ruby/object:Gem::Version
45
- version: 1.5.6
45
+ version: 1.5.10
46
46
  - !ruby/object:Gem::Dependency
47
47
  name: tilt
48
48
  requirement: !ruby/object:Gem::Requirement
@@ -318,6 +318,7 @@ files:
318
318
  - lib/awestruct/dependencies.rb
319
319
  - lib/awestruct/logger.rb
320
320
  - lib/awestruct/engine.rb
321
+ - man/awestruct.1
321
322
  - spec/yaml_handler_spec.rb
322
323
  - spec/mustache_handler_spec.rb
323
324
  - spec/options_spec.rb
@@ -429,7 +430,6 @@ files:
429
430
  - spec/layouts_spec.rb
430
431
  - spec/invoker_spec.rb
431
432
  - spec/deploy_spec.rb
432
- - man/awestruct.1
433
433
  - bin/awestruct
434
434
  homepage: http://awestruct.org
435
435
  licenses:
@@ -446,7 +446,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
446
446
  version: '0'
447
447
  segments:
448
448
  - 0
449
- hash: -3872694940837887019
449
+ hash: -2093287172955700332
450
450
  required_rubygems_version: !ruby/object:Gem::Requirement
451
451
  none: false
452
452
  requirements:
@@ -455,16 +455,125 @@ required_rubygems_version: !ruby/object:Gem::Requirement
455
455
  version: '0'
456
456
  segments:
457
457
  - 0
458
- hash: -3872694940837887019
458
+ hash: -2093287172955700332
459
459
  requirements:
460
460
  - Any markup languages you are using and its dependencies
461
- - If LESS is used, or some other fixes within tilt, it is required to use Bundler
462
- and the :git ref for the tilt gem
463
461
  - Haml and markdown filters are touchy things. Rdiscount works well if you're running
464
- on mri. jRuby should be using haml 4.0.0 with kramdown
462
+ on mri. JRuby should be using haml 4.0.0+ with kramdown
465
463
  rubyforge_project:
466
464
  rubygems_version: 1.8.25
467
465
  signing_key:
468
466
  specification_version: 3
469
467
  summary: Static site-baking utility
470
- test_files: []
468
+ test_files:
469
+ - spec/yaml_handler_spec.rb
470
+ - spec/mustache_handler_spec.rb
471
+ - spec/options_spec.rb
472
+ - spec/posts_archive_spec.rb
473
+ - spec/front_matter_handler_spec.rb
474
+ - spec/orgmode_handler_spec.rb
475
+ - spec/support/shared_handler_example.rb
476
+ - spec/support/emmet_matchers.rb
477
+ - spec/support/nokogiri_matchers.rb
478
+ - spec/astruct_spec.rb
479
+ - spec/engine_spec.rb
480
+ - spec/restructuredtext_handler_spec.rb
481
+ - spec/rsync_deploy_spec.rb
482
+ - spec/coffeescript_handler_spec.rb
483
+ - spec/pipeline_spec.rb
484
+ - spec/page_loader_spec.rb
485
+ - spec/tilt_handler_spec.rb
486
+ - spec/config_spec.rb
487
+ - spec/scss_handler_spec.rb
488
+ - spec/page_delegating_handler_spec.rb
489
+ - spec/test-data/page-loader/page-two.html.haml
490
+ - spec/test-data/page-loader/page-one.md
491
+ - spec/test-data/page-loader/page-draft.md
492
+ - spec/test-data/page-loader/_layouts/layout-one.md
493
+ - spec/test-data/page-loader/_layouts/layout-two.html.haml
494
+ - spec/test-data/engine/_config/site.yml
495
+ - spec/test-data/engine/_config/other.yml
496
+ - spec/test-data/engine/_config/arbitrary.yml
497
+ - spec/test-data/front-matter-file-no-front.txt
498
+ - spec/test-data/stylesheets/screen.css
499
+ - spec/test-data/out-of-site/page-three.html.haml
500
+ - spec/test-data/subdir/index.html
501
+ - spec/test-data/handlers/scss-page-include.scss
502
+ - spec/test-data/handlers/haml-layout-two.html.haml
503
+ - spec/test-data/handlers/haml-page.xml.haml
504
+ - spec/test-data/handlers/markdown-page.mkd
505
+ - spec/test-data/handlers/outside_relative/git_keep
506
+ - spec/test-data/handlers/asciidoctor_with_front_matter.ad
507
+ - spec/test-data/handlers/slim-page.html.slim
508
+ - spec/test-data/handlers/empty-layout.haml
509
+ - spec/test-data/handlers/mustache-page.html.mustache
510
+ - spec/test-data/handlers/haml-page.atom.haml
511
+ - spec/test-data/handlers/scss-page.scss
512
+ - spec/test-data/handlers/markdown-page.markdown
513
+ - spec/test-data/handlers/less-page-with-import.less
514
+ - spec/test-data/handlers/asciidoc-page.adoc
515
+ - spec/test-data/handlers/slim-page.xml.slim
516
+ - spec/test-data/handlers/asciidoc-page.ad
517
+ - spec/test-data/handlers/haml-with-textile-page.html.haml
518
+ - spec/test-data/handlers/inner-page.html.haml
519
+ - spec/test-data/handlers/mustache-page.xml.mustache
520
+ - spec/test-data/handlers/haml-with-variables.html.haml
521
+ - spec/test-data/handlers/asciidoc-page.asciidoc
522
+ - spec/test-data/handlers/sass-page-include.sass
523
+ - spec/test-data/handlers/haml-page.html.haml
524
+ - spec/test-data/handlers/slim-page.atom.slim
525
+ - spec/test-data/handlers/haml-with-markdown-page.html.haml
526
+ - spec/test-data/handlers/asciidoctor_with_headers.ad
527
+ - spec/test-data/handlers/restructuredtext-page.rst
528
+ - spec/test-data/handlers/javascript-page.js
529
+ - spec/test-data/handlers/slim-with-variables.html.slim
530
+ - spec/test-data/handlers/slim-with-markdown-page.html.slim
531
+ - spec/test-data/handlers/haml-with-utf.html.haml
532
+ - spec/test-data/handlers/less-page-include.less
533
+ - spec/test-data/handlers/slim-with-utf.html.slim
534
+ - spec/test-data/handlers/less-page.less
535
+ - spec/test-data/handlers/redirect-page.redirect
536
+ - spec/test-data/handlers/markdown-page.md
537
+ - spec/test-data/handlers/erb-page.html.erb
538
+ - spec/test-data/handlers/orgmode-page.org
539
+ - spec/test-data/handlers/outer-layout.html.haml
540
+ - spec/test-data/handlers/textile-page.textile
541
+ - spec/test-data/handlers/coffeescript-page.coffee
542
+ - spec/test-data/handlers/erb-utf-page.html.erb
543
+ - spec/test-data/handlers/simple-redirect-page.redirect
544
+ - spec/test-data/handlers/erb-page.xml.erb
545
+ - spec/test-data/handlers/haml-layout.html.haml
546
+ - spec/test-data/handlers/sass-page.sass
547
+ - spec/test-data/images/logo.png
548
+ - spec/test-data/front-matter-file-no-content.txt
549
+ - spec/test-data/simple-file.txt
550
+ - spec/test-data/index.html
551
+ - spec/test-data/simple-data.yaml
552
+ - spec/test-data/front-matter-file.txt
553
+ - spec/test-data/javascript/bootstrap-dropdown.js
554
+ - spec/file_handler_spec.rb
555
+ - spec/interpolation_handler_spec.rb
556
+ - spec/page_loader_spec_for_layouts.rb
557
+ - spec/github_pages_deploy_spec.rb
558
+ - spec/context_helper_spec.rb
559
+ - spec/minify_spec.rb
560
+ - spec/sass_handler_spec.rb
561
+ - spec/disqus_spec.rb
562
+ - spec/textile_handler_spec.rb
563
+ - spec/redirect_handler_spec.rb
564
+ - spec/asciidoc_handler_spec.rb
565
+ - spec/handler_chains_spec.rb
566
+ - spec/slim_handler_spec.rb
567
+ - spec/handler_chain_spec.rb
568
+ - spec/javascript_handler_spec.rb
569
+ - spec/server_spec.rb
570
+ - spec/spec_helper.rb
571
+ - spec/erb_handler_spec.rb
572
+ - spec/page_spec.rb
573
+ - spec/less_handler_spec.rb
574
+ - spec/layout_handler_spec.rb
575
+ - spec/haml_handler_spec.rb
576
+ - spec/markdown_handler_spec.rb
577
+ - spec/layouts_spec.rb
578
+ - spec/invoker_spec.rb
579
+ - spec/deploy_spec.rb