TwP-bones 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. data/History.txt +183 -0
  2. data/README.rdoc +370 -0
  3. data/Rakefile +59 -0
  4. data/bin/bones +7 -0
  5. data/data/.bnsignore +12 -0
  6. data/data/History.txt.bns +4 -0
  7. data/data/README.txt.bns +48 -0
  8. data/data/Rakefile.bns +30 -0
  9. data/data/bin/NAME.bns +8 -0
  10. data/data/lib/NAME.rb.bns +49 -0
  11. data/data/spec/NAME_spec.rb.bns +7 -0
  12. data/data/spec/spec_helper.rb.bns +16 -0
  13. data/data/test/test_NAME.rb +0 -0
  14. data/lib/bones/annotation_extractor.rb +111 -0
  15. data/lib/bones/app/command.rb +130 -0
  16. data/lib/bones/app/create_command.rb +86 -0
  17. data/lib/bones/app/file_manager.rb +176 -0
  18. data/lib/bones/app/freeze_command.rb +72 -0
  19. data/lib/bones/app/info_command.rb +58 -0
  20. data/lib/bones/app/unfreeze_command.rb +53 -0
  21. data/lib/bones/app/update_command.rb +47 -0
  22. data/lib/bones/app.rb +92 -0
  23. data/lib/bones/debug.rb +71 -0
  24. data/lib/bones/smtp_tls.rb +75 -0
  25. data/lib/bones/tasks/ann.rake +80 -0
  26. data/lib/bones/tasks/bones.rake +20 -0
  27. data/lib/bones/tasks/gem.rake +201 -0
  28. data/lib/bones/tasks/git.rake +40 -0
  29. data/lib/bones/tasks/notes.rake +27 -0
  30. data/lib/bones/tasks/post_load.rake +34 -0
  31. data/lib/bones/tasks/rdoc.rake +50 -0
  32. data/lib/bones/tasks/rubyforge.rake +55 -0
  33. data/lib/bones/tasks/setup.rb +296 -0
  34. data/lib/bones/tasks/spec.rake +54 -0
  35. data/lib/bones/tasks/svn.rake +47 -0
  36. data/lib/bones/tasks/test.rake +40 -0
  37. data/lib/bones.rb +62 -0
  38. data/spec/bones/app/file_manager_spec.rb +150 -0
  39. data/spec/bones/app_spec.rb +97 -0
  40. data/spec/bones_spec.rb +18 -0
  41. data/spec/data/data/NAME/NAME.rb.bns +5 -0
  42. data/spec/data/data/README.txt.bns +48 -0
  43. data/spec/data/data/Rakefile.bns +30 -0
  44. data/spec/data/data/lib/NAME.rb.bns +49 -0
  45. data/spec/data/foo/README.txt +0 -0
  46. data/spec/data/foo/Rakefile +0 -0
  47. data/spec/spec_helper.rb +44 -0
  48. metadata +126 -0
