From 58b502a9130437ae65d472d14ec7bf3912dc402d Mon Sep 17 00:00:00 2001 From: Anthony Heukmes Date: Tue, 27 Jul 2010 10:31:25 +0200 Subject: [PATCH] Update history --- HISTORY | 10 +++++++++- choco.gemspec | 7 ++++++- lib/choco.rb | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/HISTORY b/HISTORY index 2ef97e2..87380c9 100644 --- a/HISTORY +++ b/HISTORY @@ -1,3 +1,11 @@ -== 0.1.0 [07-22-10] +== 0.1.1 [07-27-10] + +* Clean generated HTML (indentation) +* Add lib/application.js file at project generation +* Remove compressed folder +* When a controller is deleted, the watcher script removes it from the app controller +* Add specifications + +== 0.1.0 [07-23-10] * Initial release \ No newline at end of file diff --git a/choco.gemspec b/choco.gemspec index 1318bf0..87d152b 100644 --- a/choco.gemspec +++ b/choco.gemspec @@ -9,7 +9,7 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Anthony Heukmes"] - s.date = %q{2010-07-23} + s.date = %q{2010-07-27} s.default_executable = %q{choco} s.description = %q{Choco brings the MVC to the client side! It allows you to easily develop maintainable Rich Internet Applications using Javascript.} s.email = %q{anthony.heukmes@skynet.be} @@ -48,6 +48,7 @@ Gem::Specification.new do |s| "lib/choco/generators/templates/help/generators", "lib/choco/generators/templates/helpers/application_helper.js", "lib/choco/generators/templates/index.html", + "lib/choco/generators/templates/lib/application.js", "lib/choco/generators/templates/lib/plugin.js", "lib/choco/generators/templates/models/base.js", "lib/choco/generators/templates/views/edit.template", @@ -57,6 +58,8 @@ Gem::Specification.new do |s| "lib/choco/generators/templates/views/new.template", "lib/choco/generators/templates/views/show.template", "spec/choco_spec.rb", + "spec/dependency_manager_spec.rb", + "spec/generators_spec.rb", "spec/spec.opts", "spec/spec_helper.rb" ] @@ -67,6 +70,8 @@ Gem::Specification.new do |s| s.summary = %q{A delicious Javascript web framework made in Belgium!} s.test_files = [ "spec/choco_spec.rb", + "spec/dependency_manager_spec.rb", + "spec/generators_spec.rb", "spec/spec_helper.rb" ] diff --git a/lib/choco.rb b/lib/choco.rb index 73a6691..5176848 100644 --- a/lib/choco.rb +++ b/lib/choco.rb @@ -3,7 +3,7 @@ require 'active_support/inflector' module Choco - VERSION = '0.1.0' + VERSION = '0.1.1' autoload :DependencyManager, 'choco/dependency_manager' autoload :CLI, 'choco/cli'