moka 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.1.5. Authors are now Luca Ongaro and Luca Tironi
2
+
1
3
  v0.1.4. Improved explanations in README.rdoc
2
4
 
3
5
  v0.1.3. Some explanations in README.rdoc
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010 Luca Ongaro
1
+ Copyright (c) 2010 Luca Ongaro, Luca Tironi
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -1,6 +1,6 @@
1
1
  == Welcome to Moka
2
2
 
3
- Moka is a damn simple framework designed to build static websites like portfolios, showcases, minisites, HTML mockups, etc. Moka setup takes a single command, and it provides you with a hierarchical template system and some hyper-convenient helper functions so you never have to write more code than necessary. The result of your work is compiled to plain HTML, CSS and Javascript: you just need to upload it to your server to deploy it. Add as a bonus the Lipsum helpers, with which you can generate dummy text with a single line of code during development or in HTML mockups.
3
+ Moka is a damn simple framework designed to build static websites like portfolios, showcases, minisites, HTML mockups, etc. Moka setup takes a single command, and it provides you with a hierarchical template system and some super-convenient helper functions so you never have to write more code than necessary. The result of your work is compiled to plain HTML, CSS and Javascript: you just need to upload it to your server to deploy it. Add as a bonus the Lipsum helpers, with which you can generate dummy text with a single line of code during development or in HTML mockups.
4
4
 
5
5
  Moka values:
6
6
  - Don't Repeat Yourself
data/Rakefile CHANGED
@@ -4,10 +4,10 @@ require 'echoe'
4
4
 
5
5
  Echoe.new('moka') do |p|
6
6
  p.summary = "An damn simple static website framework."
7
- p.description = "Moka is a damn simple framework designed to build static websites like portfolios, showcases, minisites, HTML mockups, etc. Moka setup takes a single command, and it provides a hierarchical template system and some hyper-convenient helper functions so you never have to write more code than necessary. The result of your work is compiled to plain HTML, CSS and Javascript, so you just have to upload it to your server. Plus, don't forget the Lipsum helper functions to generate dummy text with a single line of code during development or in HTML mockups."
7
+ p.description = "Moka is a damn simple framework designed to build static websites like portfolios, showcases, minisites, HTML mockups, etc. Moka setup takes a single command, and it provides you with a hierarchical template system and some super-convenient helper functions so you never have to write more code than necessary. The result of your work is compiled to plain HTML, CSS and Javascript: you just need to upload it to your server to deploy it. Add as a bonus the Lipsum helpers, with which you can generate dummy text with a single line of code during development or in HTML mockups."
8
8
  p.url = "https://github.com/DukeLeNoir/Moka"
9
- p.author = "Luca Ongaro"
10
- p.email = "mail@lucaongaro.eu"
9
+ p.author = ["Luca Ongaro", "Luca Tironi"]
10
+ p.email = ["mail@lucaongaro.eu", "luca.tironi@gmail.com"]
11
11
  p.install_message= "Welcome aboard Moka. You'll love it!"
12
12
  p.ignore_pattern = ["TODOs"]
13
13
  p.runtime_dependencies = ["thor", "haml"]
@@ -4,7 +4,7 @@ require 'getoptlong'
4
4
  module Moka
5
5
  class SimpleServer
6
6
  require 'webrick'
7
- require "yaml"
7
+ require 'yaml'
8
8
  require File.expand_path('lib/compiler', File.dirname(__FILE__))
9
9
  include WEBrick
10
10
 
@@ -116,7 +116,7 @@ Usage:
116
116
 
117
117
  moka server [port]
118
118
 
119
- Start an extremely simple development server on http://localhost:8080/ or on the port specified as the first argument. This server eliminates the need to re-compile pages after each change, but it is only intended for development purpose. Currently, it only serves static HTML pages, and recognizes a limited number of content types.
119
+ Start an extremely simple development server on http://localhost:3333/ or on the port specified as the first argument. This server eliminates the need to re-compile pages after each change, but it is only intended for development purpose. Currently, it only serves static HTML pages, and recognizes a limited number of content types.
120
120
  EOT
121
121
  exit
122
122
  end
@@ -1,14 +1,14 @@
1
1
  <div class="box">
