Skip to content

Commit

Permalink
Update history
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Heukmes committed Jul 27, 2010
1 parent 76317cc commit 58b502a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
10 changes: 9 additions & 1 deletion 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
7 changes: 6 additions & 1 deletion choco.gemspec
Expand Up @@ -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}
Expand Down Expand Up @@ -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",
Expand All @@ -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"
]
Expand All @@ -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"
]

Expand Down
2 changes: 1 addition & 1 deletion lib/choco.rb
Expand Up @@ -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'
Expand Down

0 comments on commit 58b502a

Please sign in to comment.