Project DescriptionFor the IronRuby In Action book I wrote a limited implementation of Twitter.
This might be useful for other people so I decided to put it up here on Codeplex.
It should have the same urls for API calls as twitter does except for the domain of course ;)
It is written in Rails
It is by no means finished at this point and only implements the API I needed but it's pretty easy to add new stuff.
The idea is that it should run on IronRuby but at this moment it doesn't yet. So you need to get
Ruby 1.8.6 or 1.8.7 (MRI):
http://www.ruby-lang.org/en/downloads/And as gems you need:
(sudo) gem install rails
(sudo) gem install rspec
(sudo) gem install rspec-rails
(sudo) gem install sqlite3-rubyTo run the project you need to navigate into the twitter folder of the repository and execute the following command:
script/serverYou can specify your own data that is to be loaded in the database by editing twitter/db/fixtures/*.yml
and then to populate the database with that data run:
RAILS_ENV=development rake db:fixtures:load FIXTURES_PATH='db/fixtures'