-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start work on renaming project from Lodo to Dodo
- Loading branch information
Axel Liljencrantz
committed
Oct 20, 2010
1 parent
d0c2093
commit 0169728
Showing
10 changed files
with
26 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Lodo | ||
Lodo is a web based double entry accounting application, built on the [Ruby on Rails](http://rubyonrails.org/) framework. | ||
# Dodo | ||
Dodo is a web based double entry accounting application, built on the [Ruby on Rails](http://rubyonrails.org/) framework. | ||
It is open source, released under the MIT license. | ||
|
||
## Project status | ||
|
@@ -22,7 +22,7 @@ Preliminary feature list for the next milestone: | |
|
||
## Community | ||
* Redmine: <https://projects.freecode.no/projects/show/lodo-ng> | ||
* Source: <http://github.com/lodo/lodo.git>, <https://projects.freecode.no/git/lodo.git> | ||
* Source: <http://github.com/dodo-as/dodo.git>, <https://projects.freecode.no/git/lodo.git> | ||
|
||
## Contributors | ||
* Funding, requirements and some development resources: [Arnt Telhaug](mailto:[email protected]), <http://www.lodo.no/> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Lodo | ||
Lodo is a web based double entry accounting application, built on the [Ruby on Rails](http://rubyonrails.org/) framework. | ||
# Dodo | ||
Dodo is a web based double entry accounting application, built on the [Ruby on Rails](http://rubyonrails.org/) framework. | ||
It is open source, released under AGPLv3. | ||
|
||
## Project status | ||
|
@@ -22,7 +22,7 @@ Preliminary feature list for the next milestone: | |
|
||
## Community | ||
* Redmine: <https://projects.freecode.no/projects/show/lodo-ng> | ||
* Source: <http://github.com/lodo/lodo.git>, <https://projects.freecode.no/git/lodo.git> | ||
* Source: <http://github.com/dodo-as/dodo.git>, <https://projects.freecode.no/git/lodo.git> | ||
|
||
## Contributors | ||
* Funding, requirements and some development resources: [Arnt Telhaug](mailto:[email protected]), <http://www.lodo.no/> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
class RenameLodoName < ActiveRecord::Migration | ||
def self.up | ||
rename_column(:accounts, :lodo_name, :dodo_name) | ||
end | ||
|
||
def self.down | ||
rename_column(:accounts, :dodo_name, :lodo_name) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters