bones 2.5.1 → 3.0.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 (75) hide show
  1. data/History.txt +2 -0
  2. data/README.rdoc +54 -306
  3. data/Rakefile +28 -37
  4. data/bin/bones +10 -3
  5. data/{spec/data/data → default}/.bnsignore +3 -1
  6. data/{data → default}/History.txt.bns +0 -0
  7. data/{data → default}/README.txt.bns +0 -0
  8. data/default/Rakefile.bns +21 -0
  9. data/{data → default}/bin/NAME.bns +0 -0
  10. data/{data → default}/lib/NAME.rb.bns +0 -0
  11. data/{data → default}/spec/NAME_spec.rb.bns +0 -0
  12. data/{data → default}/spec/spec_helper.rb.bns +0 -0
  13. data/{data → default}/test/test_NAME.rb +0 -0
  14. data/lib/bones.rb +73 -31
  15. data/lib/bones/annotation_extractor.rb +16 -26
  16. data/lib/bones/app.rb +87 -58
  17. data/lib/bones/app/command.rb +143 -64
  18. data/lib/bones/app/create.rb +93 -0
  19. data/lib/bones/app/file_manager.rb +7 -8
  20. data/lib/bones/app/freeze.rb +59 -0
  21. data/lib/bones/app/info.rb +39 -0
  22. data/lib/bones/app/unfreeze.rb +44 -0
  23. data/lib/bones/colors.rb +54 -0
  24. data/lib/bones/gem_package_task.rb +71 -0
  25. data/lib/bones/helpers.rb +93 -0
  26. data/lib/bones/plugins/ann.rb +166 -0
  27. data/lib/bones/plugins/bones_plugin.rb +193 -0
  28. data/lib/bones/plugins/gem.rb +274 -0
  29. data/lib/bones/plugins/notes.rb +45 -0
  30. data/lib/bones/plugins/rdoc.rb +93 -0
  31. data/lib/bones/plugins/test.rb +57 -0
  32. data/lib/bones/smtp_tls.rb +1 -0
  33. data/spec/bones/app/file_manager_spec.rb +6 -6
  34. data/spec/bones/app_spec.rb +14 -18
  35. data/spec/bones_spec.rb +9 -4
  36. data/{data → spec/data/default}/.bnsignore +0 -0
  37. data/spec/data/{data → default}/History +0 -0
  38. data/spec/data/{data → default}/NAME/NAME.rb.bns +0 -0
  39. data/spec/data/{data → default}/README.txt.bns +0 -0
  40. data/{data → spec/data/default}/Rakefile.bns +0 -0
  41. data/spec/data/{data → default}/lib/NAME.rb.bns +0 -0
  42. metadata +94 -68
  43. data/lib/bones/app/create_command.rb +0 -86
  44. data/lib/bones/app/freeze_command.rb +0 -73
  45. data/lib/bones/app/info_command.rb +0 -58
  46. data/lib/bones/app/unfreeze_command.rb +0 -53
  47. data/lib/bones/app/update_command.rb +0 -47
  48. data/lib/bones/debug.rb +0 -72
  49. data/lib/bones/tasks/ann.rake +0 -80
  50. data/lib/bones/tasks/bones.rake +0 -20
  51. data/lib/bones/tasks/gem.rake +0 -201
  52. data/lib/bones/tasks/git.rake +0 -40
  53. data/lib/bones/tasks/notes.rake +0 -27
  54. data/lib/bones/tasks/post_load.rake +0 -34
  55. data/lib/bones/tasks/rdoc.rake +0 -51
  56. data/lib/bones/tasks/rubyforge.rake +0 -55
  57. data/lib/bones/tasks/setup.rb +0 -292
  58. data/lib/bones/tasks/spec.rake +0 -54
  59. data/lib/bones/tasks/svn.rake +0 -47
  60. data/lib/bones/tasks/test.rake +0 -40
  61. data/lib/bones/tasks/zentest.rake +0 -36
  62. data/spec/data/data/Rakefile.bns +0 -30
  63. data/tasks/ann.rake +0 -80
  64. data/tasks/bones.rake +0 -20
  65. data/tasks/gem.rake +0 -201
  66. data/tasks/git.rake +0 -40
  67. data/tasks/notes.rake +0 -27
  68. data/tasks/post_load.rake +0 -34
  69. data/tasks/rdoc.rake +0 -51
  70. data/tasks/rubyforge.rake +0 -55
  71. data/tasks/setup.rb +0 -292
  72. data/tasks/spec.rake +0 -54
  73. data/tasks/svn.rake +0 -47
  74. data/tasks/test.rake +0 -40
  75. data/tasks/zentest.rake +0 -36
