views:

41

answers:

4

Are there any online services/servers that could store information like:

username
email
company information

So that it could be retrieved by Ruby script?

+1  A: 

Yes, they are also known as databases.

You can set up your own db if you have a server, or you can try and find someone who will host databases for you (try Googling "Free MySQL" for example)

NullUserException
+1  A: 

Amazon S3 is an online server that stores your variables, properties, files online and allows you to retrieve them via kind of API.

floatless
+1  A: 

With a small amount of knowledge about how git works, you could easily set up a 1-file rack or Sinatra application on heroku to do this.

Joshua Cheek
+1  A: 

For a simple key/value store in the cloud check out Amazon SimpleDB

For complex relational data use a database. If you want a database in the cloud check-out Amazon RDS.

ToddH
Also, check-out this article on using SimpleDB with Ruby http://geekin.gs/using-amazon-aws-simpledb-with-ruby-roundup
ToddH