<feed xmlns='http://www.w3.org/2005/Atom'>
<title>notmuch/bindings/ruby/defs.h, branch 0.28</title>
<subtitle>thread-based email index, search, and tagging</subtitle>
<id>https://git.notmuchmail.org/git/notmuch/atom?h=0.28</id>
<link rel='self' href='https://git.notmuchmail.org/git/notmuch/atom?h=0.28'/>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/'/>
<updated>2016-06-05T11:32:17Z</updated>
<entry>
<title>Use https instead of http where possible</title>
<updated>2016-06-05T11:32:17Z</updated>
<author>
<name>Daniel Kahn Gillmor</name>
<email>dkg@fifthhorseman.net</email>
</author>
<published>2016-06-02T16:26:14Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=6a833a6e83865f6999707cc30768d07e1351c2cb'/>
<id>urn:sha1:6a833a6e83865f6999707cc30768d07e1351c2cb</id>
<content type='text'>
Many of the external links found in the notmuch source can be resolved
using https instead of http.  This changeset addresses as many as i
could find, without touching the e-mail corpus or expected outputs
found in tests.
</content>
</entry>
<entry>
<title>ruby: add bindings for `notmuch_database_get_all_tags`</title>
<updated>2016-05-19T11:02:43Z</updated>
<author>
<name>Ludovic LANGE</name>
<email>ll-notmuchmail@lange.nom.fr</email>
</author>
<published>2016-03-06T11:56:28Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=7e6e23c36e290d4b22b0449766a6ef2107f1ef6c'/>
<id>urn:sha1:7e6e23c36e290d4b22b0449766a6ef2107f1ef6c</id>
<content type='text'>
The Ruby bindings were missing a way to get all the tags of the
database. Now you should be able to access this with the public
instance method `all_tags` of your database object.

Example of use:
    notmuchdb = Notmuch::Database.new path, { :create =&gt; false,
    	:mode =&gt; Notmuch::MODE_READ_ONLY }

    my_tags = notmuchdb.all_tags

    my_tags.each { |tag|
      print tag
    }

    my_tags.destroy!

Amended by db: improve error reporting, add test
</content>
</entry>
<entry>
<title>ruby: Add wrapper for notmuch_query_count_threads</title>
<updated>2014-05-17T21:39:58Z</updated>
<author>
<name>Wael M. Nasreddine</name>
<email>wael.nasreddine@gmail.com</email>
</author>
<published>2014-05-10T21:40:11Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=0629afeb2668ce2f60e8efe65cdab868a1e1b257'/>
<id>urn:sha1:0629afeb2668ce2f60e8efe65cdab868a1e1b257</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ruby: Add bindings for notmuch_thread_get_messages</title>
<updated>2013-02-19T00:23:40Z</updated>
<author>
<name>Austin Clements</name>
<email>amdragon@MIT.EDU</email>
</author>
<published>2012-11-25T04:57:07Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=c4f96d09312532d378c51b2a0e0128108fba4a2c'/>
<id>urn:sha1:c4f96d09312532d378c51b2a0e0128108fba4a2c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ruby: extern linkage portability improvement</title>
<updated>2012-06-30T01:24:17Z</updated>
<author>
<name>Tomi Ollila</name>
<email>tomi.ollila@iki.fi</email>
</author>
<published>2012-06-24T18:48:34Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=d796dad4edce71c1cfb245ffd2c438f26c84f804'/>
<id>urn:sha1:d796dad4edce71c1cfb245ffd2c438f26c84f804</id>
<content type='text'>
Some C compilers are stricter when it comes to (tentative) definition
of a variable -- in those compilers introducing variable without 'extern'
keyword always allocates new 'storage' to the variable and linking all
these modules fails due to duplicate symbols.

This is reimplementation of Charlie Allom's patch:
id:"1336481467-66356-1-git-send-email-charlie@mediasp.com",
written originally by Ali Polatel. This version has
more accurate commit message.
</content>
</entry>
<entry>
<title>Revert "ruby: Add workarounds to use in-tree build not the installed one"</title>
<updated>2012-05-25T13:11:31Z</updated>
<author>
<name>Felipe Contreras</name>
<email>felipe.contreras@gmail.com</email>
</author>
<published>2012-05-25T13:08:17Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=35cb1c95cc8afa964900d29c813349ad8e24e7a8'/>
<id>urn:sha1:35cb1c95cc8afa964900d29c813349ad8e24e7a8</id>
<content type='text'>
This reverts commit 82b73ffd7380b85d259eeb91100dd6ac2d14223a.

Only leave the copyright changes.

Signed-off-by: Felipe Contreras &lt;felipe.contreras@gmail.com&gt;
</content>
</entry>
<entry>
<title>ruby: Add wrapper for notmuch_query_set_omit_excluded()</title>
<updated>2012-05-08T13:34:50Z</updated>
<author>
<name>Ali Polatel</name>
<email>alip@exherbo.org</email>
</author>
<published>2012-05-07T15:02:46Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=a8e010962f257aaba0218392542cbfb1d14eddfd'/>
<id>urn:sha1:a8e010962f257aaba0218392542cbfb1d14eddfd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ruby: Add workarounds to use in-tree build not the installed one</title>
<updated>2012-05-08T13:34:33Z</updated>
<author>
<name>Ali Polatel</name>
<email>alip@exherbo.org</email>
</author>
<published>2012-05-07T15:02:45Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=82b73ffd7380b85d259eeb91100dd6ac2d14223a'/>
<id>urn:sha1:82b73ffd7380b85d259eeb91100dd6ac2d14223a</id>
<content type='text'>
- Make mkmf use the notmuch.h under ../../lib
- Use libnotmuch.a instead of linking to the installed libnotmuch.so
</content>
</entry>
<entry>
<title>ruby: Add wrapper for notmuch_query_add_tag_exclude</title>
<updated>2012-05-08T13:32:56Z</updated>
<author>
<name>Ali Polatel</name>
<email>alip@exherbo.org</email>
</author>
<published>2012-05-07T15:02:44Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=92680f12ebd276952ae51ff271526f4dd995a18a'/>
<id>urn:sha1:92680f12ebd276952ae51ff271526f4dd995a18a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ruby: Add wrapper for notmuch_query_count_messages</title>
<updated>2012-05-08T13:32:45Z</updated>
<author>
<name>Ali Polatel</name>
<email>alip@exherbo.org</email>
</author>
<published>2012-05-07T15:02:43Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=d0000daab3f2b04b6b39210dd219de26fa2c8c13'/>
<id>urn:sha1:d0000daab3f2b04b6b39210dd219de26fa2c8c13</id>
<content type='text'>
</content>
</entry>
</feed>