@@ -0,0 +1,45 @@
1
+
2
+ module Bones::Plugins::Notes
3
+ include ::Bones::Helpers
4
+ extend self
5
+
6
+ def initialize_notes
7
+ ::Bones.config {
8
+ notes {
9
+ exclude []
10
+ extensions %w(.txt .rb .erb .rdoc) << ''
11
+ tags %w(FIXME OPTIMIZE TODO)
12
+ }
13
+ }
14
+
15
+ have?(:notes) { true }
16
+ end
17
+
18
+ def define_tasks
19
+ config = ::Bones.config
20
+
21
+ desc "Enumerate all annotations"
22
+ task :notes do |t|
23
+ id = if t.application.top_level_tasks.length > 1
24
+ t.application.top_level_tasks.slice!(1..-1).join(' ')
25
+ end
26
+ Bones::AnnotationExtractor.enumerate(
27
+ config, config.notes.tags.join('|'), id, :tag => true)
28
+ end
29
+
30
+ namespace :notes do
31
+ config.notes.tags.each do |tag|
32
+ desc "Enumerate all #{tag} annotations"
33
+ task tag.downcase.to_sym do |t|
34
+ id = if t.application.top_level_tasks.length > 1
35
+ t.application.top_level_tasks.slice!(1..-1).join(' ')
36
+ end
37
+ Bones::AnnotationExtractor.enumerate(config, tag, id)
38
+ end
39
+ end
40
+ end
41
+ end
42
+
43
+ end # module Bones::Plugins::Notes
44
+
45
+ # EOF
@@ -0,0 +1,93 @@
1
+
2
+ require 'rake/rdoctask'
3
+
4
+ module Bones::Plugins::Rdoc
5
+ include ::Bones::Helpers
6
+ extend self
7
+
8
+ def initialize_rdoc
9
+ ::Bones.config {
10
+ desc 'Configuration settings for rdoc and ri'
11
+ rdoc {
12
+
13
+ opts [], :desc => 'Array of rdoc options to use when generating documentation.'
14
+
15
+ include %w(^lib/ ^bin/ ^ext/ \.txt$ \.rdoc$), :desc => <<-__
16
+ An array of patterns that will be used to find the files for which
17
+ documentation should be generated. This is an array of strings that
18
+ will be converted in regular expressions.
19
+ __
20
+
21
+ exclude %w(extconf\.rb$), :desc => <<-__
22
+ An array of patterns that will be used to exclude files from rdoc
23
+ processing. This is an array of strings that will be converted in
24
+ regular expressions.
25
+ __
26
+
27
+ main nil, :desc => <<-__
28
+ The main rdoc file for the project. This defaults to the project's
29
+ README file.
30
+ __
31
+
32
+ dir 'doc', :desc => 'Output directory for generated documentation.'
33
+ }
34
+ }
35
+
36
+ have?(:rdoc) { true }
37
+ end
38
+
39
+ def post_load
40
+ config = ::Bones.config
41
+
42
+ config.exclude << "^#{Regexp.escape(config.rdoc.dir)}/"
43
+ config.rdoc.main ||= config.readme_file
44
+ end
45
+
46
+ def define_tasks
47
+ config = ::Bones.config
48
+
49
+ namespace :doc do
50
+ desc 'Generate RDoc documentation'
51
+ Rake::RDocTask.new do |rd|
52
+ rdoc = config.rdoc
53
+ rd.main = rdoc.main
54
+ rd.rdoc_dir = rdoc.dir
55
+
56
+ incl = Regexp.new(rdoc.include.join('|'))
57
+ excl = Regexp.new(rdoc.exclude.join('|'))
58
+ files = config.gem.files.find_all do |fn|
59
+ case fn
60
+ when excl; false
61
+ when incl; true
62
+ else false end
63
+ end
64
+ rd.rdoc_files.push(*files)
65
+
66
+ title = "#{config.name}-#{config.version} Documentation"
67
+
68
+ rd.options << "-t #{title}"
69
+ rd.options.concat(rdoc.opts)
70
+ end
71
+
72
+ desc 'Generate ri locally for testing'
73
+ task :ri => :clobber_ri do
74
+ sh "#{RDOC} --ri -o ri ."
75
+ end
76
+
77
+ task :clobber_ri do
78
+ rm_r 'ri' rescue nil
79
+ end
80
+ end # namespace :doc
81
+
82
+ desc 'Alias to doc:rdoc'
83
+ task :doc => 'doc:rdoc'
84
+
85
+ desc 'Remove all build products'
86
+ task :clobber => %w(doc:clobber_rdoc doc:clobber_ri)
87
+
88
+ remove_desc_for_task %w(doc:clobber_rdoc)
89
+ end
90
+
91
+ end # module Bones::Plugins::Rdoc
92
+
93
+ # EOF
@@ -0,0 +1,57 @@
1
+
2
+ require 'rake/testtask'
3
+
4
+ module Bones::Plugins::Test
5
+ include ::Bones::Helpers
6
+ extend self
7
+
8
+ def initialize_test
9
+ ::Bones.config {
10
+ desc 'Configuration settings for the Ruby test framework.'
11
+ test {
12
+ files FileList['test/**/test_*.rb'], :desc => <<-__
13
+ The list of test files to run. This defaults to all the ruby fines
14
+ in the 'test' directory that start with 'test_' as their filename.
15
+ __
16
+
17
+ file 'test/all.rb', :desc => <<-__
18
+ In fashion at one time was the concept of an encompassing test file
19
+ that would run all ruby tests for your project. You can specify that
20
+ file here. If the file does not exist this setting will be ignored.
21
+ __
22
+
23
+ opts [], :desc => <<-__
24
+ Extra ruby options to be used when running tests.
25
+ __
26
+ }
27
+ }
28
+ end
29
+
30
+ def post_load
31
+ config = ::Bones.config
32
+ have?(:test) {
33
+ Kernel.test(?e, config.test.file) or not config.test.files.to_a.empty?
34
+ }
35
+ end
36
+
37
+ def define_tasks
38
+ return unless have? :test
39
+ config = ::Bones.config
40
+
41
+ namespace :test do
42
+ Rake::TestTask.new(:run) do |t|
43
+ t.libs = config.libs
44
+ t.test_files = if test(?f, config.test.file) then [config.test.file]
45
+ else config.test.files end
46
+ t.ruby_opts += config.ruby_opts
47
+ t.ruby_opts += config.test.opts
48
+ end
49
+ end # namespace :test
50
+
51
+ desc 'Alias to test:run'
52
+ task :test => 'test:run'
53
+ end
54
+
55
+ end
56
+
57
+ # EOF
@@ -9,6 +9,7 @@
9
9
  begin