data/lib/bones.rb ADDED
@@ -0,0 +1,62 @@
1
+
2
+ module Bones
3
+
4
+ # :stopdoc:
5
+ VERSION = '2.3.0'
6
+ PATH = File.expand_path(File.join(File.dirname(__FILE__), '..'))
7
+ WIN32 = %r/win32/ =~ RUBY_PLATFORM
8
+ DEV_NULL = WIN32 ? 'NUL:' : '/dev/null'
9
+ # :startdoc:
10
+
11
+ # Returns the path for Mr Bones. If any arguments are given,
12
+ # they will be joined to the end of the path using
13
+ # <tt>File.join</tt>.
14
+ #
15
+ def self.path( *args )
16
+ args.empty? ? PATH : File.join(PATH, args.flatten)
17
+ end
18
+
19
+ # call-seq:
20
+ # Bones.require_all_libs_relative_to( filename, directory = nil )
21
+ #
22
+ # Utility method used to rquire all files ending in .rb that lie in the
23
+ # directory below this file that has the same name as the filename passed
24
+ # in. Optionally, a specific _directory_ name can be passed in such that
25
+ # the _filename_ does not have to be equivalent to the directory.
26
+ #
27
+ def self.require_all_libs_relative_to( fname, dir = nil )
28
+ dir ||= File.basename(fname, '.*')
29
+ search_me = File.expand_path(
30
+ File.join(File.dirname(fname), dir, '*.rb'))
31
+
32
+ Dir.glob(search_me).sort.each {|rb| require rb}
33
+ end
34
+
35
+ # call-seq:
36
+ # Bones.setup
37
+ #
38
+ #
39
+ def self.setup
40
+ local_setup = File.join(Dir.pwd, %w[tasks setup.rb])
41
+
42
+ if test(?e, local_setup)
43
+ load local_setup
44
+ return
45
+ end
46
+
47
+ bones_setup = ::Bones.path %w[lib bones tasks setup.rb]
48
+ load bones_setup
49
+
50
+ rakefiles = Dir.glob(File.join(Dir.pwd, %w[tasks *.rake])).sort
51
+ import(*rakefiles)
52
+ end
53
+
54
+ # TODO: fix file lists for Test::Unit and RSpec
55
+ # these guys are just grabbing whatever is there and not pulling
56
+ # the filenames from the manifest
57
+
58
+ end # module Bones
59
+
60
+ Bones.require_all_libs_relative_to(__FILE__)
61
+
62
+ # EOF
@@ -0,0 +1,150 @@
1
+
2
+ require File.expand_path(
3
+ File.join(File.dirname(__FILE__), %w[.. .. spec_helper]))
4
+
5
+ # --------------------------------------------------------------------------
6
+ describe Bones::App::FileManager do
7
+
8
+ before :each do
9
+ @fm = Bones::App::FileManager.new
10
+ end
11
+
12
+ after :each do
13
+ FileUtils.rm_rf(@fm.destination) if @fm.destination
14
+ FileUtils.rm_rf(@fm.archive) if @fm.archive
15
+ end
16
+
17
+ it "should have a configurable source" do
18
+ @fm.source.should be_nil
19
+
20
+ @fm.source = '/home/user/.mrbones/data'
21
+ @fm.source.should == '/home/user/.mrbones/data'
22
+ end
23
+
24
+ it "should have a configurable destination" do
25
+ @fm.destination.should be_nil
26
+
27
+ @fm.destination = 'my_new_app'
28
+ @fm.destination.should == 'my_new_app'
29
+ end
30
+
31
+ it "should set the archive directory when the destination is set" do
32
+ @fm.archive.should be_nil
33
+
34
+ @fm.destination = 'my_new_app'
35
+ @fm.archive.should == 'my_new_app.archive'
36
+ end
37
+
38
+ it "should return a list of files to copy" do
39
+ @fm.source = Bones.path 'data'
40
+
41
+ ary = @fm._files_to_copy
42
+ ary.length.should == 9
43
+
44
+ ary.should == %w[
45
+ .bnsignore
46
+ History.txt.bns
47
+ README.txt.bns
48
+ Rakefile.bns
49
+ bin/NAME.bns
50
+ lib/NAME.rb.bns
51
+ spec/NAME_spec.rb.bns
52
+ spec/spec_helper.rb.bns
53
+ test/test_NAME.rb
54
+ ]
55
+ end
56
+
57
+ it "should archive the destination directory if it exists" do
58
+ @fm.destination = Bones.path(%w[spec data bar])
59
+ test(?e, @fm.destination).should == false
60
+ test(?e, @fm.archive).should == false
61
+
62
+ FileUtils.mkdir @fm.destination
63
+ @fm.archive_destination
64
+ test(?e, @fm.destination).should == false
65
+ test(?e, @fm.archive).should == true
66
+ end
67
+
68
+ it "should rename files and folders containing 'NAME'" do
69
+ @fm.source = Bones.path(%w[spec data data])
70
+ @fm.destination = Bones.path(%w[spec data bar])
71
+ @fm.copy
72
+
73
+ @fm._rename(File.join(@fm.destination, 'NAME'), 'tirion')
74
+
75
+ dir = File.join(@fm.destination, 'tirion')
76
+ test(?d, dir).should == true
77
+ test(?f, File.join(dir, 'tirion.rb.bns')).should == true
78
+ end
79
+
80
+ it "should raise an error when renaming an existing file or folder" do
81
+ @fm.source = Bones.path(%w[spec data data])
82
+ @fm.destination = Bones.path(%w[spec data bar])
83
+ @fm.copy
84
+
85
+ lambda {@fm._rename(File.join(@fm.destination, 'NAME'), 'lib')}.
86
+ should raise_error(RuntimeError)
87
+ end
88
+
89
+ it "should perform ERb templating on '.bns' files" do
90
+ @fm.source = Bones.path(%w[spec data data])
91
+ @fm.destination = Bones.path(%w[spec data bar])
92
+ @fm.copy
93
+ @fm.finalize('foo_bar')
94
+
95
+ dir = @fm.destination
96
+ test(?e, File.join(dir, 'Rakefile.bns')).should == false
97
+ test(?e, File.join(dir, 'README.txt.bns')).should == false
98
+ test(?e, File.join(dir, %w[foo_bar foo_bar.rb.bns])).should == false
99
+
100
+ test(?e, File.join(dir, 'Rakefile')).should == true
101
+ test(?e, File.join(dir, 'README.txt')).should == true
102
+ test(?e, File.join(dir, %w[foo_bar foo_bar.rb])).should == true
103
+
104
+ txt = File.read(File.join(@fm.destination, %w[foo_bar foo_bar.rb]))
105
+ txt.should == <<-TXT
106
+ module FooBar
107
+ def self.foo_bar
108
+ p 'just a test'
109
+ end
110
+ end
111
+ TXT
112
+ end
113
+
114
+ # ------------------------------------------------------------------------
115
+ describe 'when configured with a repository as a source' do
116
+
117
+ it "should recognize a git repository" do
118
+ @fm.source = 'git://github.com/TwP/bones.git'
119
+ @fm.repository.should == :git
120
+
121
+ @fm.source = 'git://github.com/TwP/bones.git/'
122
+ @fm.repository.should == :git
123
+ end
124
+
125
+ it "should recognize an svn repository" do
126
+ @fm.source = 'file:///home/user/svn/ruby/trunk/apc'
127
+ @fm.repository.should == :svn
128
+
129
+ @fm.source = 'http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8'
130
+ @fm.repository.should == :svn
131
+
132
+ @fm.source = 'https://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8'
133
+ @fm.repository.should == :svn
134
+
135
+ @fm.source = 'svn://10.10.10.10/project/trunk'
136
+ @fm.repository.should == :svn
137
+
138
+ @fm.source = 'svn+ssh://10.10.10.10/project/trunk'
139
+ @fm.repository.should == :svn
140
+ end
141
+
142
+ it "should return nil if the source is not a repository" do
143
+ @fm.source = '/some/directory/on/your/hard/drive'
144
+ @fm.repository.should == nil
145
+ end
146
+ end
147
+
148
+ end
149
+
150
+ # EOF
@@ -0,0 +1,97 @@
1
+
2
+ require File.expand_path(
3
+ File.join(File.dirname(__FILE__), %w[.. spec_helper]))
4
+
5
+ class Runner
6
+ attr_accessor :name
7
+ def run(*a, &b) nil; end
8
+ end
9
+
10
+ describe Bones::App do
11
+
12
+ before :all do
13
+ @out = StringIO.new
14
+ @err = StringIO.new
15
+ end
16
+
17
+ before :each do
18
+ @runner = Runner.new
19
+ @app = Bones::App.new(@out, @err)
20
+
21
+ Bones::App::CreateCommand.stub!(:new).
22
+ and_return {@runner.name = :create; @runner}
23
+ Bones::App::UpdateCommand.stub!(:new).
24
+ and_return {@runner.name = :update; @runner}
25
+ Bones::App::FreezeCommand.stub!(:new).
26
+ and_return {@runner.name = :freeze; @runner}
27
+ Bones::App::UnfreezeCommand.stub!(:new).
28
+ and_return {@runner.name = :unfreeze; @runner}
29
+ Bones::App::InfoCommand.stub!(:new).
30
+ and_return {@runner.name = :info; @runner}
31
+ end
32
+
33
+ after :each do
34
+ @out.clear
35
+ @err.clear
36
+ end
37
+
38
+ it 'should provide a create command' do
39
+ @app.run %w[create]
40
+ @runner.name.should == :create
41
+ end
42
+
43
+ it 'should provide an update command' do
44
+ @app.run %w[update]
45
+ @runner.name.should == :update
46
+ end
47
+
48
+ it 'should provide a freeze command' do
49
+ @app.run %w[freeze]
50
+ @runner.name.should == :freeze
51
+ end
52
+
53
+ it 'should provide an unfreeze command' do
54
+ @app.run %w[unfreeze]
55
+ @runner.name.should == :unfreeze
56
+ end
57
+
58
+ it 'should provide an info command' do
59
+ @app.run %w[info]
60
+ @runner.name.should == :info
61
+ end
62
+
63
+ it 'should provide a help command' do
64
+ @app.run %w[--help]
65
+ @out.readline
66
+ @out.readline.should match(%r/^ Mr Bones is a handy tool that builds/)
67
+ @out.clear
68
+
69
+ @app.run %w[-h]
70
+ @out.readline
71
+ @out.readline.should match(%r/^ Mr Bones is a handy tool that builds/)
72
+ end
73
+
74
+ it 'should default to the help message if no command is given' do
75
+ @app.run []
76
+ @out.readline
77
+ @out.readline.should match(%r/^ Mr Bones is a handy tool that builds/)
78
+ end
79
+
80
+ it 'should report an error for unrecognized commands' do
81
+ lambda {@app.run %w[foo]}.should raise_error(SystemExit)
82
+ @err.readline.should == 'ERROR: While executing bones ... (RuntimeError)'
83
+ @err.readline.should == ' Unknown command "foo"'
84
+ end
85
+
86
+ it 'should report a version number' do
87
+ @app.run %w[--version]
88
+ @out.readline.should == "Mr Bones #{Bones::VERSION}"
89
+ @out.clear
90
+
91
+ @app.run %w[-v]
92
+ @out.readline.should == "Mr Bones #{Bones::VERSION}"
93
+ end
94
+
95
+ end # describe Bones::App
96
+
97
+ # EOF
@@ -0,0 +1,18 @@
1
+
2
+ require File.expand_path(
3
+ File.join(File.dirname(__FILE__), 'spec_helper'))
4
+
5
+ describe Bones do
6
+
7
+ before :all do
8
+ @root_dir = File.expand_path(File.join(File.dirname(__FILE__), '..'))
9
+ end
10
+
11
+ it "finds things releative to 'root'" do
12
+ Bones.path(%w[lib bones debug]).
13
+ should == File.join(@root_dir, %w[lib bones debug])
14
+ end
15
+
16
+ end # describe Bones
17
+
18
+ # EOF
@@ -0,0 +1,5 @@
1
+ module <%= classname %>
2
+ def self.<%= name %>
3
+ p 'just a test'
4
+ end
5
+ end
@@ -0,0 +1,48 @@
1
+ <%= name %>
2
+ by FIXME (your name)
3
+ FIXME (url)
4
+
5
+ == DESCRIPTION:
6
+
7
+ FIXME (describe your package)
8
+
9
+ == FEATURES/PROBLEMS:
10
+
11
+ * FIXME (list of features or problems)
12
+
13
+ == SYNOPSIS:
14
+
15
+ FIXME (code sample of usage)
16
+
17
+ == REQUIREMENTS:
18
+
19
+ * FIXME (list of requirements)
20
+
21
+ == INSTALL:
22
+
23
+ * FIXME (sudo gem install, anything else)
24
+
25
+ == LICENSE:
26
+
27
+ (The MIT License)
28
+
29
+ Copyright (c) 2008 FIXME (different license?)
30
+
31
+ Permission is hereby granted, free of charge, to any person obtaining
32
+ a copy of this software and associated documentation files (the
33
+ 'Software'), to deal in the Software without restriction, including
34
+ without limitation the rights to use, copy, modify, merge, publish,
35
+ distribute, sublicense, and/or sell copies of the Software, and to
36
+ permit persons to whom the Software is furnished to do so, subject to
37
+ the following conditions:
38
+
39
+ The above copyright notice and this permission notice shall be
40
+ included in all copies or substantial portions of the Software.
41
+
42
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
43
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
44
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
45
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
46
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
47
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
48
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,30 @@
1
+ # Look in the tasks/setup.rb file for the various options that can be
2
+ # configured in this Rakefile. The .rake files in the tasks directory
3
+ # are where the options are used.
4
+
5
+ begin
6
+ require 'bones'
7
+ Bones.setup
8
+ rescue LoadError
9
+ begin
10
+ load 'tasks/setup.rb'
11
+ rescue LoadError
12
+ raise RuntimeError, '### please install the "bones" gem ###'
13
+ end
14
+ end
15
+
16
+ ensure_in_path 'lib'
17
+ require '<%= name %>'
18
+
19
+ task :default => 'spec:run'
20
+
21
+ PROJ.name = '<%= name %>'
22
+ PROJ.authors = 'FIXME (who is writing this software)'
23
+ PROJ.email = 'FIXME (your e-mail)'
24
+ PROJ.url = 'FIXME (project homepage)'
25
+ PROJ.version = <%= classname %>::VERSION
26
+ PROJ.rubyforge.name = '<%= name %>'
27
+
28
+ PROJ.spec.opts << '--color'
29
+
30
+ # EOF
@@ -0,0 +1,49 @@
1
+
2
+ module <%= classname %>
3
+
4
+ # :stopdoc:
5
+ VERSION = '1.0.0'
6
+ LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
7
+ PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
8
+ # :startdoc:
9
+
10
+ # Returns the version string for the library.
11
+ #
12
+ def self.version
13
+ VERSION
14
+ end
15
+
16
+ # Returns the library path for the module. If any arguments are given,
17
+ # they will be joined to the end of the libray path using
18
+ # <tt>File.join</tt>.
19
+ #
20
+ def self.libpath( *args )
21
+ args.empty? ? LIBPATH : ::File.join(LIBPATH, args.flatten)
22
+ end
23
+
24
+ # Returns the lpath for the module. If any arguments are given,
25
+ # they will be joined to the end of the path using
26
+ # <tt>File.join</tt>.
27
+ #
28
+ def self.path( *args )
29
+ args.empty? ? PATH : ::File.join(PATH, args.flatten)
30
+ end
31
+
32
+ # Utility method used to rquire all files ending in .rb that lie in the
33
+ # directory below this file that has the same name as the filename passed
34
+ # in. Optionally, a specific _directory_ name can be passed in such that
35
+ # the _filename_ does not have to be equivalent to the directory.
36
+ #
37
+ def self.require_all_libs_relative_to( fname, dir = nil )
38
+ dir ||= ::File.basename(fname, '.*')
39
+ search_me = ::File.expand_path(
40
+ ::File.join(::File.dirname(fname), dir, '*', '*.rb'))
41
+
42
+ Dir.glob(search_me).sort.each {|rb| require rb}
43
+ end
44
+
45
+ end # module <%= classname %>
46
+
47
+ <%= classname %>.require_all_libs_relative_to(__FILE__)
48
+
49
+ # EOF
File without changes
File without changes
@@ -0,0 +1,44 @@
1
+ # Equivalent to a header guard in C/C++
2
+ # Used to prevent the spec helper from being loaded more than once
3
+ unless defined? BONES_SPEC_HELPER
4
+ BONES_SPEC_HELPER = true
5
+
6
+ require 'stringio'
7
+ require File.expand_path(
8
+ File.join(File.dirname(__FILE__), %w[.. lib bones]))
9
+
10
+ Spec::Runner.configure do |config|
11
+ # == Mock Framework
12
+ #
13
+ # RSpec uses it's own mocking framework by default. If you prefer to
14
+ # use mocha, flexmock or RR, uncomment the appropriate line:
15
+ #
16
+ # config.mock_with :mocha
17
+ # config.mock_with :flexmock
18
+ # config.mock_with :rr
19
+ end
20
+
21
+ class StringIO
22
+ alias :_readline :readline
23
+ def readline
24
+ @_pos ||= 0
25
+ seek @_pos
26
+ begin
27
+ _line = _readline
28
+ @_pos = tell
29
+ _line.rstrip
30
+ rescue EOFError
31
+ nil
32
+ end
33
+ end
34
+
35
+ def clear
36
+ truncate 0
37
+ seek 0
38
+ @_pos = 0
39
+ end
40
+ end
41
+
42
+ end # unless defined?
43
+
44
+ # EOF
metadata ADDED
@@ -0,0 +1,126 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: TwP-bones
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.3.0
5
+ platform: ruby
6
+ authors:
7
+ - Tim Pease
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-01-13 00:00:00 -08:00
13
+ default_executable: bones
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rake
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 0.8.3
23
+ version:
24
+ description: Mr Bones is a handy tool that builds a skeleton for your new Ruby projects. The skeleton contains some starter code and a collection of rake tasks to ease the management and deployment of your source code. Mr Bones is not viral -- all the code your project needs is included in the skeleton (no gem dependency required).
25
+ email: tim.pease@gmail.com
26
+ executables:
27
+ - bones
28
+ extensions: []
29
+
30
+ extra_rdoc_files:
31
+ - History.txt
32
+ - README.rdoc
33
+ - bin/bones
34
+ - lib/bones/tasks/ann.rake
35
+ - lib/bones/tasks/bones.rake
36
+ - lib/bones/tasks/gem.rake
37
+ - lib/bones/tasks/git.rake
38
+ - lib/bones/tasks/notes.rake
39
+ - lib/bones/tasks/post_load.rake
40
+ - lib/bones/tasks/rdoc.rake
41
+ - lib/bones/tasks/rubyforge.rake
42
+ - lib/bones/tasks/spec.rake
43
+ - lib/bones/tasks/svn.rake
44
+ - lib/bones/tasks/test.rake
45
+ - spec/data/foo/README.txt
46
+ files:
47
+ - History.txt
48
+ - README.rdoc
49
+ - Rakefile
50
+ - bin/bones
51
+ - data/.bnsignore
52
+ - data/History.txt.bns
53
+ - data/README.txt.bns
54
+ - data/Rakefile.bns
55
+ - data/bin/NAME.bns
56
+ - data/lib/NAME.rb.bns
57
+ - data/spec/NAME_spec.rb.bns
58
+ - data/spec/spec_helper.rb.bns
59
+ - data/test/test_NAME.rb
60
+ - lib/bones.rb
61
+ - lib/bones/annotation_extractor.rb
62
+ - lib/bones/app.rb
63
+ - lib/bones/app/command.rb
64
+ - lib/bones/app/create_command.rb
65
+ - lib/bones/app/file_manager.rb
66
+ - lib/bones/app/freeze_command.rb
67
+ - lib/bones/app/info_command.rb
68
+ - lib/bones/app/unfreeze_command.rb
69
+ - lib/bones/app/update_command.rb
70
+ - lib/bones/debug.rb
71
+ - lib/bones/smtp_tls.rb
72
+ - lib/bones/tasks/ann.rake
73
+ - lib/bones/tasks/bones.rake
74
+ - lib/bones/tasks/gem.rake
75
+ - lib/bones/tasks/git.rake
76
+ - lib/bones/tasks/notes.rake
77
+ - lib/bones/tasks/post_load.rake
78
+ - lib/bones/tasks/rdoc.rake
79
+ - lib/bones/tasks/rubyforge.rake
80
+ - lib/bones/tasks/setup.rb
81
+ - lib/bones/tasks/spec.rake
82
+ - lib/bones/tasks/svn.rake
83
+ - lib/bones/tasks/test.rake
84
+ - spec/bones/app/file_manager_spec.rb
85
+ - spec/bones/app_spec.rb
86
+ - spec/bones_spec.rb
87
+ - spec/data/data/NAME/NAME.rb.bns
88
+ - spec/data/data/README.txt.bns
89
+ - spec/data/data/Rakefile.bns
90
+ - spec/data/data/lib/NAME.rb.bns
91
+ - spec/data/foo/README.txt
92
+ - spec/data/foo/Rakefile
93
+ - spec/spec_helper.rb
94
+ has_rdoc: true
95
+ homepage: http://codeforpeople.rubyforge.org/bones
96
+ post_install_message: |
97
+ --------------------------
98
+ Keep rattlin' dem bones!
99
+ --------------------------
100
+
101
+ rdoc_options:
102
+ - --main
103
+ - README.rdoc
104
+ require_paths:
105
+ - lib
106
+ required_ruby_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: "0"
111
+ version:
112
+ required_rubygems_version: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: "0"
117
+ version:
118
+ requirements: []
119
+
120
+ rubyforge_project: codeforpeople
121
+ rubygems_version: 1.2.0
122
+ signing_key:
123
+ specification_version: 2
124
+ summary: Mr Bones is a handy tool that builds a skeleton for your new Ruby projects
125
+ test_files: []
126
+