Travis CI
notif****@travi*****
Fri Feb 7 17:45:22 JST 2014
Build Update for droonga/fluent-plugin-droonga
-------------------------------------
Build: #1079
Status: Errored
Duration: 14 minutes and 12 seconds
Commit: 588068a (master)
Author: Kouhei Sutou
Message: Don't require plugin name for each adapter
Before:
require "droonga/adapter"
module Droonga
module Plugins
module MyPlugin
class Adapter < Droonga::Adapter
plugin.name = "my-plugin"
end
end
end
end
After:
require "droonga/plugin" # <- Add
require "droonga/adapter"
module Droonga
module Plugins
module MyPlugin
Plugin.registry.register("my-plugin", self) # <- Add
class Adapter < Droonga::Adapter
# no plugin.name = "my-plugin"
end
end
end
end
View the changeset: https://github.com/droonga/fluent-plugin-droonga/compare/d21944741832...588068ac5ea0
View the full build log and details: https://travis-ci.org/droonga/fluent-plugin-droonga/builds/18399086
--
You can configure recipients for build notifications in your .travis.yml file. See http://about.travis-ci.org/docs/user/build-configuration
-------------- next part --------------
An HTML attachment was scrubbed...
Download