PageRenderTime 41ms CodeModel.GetById 13ms RepoModel.GetById 1ms app.codeStats 0ms

/init.rb

https://bitbucket.org/ageis/redmine_bitbucket
Ruby | 15 lines | 13 code | 2 blank | 0 comment | 0 complexity | bfbdd830259b812483bacc54dedacba7 MD5 | raw file
  1. Redmine::Plugin.register :redmine_bitbucket do
  2. name 'Redmine Bitbucket plugin'
  3. author 'Steve Qian'
  4. description 'This plugin allows you to update your local repositories in Redmine when changes have been pushed to Bitbucket.'
  5. version '0.1.0'
  6. url 'https://bitbucket.org/steveqx/redmine_bitbucket'
  7. settings :default => {
  8. :service_enabled => true,
  9. :auto_create => true,
  10. :local_path => 'repos',
  11. :key => '',
  12. }, :partial => 'settings/redmine_bitbucket'
  13. end