2
- <h3>Paragraphs</h3>
3
- <%= Lipsum.paragraphs 2 %>
4
- <h3>Quote</h3>
5
- <blockquote>
6
- <%= Lipsum.paragraphs 1 %>
7
- </blockquote>
8
- <h3>A List</h3>
9
- <ul>
10
- <% Lipsum.sentences(8) do |item| %>
11
- <li><%= item %></li>
12
- <% end %>
13
- </ul>
2
+ <h3>Paragraphs</h3>
3
+ <%= Lipsum.paragraphs 2 %>
4
+ <h3>Quote</h3>
5
+ <blockquote>
6
+ <%= Lipsum.paragraphs 1 %>
7
+ </blockquote>
8
+ <h3>A List</h3>
9
+ <ul>
10
+ <% Lipsum.sentences(8) do |item| %>
11
+ <li><%= item %></li>
12
+ <% end %>
13
+ </ul>
14
14
  </div>
@@ -1,4 +1,4 @@
1
- <DOCTYPE html>
1
+ <!DOCTYPE html>
2
2
  <html>
3
3
  <head>
4
4
  <title><%= @current_page.respond_to?(:title) ? @current_page.title : @current_page.name.titleize %></title>
@@ -24,10 +24,10 @@ body
24
24
  a
25
25
  color: #fff
26
26
  text-decoration: none
27
-
27
+
28
28
  #logo
29
29
  padding: 2em 3em 1em 3em
30
-
30
+
31
31
  #nav
32
32
  padding: 0 3em
33
33
  width: auto
@@ -47,7 +47,7 @@ body
47
47
  color: #fff
48
48
  a:hover
49
49
  text-decoration: underline
50
-
50
+
51
51
  #content
52
52
  padding: 0 3em 2em 3em
53
53
  margin: 0
@@ -2,4 +2,4 @@
2
2
 
3
3
  MOKA_ROOT = File.expand_path("../../", File.dirname(__FILE__))
4
4
  require "rubygems"
5
- gem "moka", "0.1.4"
5
+ gem "moka", "0.1.5"
@@ -2,7 +2,7 @@ module Moka
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 4
5
+ TINY = 5
6
6
  BUILD = "beta"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
@@ -2,14 +2,14 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{moka}
5
- s.version = "0.1.4"
5
+ s.version = "0.1.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["Luca Ongaro"]
9
- s.date = %q{2010-11-29}
8
+ s.authors = ["Luca Ongaro, Luca Tironi"]
9
+ s.date = %q{2010-12-01}
10
10
  s.default_executable = %q{moka}
