Skip to content

Commit

Permalink
Releasing of version 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Hallison Batista committed Nov 5, 2010
1 parent 41849d2 commit 08f8a43
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

== 2010-11-05

* Releasing of version 0.2.1.
* Updates in documentation.
* Adding of documentation for templates.
* Small fixes in prign executable.
Expand Down
19 changes: 13 additions & 6 deletions lib/prigner.rb
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
#@ ---
#@ :timestamp: 2009-07-16 14:05:16 -04:00
#@ :date: 2010-10-27
#@ :tag: 0.2.0
# encoding: UTF-8

# Copyright (c) 2009, 2010, Hallison Batista
#@ :date: 2010-11-05
#@ :tag: 0.2.1

# The Prigner is a Projec Design Kit which help developers in DRY.
# ---
# encoding: UTF-8
#
# Copyright (c) 2010, Codigorama
# Copyright (c) 2009, Hallison Batista
# +++

# Prigner is a Project Design Kit, that is, a tool which creates a conventional
# structure for several projects as RubyGems, Websites, MVC application and
# simple scripts. It is a DRY tool, because everything is based in templates.
# In short, a project template engine.
module Prigner

# RubyGems
Expand Down
24 changes: 21 additions & 3 deletions prigner.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Gem::Specification.new do |spec|
#about
spec.name = "prigner"
spec.summary = "Project designer."
spec.description = "Prigner is a Project Design Kit."
spec.description = "Prigner is a Project Design Kit (a.k.a. project builder). That is, it is a tool which builds your projects using templates."
spec.authors = ["Hallison Batista"]
spec.email = "[email protected]"
spec.homepage = "http://codigorama.com/products/prigner"
Expand All @@ -14,8 +14,8 @@ Gem::Specification.new do |spec|
#

#version
spec.version = "0.2.0"
spec.date = "2010-10-27"
spec.version = "0.2.1"
spec.date = "2010-11-05"
#

#dependencies
Expand All @@ -28,6 +28,7 @@ Gem::Specification.new do |spec|
"COPYING",
"README.rdoc",
"Rakefile",
"TEMPLATES.rdoc",
"bin/prign",
"lib/prigner.rb",
"lib/prigner/builder.rb",
Expand Down Expand Up @@ -60,6 +61,23 @@ Gem::Specification.new do |spec|
"share/templates/ruby/gem/models/module.rb",
"share/templates/ruby/gem/models/testhelper.rb",
"share/templates/ruby/gem/specfile",
"share/templates/ruby/sinatra/models/CHANGELOG",
"share/templates/ruby/sinatra/models/LICENSE",
"share/templates/ruby/sinatra/models/README.rdoc",
"share/templates/ruby/sinatra/models/Rakefile",
"share/templates/ruby/sinatra/models/application.rb",
"share/templates/ruby/sinatra/models/cli.rb",
"share/templates/ruby/sinatra/models/config.ru",
"share/templates/ruby/sinatra/models/executable",
"share/templates/ruby/sinatra/models/gemspec",
"share/templates/ruby/sinatra/models/module.rb",
"share/templates/ruby/sinatra/models/mvc/config.rb",
"share/templates/ruby/sinatra/models/mvc/controller.rb",
"share/templates/ruby/sinatra/models/mvc/database.yml",
"share/templates/ruby/sinatra/models/mvc/model.rb",
"share/templates/ruby/sinatra/models/mvc/view.erb",
"share/templates/ruby/sinatra/models/testhelper.rb",
"share/templates/ruby/sinatra/specfile",
"test/builder_test.rb",
"test/fixtures/model.rb.erb",
"test/fixtures/templates/shared/templates/ruby/default/models/README.mkd",
Expand Down

0 comments on commit 08f8a43

Please sign in to comment.