10
10
  require "openssl"
11
11
  require "net/smtp"
12
+ require 'time'
12
13
 
13
14
  Net::SMTP.class_eval do
14
15
  private
@@ -17,8 +17,8 @@ describe Bones::App::FileManager do
17
17
  it "should have a configurable source" do
18
18
  @fm.source.should be_nil
19
19
 
20
- @fm.source = '/home/user/.mrbones/data'
21
- @fm.source.should == '/home/user/.mrbones/data'
20
+ @fm.source = '/home/user/.mrbones/default'
21
+ @fm.source.should == '/home/user/.mrbones/default'
22
22
  end
23
23
 
24
24
  it "should have a configurable destination" do
@@ -36,7 +36,7 @@ describe Bones::App::FileManager do
36
36
  end
37
37
 
38
38
  it "should return a list of files to copy" do
39
- @fm.source = Bones.path %w[spec data data]
39
+ @fm.source = Bones.path %w[spec data default]
40
40
 
41
41
  ary = @fm._files_to_copy
42
42
  ary.length.should == 6
@@ -63,7 +63,7 @@ describe Bones::App::FileManager do
63
63
  end
64
64
 
65
65
  it "should rename files and folders containing 'NAME'" do
66
- @fm.source = Bones.path(%w[spec data data])
66
+ @fm.source = Bones.path(%w[spec data default])
67
67
  @fm.destination = Bones.path(%w[spec data bar])
