hoe-geminabox 0.3.0 → 0.4.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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +4 -0
- data/README.md +7 -0
- data/Rakefile +2 -1
- data/lib/hoe/geminabox.rb +1 -1
- metadata +29 -35
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 1f4d0ceb2e374a7a7c4b2a3f804b0e6861584231
|
|
4
|
+
data.tar.gz: 9a87ca54ef44c167b04b093eb4f091895f54f6ad
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 6da99ce0f68a3a7074715971d93ca40bd309c43105fba519e40f45d120df9d1b867f7503b2e2bc83adbdac9f975a192c479e92d885587cac389afdb3e35e5aff
|
|
7
|
+
data.tar.gz: 56680440cc7c865fc9c9c6cf079bb8e066c9fd68e52978accf95e43bdfe8499909b51dfcd4f6b111fdb889d897bbec4c20a4be1084cdb4a8fe7ae4e69353a833
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -22,6 +22,13 @@ A small [hoe] plugin that allows you to push your gems to [geminabox].
|
|
|
22
22
|
|
|
23
23
|
$ [sudo] gem install hoe-geminabox
|
|
24
24
|
|
|
25
|
+
## ACKNOWLEDGEMENTS:
|
|
26
|
+
|
|
27
|
+
The following folks have contributed code, testing, and advice. They're rad.
|
|
28
|
+
|
|
29
|
+
* Rafał Bigaj
|
|
30
|
+
* Austin Ziegler
|
|
31
|
+
|
|
25
32
|
## LICENSE:
|
|
26
33
|
|
|
27
34
|
(The MIT License)
|
data/Rakefile
CHANGED
|
@@ -5,10 +5,11 @@ Hoe.plugin :doofus, :git
|
|
|
5
5
|
|
|
6
6
|
Hoe.spec 'hoe-geminabox' do
|
|
7
7
|
developer 'Ben Bleything', 'ben@bleything.net'
|
|
8
|
+
|
|
8
9
|
### Use markdown for changelog and readme
|
|
9
10
|
self.history_file = 'CHANGELOG.md'
|
|
10
11
|
self.readme_file = 'README.md'
|
|
11
12
|
|
|
12
13
|
### dependencies!
|
|
13
|
-
self.extra_deps
|
|
14
|
+
self.extra_deps << ['geminabox', '~> 0.12']
|
|
14
15
|
end
|
data/lib/hoe/geminabox.rb
CHANGED
metadata
CHANGED
|
@@ -1,107 +1,101 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hoe-geminabox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.4.0
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Ben Bleything
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 2015-11-26 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: geminabox
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
|
-
- - ~>
|
|
17
|
+
- - "~>"
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.
|
|
19
|
+
version: '0.12'
|
|
22
20
|
type: :runtime
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
|
-
- - ~>
|
|
24
|
+
- - "~>"
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
26
|
+
version: '0.12'
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
|
31
28
|
name: rdoc
|
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
-
none: false
|
|
34
30
|
requirements:
|
|
35
|
-
- - ~>
|
|
31
|
+
- - "~>"
|
|
36
32
|
- !ruby/object:Gem::Version
|
|
37
|
-
version: '
|
|
33
|
+
version: '4.0'
|
|
38
34
|
type: :development
|
|
39
35
|
prerelease: false
|
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
-
none: false
|
|
42
37
|
requirements:
|
|
43
|
-
- - ~>
|
|
38
|
+
- - "~>"
|
|
44
39
|
- !ruby/object:Gem::Version
|
|
45
|
-
version: '
|
|
40
|
+
version: '4.0'
|
|
46
41
|
- !ruby/object:Gem::Dependency
|
|
47
42
|
name: hoe
|
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
|
49
|
-
none: false
|
|
50
44
|
requirements:
|
|
51
|
-
- - ~>
|
|
45
|
+
- - "~>"
|
|
52
46
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: '3.
|
|
47
|
+
version: '3.14'
|
|
54
48
|
type: :development
|
|
55
49
|
prerelease: false
|
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
-
none: false
|
|
58
51
|
requirements:
|
|
59
|
-
- - ~>
|
|
52
|
+
- - "~>"
|
|
60
53
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: '3.
|
|
62
|
-
description:
|
|
63
|
-
|
|
54
|
+
version: '3.14'
|
|
55
|
+
description: |-
|
|
56
|
+
A small [hoe] plugin that allows you to push your gems to [geminabox].
|
|
64
57
|
|
|
65
58
|
[hoe]: https://github.com/seattlerb/hoe
|
|
66
|
-
|
|
67
|
-
[geminabox]: https://github.com/cwninja/geminabox'
|
|
59
|
+
[geminabox]: https://github.com/cwninja/geminabox
|
|
68
60
|
email:
|
|
69
61
|
- ben@bleything.net
|
|
70
62
|
executables: []
|
|
71
63
|
extensions: []
|
|
72
64
|
extra_rdoc_files:
|
|
65
|
+
- CHANGELOG.md
|
|
73
66
|
- Manifest.txt
|
|
67
|
+
- README.md
|
|
74
68
|
files:
|
|
75
|
-
- .rvmrc
|
|
69
|
+
- ".rvmrc"
|
|
76
70
|
- CHANGELOG.md
|
|
77
71
|
- Manifest.txt
|
|
78
72
|
- README.md
|
|
79
73
|
- Rakefile
|
|
80
74
|
- lib/hoe/geminabox.rb
|
|
81
75
|
homepage: http://github.com/bleything/hoe-geminabox
|
|
82
|
-
licenses:
|
|
76
|
+
licenses:
|
|
77
|
+
- MIT
|
|
78
|
+
metadata: {}
|
|
83
79
|
post_install_message:
|
|
84
80
|
rdoc_options:
|
|
85
|
-
- --main
|
|
81
|
+
- "--main"
|
|
86
82
|
- README.md
|
|
87
83
|
require_paths:
|
|
88
84
|
- lib
|
|
89
85
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
90
|
-
none: false
|
|
91
86
|
requirements:
|
|
92
|
-
- -
|
|
87
|
+
- - ">="
|
|
93
88
|
- !ruby/object:Gem::Version
|
|
94
89
|
version: '0'
|
|
95
90
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
|
-
none: false
|
|
97
91
|
requirements:
|
|
98
|
-
- -
|
|
92
|
+
- - ">="
|
|
99
93
|
- !ruby/object:Gem::Version
|
|
100
94
|
version: '0'
|
|
101
95
|
requirements: []
|
|
102
|
-
rubyforge_project:
|
|
103
|
-
rubygems_version:
|
|
96
|
+
rubyforge_project:
|
|
97
|
+
rubygems_version: 2.4.5
|
|
104
98
|
signing_key:
|
|
105
|
-
specification_version:
|
|
99
|
+
specification_version: 4
|
|
106
100
|
summary: A small [hoe] plugin that allows you to push your gems to [geminabox]
|
|
107
101
|
test_files: []
|