<feed xmlns='http://www.w3.org/2005/Atom'>
<title>tapicero.git/lib/tapicero_daemon.rb, branch 0.3.2</title>
<subtitle>[tapicero] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/tapicero.git/'/>
<entry>
<title>add design docs on db creation, use Pathname</title>
<updated>2013-12-19T14:59:55+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2013-12-19T14:59:55+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/tapicero.git/commit/?id=f47712d803811f06b4371f50fabdfc1fefffe4cc'/>
<id>f47712d803811f06b4371f50fabdfc1fefffe4cc</id>
<content type='text'>
Pathname makes dealing with files easier than String.

Tapicero will look for design documents in design directory in the tapicero path for now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Pathname makes dealing with files easier than String.

Tapicero will look for design documents in design directory in the tapicero path for now.
</pre>
</div>
</content>
</entry>
<entry>
<title>Version 0.2.0: use CouchRest::Changes</title>
<updated>2013-12-19T12:18:28+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2013-12-19T12:18:28+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/tapicero.git/commit/?id=e4df501035434cbb1920ccca21e489599b5ad382'/>
<id>e4df501035434cbb1920ccca21e489599b5ad382</id>
<content type='text'>
This also changes the format of the config file. Please make sure to adjust it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This also changes the format of the config file. Please make sure to adjust it.
</pre>
</div>
</content>
</entry>
<entry>
<title>use our logger - not just puts</title>
<updated>2013-11-18T16:23:40+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2013-11-18T16:23:40+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/tapicero.git/commit/?id=8e1f23521eac0586ec13bdf502bd37a09f53a4a0'/>
<id>8e1f23521eac0586ec13bdf502bd37a09f53a4a0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>delete user db's on user deletion.</title>
<updated>2013-11-18T16:21:00+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2013-11-18T16:20:51+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/tapicero.git/commit/?id=0cc941bb4e46489fb6eb9f8f3282ee3a6c046449'/>
<id>0cc941bb4e46489fb6eb9f8f3282ee3a6c046449</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add a hook for reacting on user deletion.</title>
<updated>2013-11-18T16:21:00+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2013-11-18T16:18:34+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/tapicero.git/commit/?id=38e21726bb9e8f6e0391e50d82e79821fd6c459f'/>
<id>38e21726bb9e8f6e0391e50d82e79821fd6c459f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>log to file or syslog instead of STDOUT</title>
<updated>2013-09-25T10:29:48+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2013-09-25T10:29:48+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/tapicero.git/commit/?id=377195ce83c22c3a3771565cf15f6a06f1440b06'/>
<id>377195ce83c22c3a3771565cf15f6a06f1440b06</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>use CouchRest::Database#changes, store and retrieve seq</title>
<updated>2013-09-12T07:57:45+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2013-09-12T07:57:45+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/tapicero.git/commit/?id=37f87300c9804bdad66d730b676715e242b9ca42'/>
<id>37f87300c9804bdad66d730b676715e242b9ca42</id>
<content type='text'>
This commit bundles a few different changes:
* we now use the CouchRest::Database#changes stream instead of our own
* we store and read the last sequence number so on a restart we can start where we left
* we now have a UserDatabase class rather than the CouchDatabaseCreator. It also knows about it's name and we create an instance of it per database we want to create. It's also more flexible when the databases already exist.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit bundles a few different changes:
* we now use the CouchRest::Database#changes stream instead of our own
* we store and read the last sequence number so on a restart we can start where we left
* we now have a UserDatabase class rather than the CouchDatabaseCreator. It also knows about it's name and we create an instance of it per database we want to create. It's also more flexible when the databases already exist.
</pre>
</div>
</content>
</entry>
<entry>
<title>use password and username from the config file</title>
<updated>2013-09-11T06:58:13+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2013-09-11T06:58:13+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/tapicero.git/commit/?id=929fcdea37f92f6b175482c6e0d1b8ff3229854f'/>
<id>929fcdea37f92f6b175482c6e0d1b8ff3229854f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>write _security to fresh couch</title>
<updated>2013-09-11T06:31:22+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2013-09-11T06:31:22+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/tapicero.git/commit/?id=21fb605e3a57455e4a46c495ffcf36502f8fd1b9'/>
<id>21fb605e3a57455e4a46c495ffcf36502f8fd1b9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>create couch dbs as users are created</title>
<updated>2013-09-11T06:00:09+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2013-09-11T06:00:09+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/tapicero.git/commit/?id=3c879a45a0f923e9dc9d7fc25cc04c3be7ffefae'/>
<id>3c879a45a0f923e9dc9d7fc25cc04c3be7ffefae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