68
68
  @fm.copy
69
69
 
@@ -75,7 +75,7 @@ describe Bones::App::FileManager do
75
75
  end
76
76
 
77
77
  it "should raise an error when renaming an existing file or folder" do
78
- @fm.source = Bones.path(%w[spec data data])
78
+ @fm.source = Bones.path(%w[spec data default])
79
79
  @fm.destination = Bones.path(%w[spec data bar])
80
80
  @fm.copy
81
81
 
@@ -84,7 +84,7 @@ describe Bones::App::FileManager do
84
84
  end
85
85
 
86
86
  it "should perform ERb templating on '.bns' files" do
87
- @fm.source = Bones.path(%w[spec data data])
87
+ @fm.source = Bones.path(%w[spec data default])
88
88
  @fm.destination = Bones.path(%w[spec data bar])
89
89
  @fm.copy
90
90
  @fm.finalize('foo_bar')
@@ -12,21 +12,22 @@ describe Bones::App do
12
12
  before :all do
13
13
  @out = StringIO.new
14
14
  @err = StringIO.new
15
+ Bones::App.initialize_plugins
15
16
  end
16
17
 
17
18
  before :each do
18
19
  @runner = ::Runner.new
19
- @app = Bones::App.new(@out, @err)
20
+ @runner.stub!(:parse).and_return(Hash.new)
20
21
 
21
- Bones::App::CreateCommand.stub!(:new).
22
+ @app = Bones::App::Main.new(:stdout => @out, :stderr => @err)
23
+
24
+ Bones::App::Create.stub!(:new).
22
25
  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
+ Bones::App::Freeze.stub!(:new).
26
27
  and_return {@runner.name = :freeze; @runner}
27
- Bones::App::UnfreezeCommand.stub!(:new).
28
+ Bones::App::Unfreeze.stub!(:new).
28
29
  and_return {@runner.name = :unfreeze; @runner}
29
- Bones::App::InfoCommand.stub!(:new).
30
+ Bones::App::Info.stub!(:new).
30
31
  and_return {@runner.name = :info; @runner}
31
32
  end
32
33
 
@@ -40,11 +41,6 @@ describe Bones::App do
40
41
  @runner.name.should == :create
41
42
  end
42
43
 
43
- it 'should provide an update command' do
44
- @app.run %w[update]
45
- @runner.name.should == :update
46
- end
47
-
48
44
  it 'should provide a freeze command' do
49
45
  @app.run %w[freeze]
50
46
  @runner.name.should == :freeze
@@ -62,34 +58,34 @@ describe Bones::App do
62
58
 
63
59
  it 'should provide a help command' do
64
60
  @app.run %w[--help]
65
- @out.readline
61
+ 4.times { @out.readline }
66
62
  @out.readline.should match(%r/^ Mr Bones is a handy tool that builds/)
67
63
  @out.clear
68
64
 
69
65
  @app.run %w[-h]
70
- @out.readline
66
+ 4.times { @out.readline }
71
67
  @out.readline.should match(%r/^ Mr Bones is a handy tool that builds/)
72
68
  end
73
69
 
74
70
  it 'should default to the help message if no command is given' do
75
71
  @app.run []
76
- @out.readline
72
+ 4.times { @out.readline }
77
73
  @out.readline.should match(%r/^ Mr Bones is a handy tool that builds/)
78
74
  end
79
75
 
80
76
  it 'should report an error for unrecognized commands' do
81
77
  lambda {@app.run %w[foo]}.should raise_error(SystemExit)
82
- @err.readline.should == 'ERROR: While executing bones ... (RuntimeError)'
78
+ @err.readline.should == 'ERROR: While executing bones ...'
83
79
  @err.readline.should == ' Unknown command "foo"'
84
80
  end
85
81
 
86
82
  it 'should report a version number' do
87
83
  @app.run %w[--version]
88
- @out.readline.should == "Mr Bones #{Bones::VERSION}"
84
+ @out.readline.should == "Mr Bones v#{Bones::VERSION}"
89
85
  @out.clear
