gemify 0.4.0 → 0.4.1
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/bin/gemify +1 -1
- data/lib/gemify/version.rb +1 -1
- metadata +23 -30
data/bin/gemify
CHANGED
|
@@ -179,7 +179,7 @@ require 'erb'
|
|
|
179
179
|
require 'time'
|
|
180
180
|
|
|
181
181
|
now = Time.now.strftime('%Y-%m-%d')
|
|
182
|
-
content = ERB.new(
|
|
182
|
+
content = ERB.new(File.read(__FILE__).split('__END__').last).result(binding)
|
|
183
183
|
File.open(gemspec, "w") do |f|
|
|
184
184
|
f << content
|
|
185
185
|
end
|
data/lib/gemify/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,32 +1,29 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gemify
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.4.1
|
|
4
5
|
prerelease:
|
|
5
|
-
version: 0.4.0
|
|
6
6
|
platform: ruby
|
|
7
|
-
authors:
|
|
7
|
+
authors:
|
|
8
8
|
- Magnus Holm
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
|
|
13
|
-
date: 2011-03-04 00:00:00 +01:00
|
|
14
|
-
default_executable:
|
|
12
|
+
date: 2011-03-04 00:00:00.000000000 Z
|
|
15
13
|
dependencies: []
|
|
14
|
+
description: ! 'Gemify is a simple tool which helps you generate gemspecs (which are
|
|
16
15
|
|
|
17
|
-
description: |
|
|
18
|
-
Gemify is a simple tool which helps you generate gemspecs (which are
|
|
19
16
|
used for building gems) and verify that your project follows the common
|
|
17
|
+
|
|
20
18
|
and proven way to structure your Ruby packages.
|
|
21
19
|
|
|
20
|
+
'
|
|
22
21
|
email: judofyr@gmail.com
|
|
23
|
-
executables:
|
|
22
|
+
executables:
|
|
24
23
|
- gemify
|
|
25
24
|
extensions: []
|
|
26
|
-
|
|
27
25
|
extra_rdoc_files: []
|
|
28
|
-
|
|
29
|
-
files:
|
|
26
|
+
files:
|
|
30
27
|
- bin/gemify
|
|
31
28
|
- CHANGELOG
|
|
32
29
|
- gemify.gemspec
|
|
@@ -35,33 +32,29 @@ files:
|
|
|
35
32
|
- Rakefile
|
|
36
33
|
- README.md
|
|
37
34
|
- test/test_gemify.rb
|
|
38
|
-
has_rdoc: true
|
|
39
35
|
homepage: http://dojo.rubyforge.org/gemify
|
|
40
36
|
licenses: []
|
|
41
|
-
|
|
42
37
|
post_install_message:
|
|
43
38
|
rdoc_options: []
|
|
44
|
-
|
|
45
|
-
require_paths:
|
|
39
|
+
require_paths:
|
|
46
40
|
- lib
|
|
47
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
41
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
48
42
|
none: false
|
|
49
|
-
requirements:
|
|
50
|
-
- -
|
|
51
|
-
- !ruby/object:Gem::Version
|
|
52
|
-
version:
|
|
53
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ! '>='
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
47
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
54
48
|
none: false
|
|
55
|
-
requirements:
|
|
56
|
-
- -
|
|
57
|
-
- !ruby/object:Gem::Version
|
|
58
|
-
version:
|
|
49
|
+
requirements:
|
|
50
|
+
- - ! '>='
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '0'
|
|
59
53
|
requirements: []
|
|
60
|
-
|
|
61
54
|
rubyforge_project:
|
|
62
|
-
rubygems_version: 1.
|
|
55
|
+
rubygems_version: 1.8.10
|
|
63
56
|
signing_key:
|
|
64
57
|
specification_version: 3
|
|
65
58
|
summary: Quickly generate gemspecs for your projects
|
|
66
|
-
test_files:
|
|
59
|
+
test_files:
|
|
67
60
|
- test/test_gemify.rb
|