PageRenderTime 51ms CodeModel.GetById 26ms RepoModel.GetById 1ms app.codeStats 0ms

/init.rb

https://bitbucket.org/remery/redmine_bitbucket
Ruby | 15 lines | 13 code | 2 blank | 0 comment | 0 complexity | 6816821e14ef94f7ac499d41025c9322 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.0.1'
  6. url 'https://bitbucket.org/steveqx/redmine_bitbucket'
  7. settings :default => {
  8. :service_enabled => true,
  9. :auto_create => true,
  10. :local_path => 'bitbucket_repos',
  11. :key => '',
  12. }, :partial => 'settings/redmine_bitbucket'
  13. end