90
86
 
91
87
  @app.run %w[-v]
92
- @out.readline.should == "Mr Bones #{Bones::VERSION}"
88
+ @out.readline.should == "Mr Bones v#{Bones::VERSION}"
93
89
  end
94
90
 
95
91
  end # describe Bones::App
data/spec/bones_spec.rb CHANGED
@@ -9,10 +9,15 @@ describe Bones do
9
9
  end
10
10
 
11
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
-
12
+ Bones.path(%w[lib bones helpers]).
13
+ should == File.join(@root_dir, %w[lib bones helpers])
14
+ end
15
+
16
+ it "finds things releative to 'lib'" do
17
+ Bones.libpath(%w[bones helpers]).
18
+ should == File.join(@root_dir, %w[lib bones helpers])
19
+ end
20
+
16
21
  end # describe Bones
17
22
 
18
23
  # EOF
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bones
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.1
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Pease
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-05-12 00:00:00 -06:00
12
+ date: 2009-11-07 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -20,9 +20,64 @@ dependencies:
20
20
  requirements:
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: 0.8.4
23
+ version: 0.8.7
24
24
  version:
25
- 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
+ - !ruby/object:Gem::Dependency
26
+ name: little-plugger
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 1.1.0
34
+ version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: loquacious
37
+ type: :runtime
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 1.4.0
44
+ version:
45
+ - !ruby/object:Gem::Dependency
46
+ name: rspec
47
+ type: :development
48
+ version_requirement:
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 1.2.8
54
+ version:
55
+ - !ruby/object:Gem::Dependency
56
+ name: bones-extras
57
+ type: :development
58
+ version_requirement:
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: 1.0.1
64
+ version:
65
+ - !ruby/object:Gem::Dependency
66
+ name: bones
67
+ type: :development
68
+ version_requirement:
69
+ version_requirements: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: 3.0.0
74
+ version:
75
+ description: |-
76
+ Mr Bones is a handy tool that creates new Ruby projects from a code
77
+ skeleton. The skeleton contains some starter code and a collection of rake
78
+ tasks to ease the management and deployment of your source code. Several Mr
79
+ Bones plugins are available for creating git repositories, creating GitHub
80
+ projects, running various test suites and source code analysis tools.
26
81
  email: tim.pease@gmail.com
27
82
  executables:
28
83
  - bones
@@ -32,18 +87,6 @@ extra_rdoc_files:
32
87
  - History.txt
33
88
  - README.rdoc
34
89
  - bin/bones
35
- - lib/bones/tasks/ann.rake
36
- - lib/bones/tasks/bones.rake
37
- - lib/bones/tasks/gem.rake
38
- - lib/bones/tasks/git.rake
39
- - lib/bones/tasks/notes.rake
40
- - lib/bones/tasks/post_load.rake
41
- - lib/bones/tasks/rdoc.rake
42
- - lib/bones/tasks/rubyforge.rake
43
- - lib/bones/tasks/spec.rake
44
- - lib/bones/tasks/svn.rake
45
- - lib/bones/tasks/test.rake
46
- - lib/bones/tasks/zentest.rake
47
90
  - spec/data/foo/README.txt
48
91
  files:
49
92
  - .autotest
@@ -51,67 +94,50 @@ files:
51
94
  - README.rdoc
52
95
  - Rakefile
53
96
  - bin/bones
54
- - data/.bnsignore
55
- - data/History.txt.bns
56
- - data/README.txt.bns
57
- - data/Rakefile.bns
58
- - data/bin/NAME.bns
59
- - data/lib/NAME.rb.bns
60
- - data/spec/NAME_spec.rb.bns
61
- - data/spec/spec_helper.rb.bns
62
- - data/test/test_NAME.rb
97
+ - default/.bnsignore
98
+ - default/History.txt.bns
99
+ - default/README.txt.bns
100
+ - default/Rakefile.bns
101
+ - default/bin/NAME.bns
102
+ - default/lib/NAME.rb.bns
103
+ - default/spec/NAME_spec.rb.bns
104
+ - default/spec/spec_helper.rb.bns
105
+ - default/test/test_NAME.rb
63
106
  - lib/bones.rb
