notmuch/bindings
Ludovic LANGE 7e6e23c36e ruby: add bindings for notmuch_database_get_all_tags
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 => false,
    	:mode => 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
2016-05-19 08:02:43 -03:00
..
go go: add binding for notmuch_message_get_date 2015-03-08 08:25:44 +01:00
python bump version and NEWS date for 0.22 release 2016-04-26 21:36:53 -03:00
ruby ruby: add bindings for notmuch_database_get_all_tags 2016-05-19 08:02:43 -03:00
Makefile build: integrate building ruby bindings into notmuch build process 2015-06-12 09:12:28 +02:00
Makefile.local bindings: drop build time message on missing ruby dependency 2016-04-16 08:26:40 -03:00