bones 3.6.1 → 3.6.2
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.
- data/.gitignore +12 -0
- data/History.txt +6 -0
- data/lib/bones/plugins/gem.rb +3 -3
- data/version.txt +1 -1
- metadata +8 -7
data/.gitignore
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# git-ls-files --others --exclude-from=.git/info/exclude
|
2
|
+
# Lines that start with '#' are comments.
|
3
|
+
# For a project mostly in C, the following would be a good set of
|
4
|
+
# exclude patterns (uncomment them if you want to use them):
|
5
|
+
# *.[oa]
|
6
|
+
# *~
|
7
|
+
announcement.txt
|
8
|
+
coverage
|
9
|
+
doc
|
10
|
+
pkg
|
11
|
+
manual.txt
|
12
|
+
.yardoc
|
data/History.txt
CHANGED
data/lib/bones/plugins/gem.rb
CHANGED
@@ -22,7 +22,7 @@ module Bones::Plugins::Gem
|
|
22
22
|
|
23
23
|
dep = case version
|
24
24
|
when nil; [name]
|
25
|
-
when %r/^\d/; [name, "
|
25
|
+
when %r/^\d/; [name, "= #{version}"]
|
26
26
|
else [name, version] end
|
27
27
|
|
28
28
|
development ?
|
@@ -53,7 +53,7 @@ module Bones::Plugins::Gem
|
|
53
53
|
should not muck about with this configuration setting manually.
|
54
54
|
|
55
55
|
| depend_on 'rake'
|
56
|
-
| depend_on 'rspec', '1.2.8' # expands to '
|
56
|
+
| depend_on 'rspec', '1.2.8' # expands to '= 1.2.8'
|
57
57
|
| depend_on 'main', '~> 2.0'
|
58
58
|
__
|
59
59
|
|
@@ -238,7 +238,7 @@ module Bones::Plugins::Gem
|
|
238
238
|
|
239
239
|
desc 'Install the gem'
|
240
240
|
task :install => [:clobber, 'gem:package'] do
|
241
|
-
sh "#{SUDO} #{GEM} install
|
241
|
+
sh "#{SUDO} #{GEM} install pkg/#{config.gem._spec.full_name}"
|
242
242
|
|
243
243
|
# use this version of the command for rubygems > 1.0.0
|
244
244
|
#sh "#{SUDO} #{GEM} install --no-update-sources pkg/#{config.gem._spec.full_name}"
|
data/version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.6.
|
1
|
+
3.6.2
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bones
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 6
|
9
|
-
-
|
10
|
-
version: 3.6.
|
9
|
+
- 2
|
10
|
+
version: 3.6.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Tim Pease
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-01-
|
18
|
+
date: 2011-01-27 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -24,7 +24,7 @@ dependencies:
|
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
25
|
none: false
|
26
26
|
requirements:
|
27
|
-
- - "
|
27
|
+
- - "="
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
hash: 49
|
30
30
|
segments:
|
@@ -40,7 +40,7 @@ dependencies:
|
|
40
40
|
requirement: &id002 !ruby/object:Gem::Requirement
|
41
41
|
none: false
|
42
42
|
requirements:
|
43
|
-
- - "
|
43
|
+
- - "="
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
hash: 23
|
46
46
|
segments:
|
@@ -56,7 +56,7 @@ dependencies:
|
|
56
56
|
requirement: &id003 !ruby/object:Gem::Requirement
|
57
57
|
none: false
|
58
58
|
requirements:
|
59
|
-
- - "
|
59
|
+
- - "="
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
hash: 11
|
62
62
|
segments:
|
@@ -87,6 +87,7 @@ extra_rdoc_files:
|
|
87
87
|
- spec/data/rdoc.txt
|
88
88
|
files:
|
89
89
|
- .autotest
|
90
|
+
- .gitignore
|
90
91
|
- History.txt
|
91
92
|
- README.rdoc
|
92
93
|
- Rakefile
|