hen 0.8.1 → 0.8.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.
- checksums.yaml +4 -4
- data/ChangeLog +6 -0
- data/README +1 -1
- data/example/project/README +1 -0
- data/example/project/_travis.yml +1 -0
- data/lib/hen/version.rb +1 -1
- data/lib/hens/gem.rake +18 -0
- metadata +8 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 46e9643145094306c1cf93c72dcdaf7f7c897310
|
4
|
+
data.tar.gz: 017b5fecca7ee2b7682d28107ed194a59d201682
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6968fb11d427a021e501848c240d605a6bc88fa11be8ad19abed9a3194e064d9ece71ffd29a7d473a4b31025a141b7bd54ede795e702735805cd4badf967fee3
|
7
|
+
data.tar.gz: 29afd04d72f51d635b831078203d1ccc5413ed3d4db12fad3e65003d82fb9fba9bb96726035feed06dd35f9b4998fdca294509c70a1c2fe592bc886f0b9864f6
|
data/ChangeLog
CHANGED
@@ -2,6 +2,12 @@
|
|
2
2
|
|
3
3
|
= Revision history for hen
|
4
4
|
|
5
|
+
== 0.8.2 [2015-07-28]
|
6
|
+
|
7
|
+
* New task <tt>gem:dependencies:current</tt>.
|
8
|
+
* Added Travis CI link to skeleton +README+.
|
9
|
+
* Added Ruby 2.2 to skeleton +.travis.yml+.
|
10
|
+
|
5
11
|
== 0.8.1 [2014-12-19]
|
6
12
|
|
7
13
|
* Removed workaround for RDoc issue 330. Implemented in RDoc 4.2.0.
|
data/README
CHANGED
data/example/project/README
CHANGED
@@ -17,6 +17,7 @@ This documentation refers to <%= progname %> version 0.0.0.
|
|
17
17
|
Documentation:: https://<%= githubuser %>.github.com/<%= progname %>
|
18
18
|
Source code:: https://github.com/<%= githubuser %>/<%= progname %>
|
19
19
|
RubyGem:: https://rubygems.org/gems/<%= progname %>
|
20
|
+
Travis CI:: https://travis-ci.org/<%= githubuser %>/<%= progname %>
|
20
21
|
|
21
22
|
|
22
23
|
== AUTHORS
|
data/example/project/_travis.yml
CHANGED
data/lib/hen/version.rb
CHANGED
data/lib/hens/gem.rake
CHANGED
@@ -199,6 +199,24 @@ Hen gem: :rdoc do
|
|
199
199
|
exit 1 unless errors.empty?
|
200
200
|
end
|
201
201
|
|
202
|
+
desc "List gem dependencies' current versions"
|
203
|
+
task 'gem:dependencies:current' do
|
204
|
+
gem_spec.dependencies.each { |dependency|
|
205
|
+
print '%s (%s, %s): ' % [
|
206
|
+
dependency.name, dependency.type, req = dependency.requirement
|
207
|
+
]
|
208
|
+
|
209
|
+
begin
|
210
|
+
ver = dependency.to_spec.version
|
211
|
+
rec = ver.approximate_recommendation
|
212
|
+
|
213
|
+
puts "#{ver}#{" (#{rec})" if req.to_s != rec}"
|
214
|
+
rescue Exception => err
|
215
|
+
puts "#{err.class} (#{err})"
|
216
|
+
end
|
217
|
+
}
|
218
|
+
end
|
219
|
+
|
202
220
|
desc 'Display the gem specification'
|
203
221
|
task 'gem:spec' do
|
204
222
|
puts gem_spec.to_ruby
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jens Wille
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-07-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: highline
|
@@ -106,28 +106,15 @@ licenses:
|
|
106
106
|
metadata: {}
|
107
107
|
post_install_message: |2+
|
108
108
|
|
109
|
-
hen-0.8.
|
109
|
+
hen-0.8.2 [2015-07-28]:
|
110
110
|
|
111
|
-
*
|
112
|
-
*
|
113
|
-
|
114
|
-
* When +cross_config_options+ given, cross compilation is implicitly disabled
|
115
|
-
when they are empty or enabled when they are non-empty; override by setting
|
116
|
-
+cross_compile+ explicitly.
|
117
|
-
* Added support for <tt>with_cross_<library></tt> options; specify a proc that
|
118
|
-
accepts the <tt>WITH_CROSS_<LIBRARY></tt> environment variable, if set, and
|
119
|
-
returns a single directory for <tt>--with-<library>-dir</tt> or an array for
|
120
|
-
<tt>--with-<library>-include</tt> and <tt>--with-<library>-lib</tt> to be
|
121
|
-
added to +cross_config_options+.
|
122
|
-
* Added support for +cross_compiling+ option.
|
123
|
-
* Added support for +local_files+ option, i.e., generated files that should be
|
124
|
-
included in the package but not under version control.
|
125
|
-
* When determining the +ext_name+ option, a possible <tt>ruby-</tt> prefix is
|
126
|
-
ignored.
|
111
|
+
* New task <tt>gem:dependencies:current</tt>.
|
112
|
+
* Added Travis CI link to skeleton +README+.
|
113
|
+
* Added Ruby 2.2 to skeleton +.travis.yml+.
|
127
114
|
|
128
115
|
rdoc_options:
|
129
116
|
- "--title"
|
130
|
-
- hen Application documentation (v0.8.
|
117
|
+
- hen Application documentation (v0.8.2)
|
131
118
|
- "--charset"
|
132
119
|
- UTF-8
|
133
120
|
- "--line-numbers"
|
@@ -148,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
148
135
|
version: '0'
|
149
136
|
requirements: []
|
150
137
|
rubyforge_project:
|
151
|
-
rubygems_version: 2.4.
|
138
|
+
rubygems_version: 2.4.8
|
152
139
|
signing_key:
|
153
140
|
specification_version: 4
|
154
141
|
summary: Just another project helper that integrates with Rake.
|