aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/examples/metaWeblog/README
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-02-18 23:43:09 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-02-18 23:43:09 +0000
commit7a67d0f617db7d2962b6c3b80466e21570b244bf (patch)
tree56fa640e31f4f7f22d34a246bc1b197706a07e3a /actionwebservice/examples/metaWeblog/README
parentfdecb6843ba8c5b0f718225f343017e11fa7f711 (diff)
downloadrails-7a67d0f617db7d2962b6c3b80466e21570b244bf.tar.gz
rails-7a67d0f617db7d2962b6c3b80466e21570b244bf.tar.bz2
rails-7a67d0f617db7d2962b6c3b80466e21570b244bf.zip
Renamed Action Service to Action Web Service
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@669 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/examples/metaWeblog/README')
-rw-r--r--actionwebservice/examples/metaWeblog/README28
1 files changed, 28 insertions, 0 deletions
diff --git a/actionwebservice/examples/metaWeblog/README b/actionwebservice/examples/metaWeblog/README
new file mode 100644
index 0000000000..f8a56d7018
--- /dev/null
+++ b/actionwebservice/examples/metaWeblog/README
@@ -0,0 +1,28 @@
+= metaWeblog example
+
+
+This example shows how one might begin to go about adding metaWeblog
+(http://www.xmlrpc.com/metaWeblogApi) API support to a Rails-based
+blogging application.
+
+
+= Running
+
+ 1. Ensure you have the 'actionservice' Gem installed. You can generate it using
+ this command:
+
+ $ rake package
+
+
+ 2. Edit config/environment.rb, and add the following line after the rest of the
+ require_gem statements:
+
+ require_gem 'actionservice'
+
+
+ 3. Copy blog_controller.rb to "app/controllers" in a Rails project.
+
+
+ 4. Fire up a desktop blogging application (such as BloGTK on Linux),
+ point it at http://localhost:3000/blog/api, and try creating or
+ editing blog posts.