-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundle.rb
More file actions
27 lines (23 loc) · 701 Bytes
/
bundle.rb
File metadata and controls
27 lines (23 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require 'ruble'
bundle do |bundle|
bundle.display_name = 'test_ruby_project'
bundle.author = 'My Name'
bundle.copyright = <<END
(c) Copyright 2011 sample.org. Distributed under MIT license.
END
bundle.description = <<END
Sample description
END
# uncomment with the url to the git repo if one exists
# bundle.repository = 'git@github.com:username/repo-name.git'
# Use Commands > Bundle Development > Insert Bundle Section > Menu
# to easily add new sections
bundle.menu 'test_ruby_project' do |menu|
menu.command 'Swap Case'
menu.command 'Sample Snippet'
menu.separator
menu.menu 'Sub Menu' do |sub_menu|
sub_menu.command 'Sample Snippet'
end
end
end