bones 3.0.0 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +14 -1
- data/Rakefile +1 -0
- data/default/README.txt.bns +1 -1
- data/default/Rakefile.bns +1 -0
- data/default/bin/NAME.bns +0 -1
- data/default/lib/NAME.rb.bns +0 -1
- data/default/spec/NAME_spec.rb.bns +0 -1
- data/default/spec/spec_helper.rb.bns +0 -1
- data/lib/bones.rb +1 -1
- data/lib/bones/app/file_manager.rb +1 -1
- data/lib/bones/plugins/bones_plugin.rb +1 -1
- metadata +14 -4
data/History.txt
CHANGED
@@ -1,4 +1,17 @@
|
|
1
|
-
== 3.0.
|
1
|
+
== 3.0.1 / 2009-10-08
|
2
|
+
|
3
|
+
* 2 bug fixes
|
4
|
+
- Fixing the ".git" exclude pattern
|
5
|
+
- Calling "git clone" when creating from a git repository
|
6
|
+
(as opposed to git-clone which is not available on all platforms)
|
7
|
+
|
8
|
+
== 3.0.0 / 2009-10-07
|
9
|
+
|
10
|
+
* 4 major enhancements
|
11
|
+
- Refactored to use a plugin system for rake tasks
|
12
|
+
- Now using the "loquacious" gem for helpful configuration
|
13
|
+
- Bones is now a required development dependency
|
14
|
+
- Interoperability with gemcutter.org
|
2
15
|
|
3
16
|
== 2.5.1 / 2009-05-12
|
4
17
|
|
data/Rakefile
CHANGED
data/default/README.txt.bns
CHANGED
@@ -26,7 +26,7 @@ FIXME (describe your package)
|
|
26
26
|
|
27
27
|
(The MIT License)
|
28
28
|
|
29
|
-
Copyright (c)
|
29
|
+
Copyright (c) 2009 FIXME (different license?)
|
30
30
|
|
31
31
|
Permission is hereby granted, free of charge, to any person obtaining
|
32
32
|
a copy of this software and associated documentation files (the
|
data/default/Rakefile.bns
CHANGED
data/default/bin/NAME.bns
CHANGED
data/default/lib/NAME.rb.bns
CHANGED
data/lib/bones.rb
CHANGED
@@ -13,7 +13,7 @@ module Bones
|
|
13
13
|
extend LittlePlugger
|
14
14
|
|
15
15
|
# :stopdoc:
|
16
|
-
VERSION = '3.0.
|
16
|
+
VERSION = '3.0.1'
|
17
17
|
PATH = File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
18
18
|
LIBPATH = File.expand_path(File.join(PATH, 'lib'))
|
19
19
|
HOME = File.expand_path(ENV['HOME'] || ENV['USERPROFILE'])
|
@@ -78,7 +78,7 @@ class FileManager
|
|
78
78
|
def _checkout( repotype )
|
79
79
|
case repotype
|
80
80
|
when :git
|
81
|
-
|
81
|
+
system('git', 'clone', source, destination)
|
82
82
|
FileUtils.rm_rf(File.join(destination, '.git'))
|
83
83
|
when :svn
|
84
84
|
system('svn', 'export', source, destination)
|
@@ -73,7 +73,7 @@ module Bones::Plugins::BonesPlugin
|
|
73
73
|
only when creating a release announcement.
|
74
74
|
__
|
75
75
|
|
76
|
-
exclude %w(tmp$ bak$ ~$ CVS \.svn/
|
76
|
+
exclude %w(tmp$ bak$ ~$ CVS \.svn/ ^\.git/ ^pkg/), :desc => <<-__
|
77
77
|
A list of regular expression patterns that will be used to exclude
|
78
78
|
certain files from the gem packaging process. Each pattern is given
|
79
79
|
as a string, and they are all combined using the regular expression
|
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: 3.0.
|
4
|
+
version: 3.0.1
|
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-11-
|
12
|
+
date: 2009-11-08 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -30,7 +30,7 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.1.
|
33
|
+
version: 1.1.1
|
34
34
|
version:
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
36
|
name: loquacious
|
@@ -52,6 +52,16 @@ dependencies:
|
|
52
52
|
- !ruby/object:Gem::Version
|
53
53
|
version: 1.2.8
|
54
54
|
version:
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bones-git
|
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.0
|
64
|
+
version:
|
55
65
|
- !ruby/object:Gem::Dependency
|
56
66
|
name: bones-extras
|
57
67
|
type: :development
|
@@ -70,7 +80,7 @@ dependencies:
|
|
70
80
|
requirements:
|
71
81
|
- - ">="
|
72
82
|
- !ruby/object:Gem::Version
|
73
|
-
version: 3.0.
|
83
|
+
version: 3.0.1
|
74
84
|
version:
|
75
85
|
description: |-
|
76
86
|
Mr Bones is a handy tool that creates new Ruby projects from a code
|