Skip to content

Commit

Permalink
Cleared out all old Rails application stuff.
Browse files Browse the repository at this point in the history
  • Loading branch information
rubiety committed Oct 18, 2010
1 parent aebfbdd commit 5db53c5
Show file tree
Hide file tree
Showing 160 changed files with 27 additions and 23,549 deletions.
7 changes: 1 addition & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
log/*.log
tmp/**/*
.DS_Store
public/cache/**/*
doc/api
doc/app
db/schema.rb
db/schema.sql
db/schema.sql
14 changes: 14 additions & 0 deletions CHANGELOG.rdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
== 0.1.0 [2010-10-20] Modernization
* Upgraded to RSpec 2.0
* Ditched Controllers/Rails Application
* Reworked all models to use in-memory ActiveModel instead of ActiveRecord
* Internal Refactoring
* Released as a Gem

== 2008-08-24:
* Upgraded to Rails 2.1
* Refactored models to use new Rails 2.1 features.

== Old:
* Implemented REST Interface
* Added RSpec
7 changes: 0 additions & 7 deletions CHANGELOG.txt

This file was deleted.

3 changes: 0 additions & 3 deletions Capfile

This file was deleted.

18 changes: 11 additions & 7 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require(File.join(File.dirname(__FILE__), 'config', 'boot'))

require 'rubygems'
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

require 'tasks/rails'
desc "Generate documentation for the plugin."
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = "rdoc"
rdoc.title = "message_block"
rdoc.options << "--line-numbers" << "--inline-source"
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('lib/**/*.rb')
end

Dir["#{File.dirname(__FILE__)}/lib/tasks/*.rake"].sort.each { |ext| load ext }
2 changes: 0 additions & 2 deletions TODO.txt

This file was deleted.

2 changes: 1 addition & 1 deletion app/models/tone_sequence.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def in_key_of(in_key = nil)
self
end

# Shifts indexes to simulat a key change
# Shifts indexes to simulate a key change
def in_key_context!
self.each do |tone|
tone.tone = (tone.tone + key.index) % 12
Expand Down
110 changes: 0 additions & 110 deletions config/boot.rb

This file was deleted.

23 changes: 0 additions & 23 deletions config/database.yml

This file was deleted.

47 changes: 0 additions & 47 deletions config/deploy.rb

This file was deleted.

59 changes: 0 additions & 59 deletions config/environment.rb

This file was deleted.

17 changes: 0 additions & 17 deletions config/environments/development.rb

This file was deleted.

19 changes: 0 additions & 19 deletions config/environments/production.rb

This file was deleted.

29 changes: 0 additions & 29 deletions config/environments/test.rb

This file was deleted.

10 changes: 0 additions & 10 deletions config/initializers/inflections.rb

This file was deleted.

Loading

0 comments on commit 5db53c5

Please sign in to comment.