64
107
  - lib/bones/annotation_extractor.rb
65
108
  - lib/bones/app.rb
66
109
  - lib/bones/app/command.rb
67
- - lib/bones/app/create_command.rb
110
+ - lib/bones/app/create.rb
68
111
  - lib/bones/app/file_manager.rb
69
- - lib/bones/app/freeze_command.rb
70
- - lib/bones/app/info_command.rb
71
- - lib/bones/app/unfreeze_command.rb
72
- - lib/bones/app/update_command.rb
73
- - lib/bones/debug.rb
112
+ - lib/bones/app/freeze.rb
113
+ - lib/bones/app/info.rb
114
+ - lib/bones/app/unfreeze.rb
115
+ - lib/bones/colors.rb
116
+ - lib/bones/gem_package_task.rb
117
+ - lib/bones/helpers.rb
118
+ - lib/bones/plugins/ann.rb
119
+ - lib/bones/plugins/bones_plugin.rb
120
+ - lib/bones/plugins/gem.rb
121
+ - lib/bones/plugins/notes.rb
122
+ - lib/bones/plugins/rdoc.rb
123
+ - lib/bones/plugins/test.rb
74
124
  - lib/bones/smtp_tls.rb
75
- - lib/bones/tasks/ann.rake
76
- - lib/bones/tasks/bones.rake
77
- - lib/bones/tasks/gem.rake
78
- - lib/bones/tasks/git.rake
79
- - lib/bones/tasks/notes.rake
80
- - lib/bones/tasks/post_load.rake
81
- - lib/bones/tasks/rdoc.rake
82
- - lib/bones/tasks/rubyforge.rake
83
- - lib/bones/tasks/setup.rb
84
- - lib/bones/tasks/spec.rake
85
- - lib/bones/tasks/svn.rake
86
- - lib/bones/tasks/test.rake
87
- - lib/bones/tasks/zentest.rake
88
125
  - spec/bones/app/file_manager_spec.rb
89
126
  - spec/bones/app_spec.rb
90
127
  - spec/bones_spec.rb
91
- - spec/data/data/.bnsignore
92
- - spec/data/data/History
93
- - spec/data/data/NAME/NAME.rb.bns
94
- - spec/data/data/README.txt.bns
95
- - spec/data/data/Rakefile.bns
96
- - spec/data/data/lib/NAME.rb.bns
128
+ - spec/data/default/.bnsignore
129
+ - spec/data/default/History
130
+ - spec/data/default/NAME/NAME.rb.bns
131
+ - spec/data/default/README.txt.bns
132
+ - spec/data/default/Rakefile.bns
133
+ - spec/data/default/lib/NAME.rb.bns
97
134
  - spec/data/foo/README.txt
98
135
  - spec/data/foo/Rakefile
99
136
  - spec/spec_helper.rb
100
- - tasks/ann.rake
101
- - tasks/bones.rake
102
- - tasks/gem.rake
103
- - tasks/git.rake
104
- - tasks/notes.rake
105
- - tasks/post_load.rake
106
- - tasks/rdoc.rake
107
- - tasks/rubyforge.rake
108
- - tasks/setup.rb
109
- - tasks/spec.rake
110
- - tasks/svn.rake
111
- - tasks/test.rake
112
- - tasks/zentest.rake
113
137
  has_rdoc: true
114
- homepage: http://codeforpeople.rubyforge.org/bones
138
+ homepage: http://gemcutter.org/gems/bones
139
+ licenses: []
140
+
115
141
  post_install_message: |
116
142
  --------------------------
117
143
  Keep rattlin' dem bones!
@@ -136,10 +162,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
136
162
  version:
137
163
  requirements: []
138
164
 
139
- rubyforge_project: codeforpeople
140
- rubygems_version: 1.3.1
165
+ rubyforge_project: bones
166
+ rubygems_version: 1.3.5
141
167
  signing_key:
142
- specification_version: 2
143
- summary: Mr Bones is a handy tool that builds a skeleton for your new Ruby projects
168
+ specification_version: 3
169
+ summary: Mr Bones is a handy tool that creates new Ruby projects from a code skeleton
144
170
  test_files: []
145
171