11
- s.description = %q{Moka is a damn simple framework designed to build static websites like portfolios, showcases, minisites, HTML mockups, etc. Moka setup takes a single command, and it provides a hierarchical template system and some hyper-convenient helper functions so you never have to write more code than necessary. The result of your work is compiled to plain HTML, CSS and Javascript, so you just have to upload it to your server. Plus, don't forget the Lipsum helper functions to generate dummy text with a single line of code during development or in HTML mockups.}
12
- s.email = %q{mail@lucaongaro.eu}
11
+ s.description = %q{Moka is a damn simple framework designed to build static websites like portfolios, showcases, minisites, HTML mockups, etc. Moka setup takes a single command, and it provides you with a hierarchical template system and some super-convenient helper functions so you never have to write more code than necessary. The result of your work is compiled to plain HTML, CSS and Javascript: you just need to upload it to your server to deploy it. Add as a bonus the Lipsum helpers, with which you can generate dummy text with a single line of code during development or in HTML mockups.}
12
+ s.email = ["mail@lucaongaro.eu", "luca.tironi@gmail.com"]
13
13
  s.executables = ["moka"]
14
14
  s.extra_rdoc_files = ["CHANGELOG", "LICENSE.txt", "README.rdoc", "bin/moka", "lib/commands.rb", "lib/commands/compile.rb", "lib/commands/delete.rb", "lib/commands/group/delete.rb", "lib/commands/group/group_generator.rb", "lib/commands/group/inspect.rb", "lib/commands/group/new.rb", "lib/commands/group/template/groupdir/variables.yml", "lib/commands/inspect.rb", "lib/commands/lib/compiler.rb", "lib/commands/lib/helpers.rb", "lib/commands/lib/lipsum_constants.rb", "lib/commands/lib/lipsum_helpers.rb", "lib/commands/lib/page_scope.rb", "lib/commands/lib/partials_inclusion.rb", "lib/commands/lib/site_tree.rb", "lib/commands/lib/string_inflectors.rb", "lib/commands/lib/utilities.rb", "lib/commands/new.rb", "lib/commands/order_groups.rb", "lib/commands/order_pages.rb", "lib/commands/page/delete.rb", "lib/commands/page/inspect.rb", "lib/commands/page/new.rb", "lib/commands/page/page_generator.rb", "lib/commands/page/template/pagedir/variables.yml", "lib/commands/server.rb", "lib/commands/site/inspect.rb", "lib/commands/site/new.rb", "lib/commands/site/site_generator.rb", "lib/commands/site/template/manifest.yml", "lib/commands/site/template/project/lib/helpers.rb", "lib/commands/site/template/project/site/content.erb", "lib/commands/site/template/project/site/header.erb", "lib/commands/site/template/project/site/layout.erb", "lib/commands/site/template/project/site/navigation.erb", "lib/commands/site/template/project/site/variables.yml", "lib/commands/site/template/project/styles/style.sass", "lib/commands/site/template/script/config/boot.rb", "lib/commands/site/template/script/moka", "lib/script_moka_loader.rb", "lib/version.rb"]
15
15
  s.files = ["CHANGELOG", "LICENSE.txt", "Manifest", "README.rdoc", "Rakefile", "bin/moka", "lib/commands.rb", "lib/commands/compile.rb", "lib/commands/delete.rb", "lib/commands/group/delete.rb", "lib/commands/group/group_generator.rb", "lib/commands/group/inspect.rb", "lib/commands/group/new.rb", "lib/commands/group/template/groupdir/variables.yml", "lib/commands/inspect.rb", "lib/commands/lib/compiler.rb", "lib/commands/lib/helpers.rb", "lib/commands/lib/lipsum_constants.rb", "lib/commands/lib/lipsum_helpers.rb", "lib/commands/lib/page_scope.rb", "lib/commands/lib/partials_inclusion.rb", "lib/commands/lib/site_tree.rb", "lib/commands/lib/string_inflectors.rb", "lib/commands/lib/utilities.rb", "lib/commands/new.rb", "lib/commands/order_groups.rb", "lib/commands/order_pages.rb", "lib/commands/page/delete.rb", "lib/commands/page/inspect.rb", "lib/commands/page/new.rb", "lib/commands/page/page_generator.rb", "lib/commands/page/template/pagedir/variables.yml", "lib/commands/server.rb", "lib/commands/site/inspect.rb", "lib/commands/site/new.rb", "lib/commands/site/site_generator.rb", "lib/commands/site/template/manifest.yml", "lib/commands/site/template/project/lib/helpers.rb", "lib/commands/site/template/project/site/content.erb", "lib/commands/site/template/project/site/header.erb", "lib/commands/site/template/project/site/layout.erb", "lib/commands/site/template/project/site/navigation.erb", "lib/commands/site/template/project/site/variables.yml", "lib/commands/site/template/project/styles/style.sass", "lib/commands/site/template/script/config/boot.rb", "lib/commands/site/template/script/moka", "lib/script_moka_loader.rb", "lib/version.rb", "moka.gemspec"]
metadata CHANGED
@@ -5,16 +5,16 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 4
9
- version: 0.1.4
8
+ - 5
9
+ version: 0.1.5
10
10
  platform: ruby
11
11
  authors:
12
- - Luca Ongaro
12
+ - Luca Ongaro, Luca Tironi
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-11-29 00:00:00 +01:00
17
+ date: 2010-12-01 00:00:00 +01:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -41,8 +41,10 @@ dependencies:
41
41
  version: "0"
42
42
  type: :runtime
43
43
  version_requirements: *id002
44
- description: Moka is a damn simple framework designed to build static websites like portfolios, showcases, minisites, HTML mockups, etc. Moka setup takes a single command, and it provides a hierarchical template system and some hyper-convenient helper functions so you never have to write more code than necessary. The result of your work is compiled to plain HTML, CSS and Javascript, so you just have to upload it to your server. Plus, don't forget the Lipsum helper functions to generate dummy text with a single line of code during development or in HTML mockups.
45
- email: mail@lucaongaro.eu
44
+ description: "Moka is a damn simple framework designed to build static websites like portfolios, showcases, minisites, HTML mockups, etc. Moka setup takes a single command, and it provides you with a hierarchical template system and some super-convenient helper functions so you never have to write more code than necessary. The result of your work is compiled to plain HTML, CSS and Javascript: you just need to upload it to your server to deploy it. Add as a bonus the Lipsum helpers, with which you can generate dummy text with a single line of code during development or in HTML mockups."
45
+ email:
46
+ - mail@lucaongaro.eu
47
+ - luca.tironi@gmail.com
46
48
  executables:
47
49
  - moka
48
50
  extensions: []