Skip to content

Commit

Permalink
Changed this to a tiny release
Browse files Browse the repository at this point in the history
  • Loading branch information
foobarfighter committed Mar 27, 2009
1 parent c390024 commit a742099
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions CHANGES
@@ -1,8 +1,13 @@
v1.1.0
v1.0.1
======
* Build now copies the entire release path into the javascript director. To see how to address build vs. development
issues, check out the ideapad reference application.
issues, check out the ideapad reference application. This fixes problems caused by external resources not being
loaded from the generated build.

See:
http://github.com/foobarfighter/ideapad/blob/e3dc0b610b71755739d99ed39539385bee99f4d4/app/views/layouts/layout.html.erb
http://github.com/foobarfighter/ideapad/blob/e3dc0b610b71755739d99ed39539385bee99f4d4/.gitignore

* Added drails testing capabilities for multiple versions of rails
* Added Drails::VERSION module

Expand Down
4 changes: 2 additions & 2 deletions lib/drails/version.rb
@@ -1,8 +1,8 @@
module Drails
module VERSION #:nodoc:
MAJOR = 1
MINOR = 1
TINY = 0
MINOR = 0
TINY = 1

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion spec/version_spec.rb
@@ -1,6 +1,6 @@
describe Drails do
it "reports the correct version information" do
expected_version_string = "1.1.0"
expected_version_string = "1.0.1"
Drails::VERSION::STRING.should == expected_version_string
expected_version_array = expected_version_string.split(".").collect { |part| part.to_i }
Drails::VERSION::MAJOR.should == expected_version_array[0]
Expand Down

0 comments on commit a742099

Please sign in to comment.