gem2arch 0.0.5 → 0.0.6
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 +15 -7
- data/gem2arch.gemspec +1 -1
- data/lib/gem2arch.rb +1 -1
- data/lib/gem2arch/core.rb +2 -2
- metadata +21 -27
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
|
-
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
MTMyYjY0ZWM2Y2I1ZjQ5MmNhNWQ4NmNmYmM4YjgzMTA1MzNlODMwYw==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
MWU5YTMwZmRmMzI1YWMxMGJiYTdlMGEwMmUxYjNkMzYyYzg0NjQ3Yw==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
MDdkYzA3MzQ1YjFjNTk2ZGU1ZjBmNTVmOTAzYmY1ZDZjYTI2MDI5ZDM5MjE2
|
10
|
+
ODU2MGY4NTE5MDkwZTUzZTVlMDMwYzMzMTc5MGQ0MTBhNWU5ZTFjMDI4Njkz
|
11
|
+
MWE3ZjRjNTE4ZjYwNmM3NjdlNTI4NWMyYzY1NDlkNTIzMWM5MmQ=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NWUwYzIxZjViZDQyZDJiNTdjNzU1ZjJiNjUzNTU3ZjQ2ZTFhODUxYmVlMjQ0
|
14
|
+
MWU4ZTc0NWI0NzQ0MTBkYzdhNzYzMWNiZDY3NTM5OTBmMzJiM2IyODQ2ZGM4
|
15
|
+
MGEzN2Y1ZWQ0NjIwN2MwNGU0Yzc5NDc2NTY1YzMzMzg1MWQzNWM=
|
data/gem2arch.gemspec
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
# Variables:
|
5
5
|
s.name = "gem2arch"
|
6
|
-
s.version = "0.0.
|
6
|
+
s.version = "0.0.6"
|
7
7
|
s.description = "A version of gem2arch by crabtw that creates an ArchLinux PKGBUILD from a ruby gem"
|
8
8
|
s.summary = "Creates an ArchLinux PKGBUILD from a ruby gem"
|
9
9
|
s.authors = ["Ari Mizrahi"]
|
data/lib/gem2arch.rb
CHANGED
@@ -12,7 +12,7 @@ module Gem2arch
|
|
12
12
|
}
|
13
13
|
|
14
14
|
OptionParser.new do |opts|
|
15
|
-
opts.banner = "gem2arch 0.0.
|
15
|
+
opts.banner = "gem2arch 0.0.6 (https://www.github.com/codemunchies/gem2arch)"
|
16
16
|
opts.banner += "Usage: gem2arch [options]"
|
17
17
|
|
18
18
|
opts.on("--build [STRING]", "Gem to download and generate PKGBUILD for") do |gem|
|
data/lib/gem2arch/core.rb
CHANGED
@@ -10,8 +10,8 @@ module Gem2arch
|
|
10
10
|
|
11
11
|
# Make sure we're running ruby 2.0.0 or higher
|
12
12
|
def initialize
|
13
|
-
unless RUBY_VERSION >= '
|
14
|
-
puts "You need ruby >=
|
13
|
+
unless RUBY_VERSION >= '1.9.3'
|
14
|
+
puts "You need ruby >= 1.9.3 to run gem2arch"
|
15
15
|
exit
|
16
16
|
end
|
17
17
|
end
|
metadata
CHANGED
@@ -1,26 +1,23 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: gem2arch
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
|
-
authors:
|
6
|
+
authors:
|
7
7
|
- Ari Mizrahi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
|
12
|
-
date: 2013-08-01 00:00:00 Z
|
11
|
+
date: 2013-08-01 00:00:00.000000000 Z
|
13
12
|
dependencies: []
|
14
|
-
|
15
|
-
|
13
|
+
description: A version of gem2arch by crabtw that creates an ArchLinux PKGBUILD from
|
14
|
+
a ruby gem
|
16
15
|
email: codemunchies@gmail.com
|
17
|
-
executables:
|
16
|
+
executables:
|
18
17
|
- gem2arch
|
19
18
|
extensions: []
|
20
|
-
|
21
19
|
extra_rdoc_files: []
|
22
|
-
|
23
|
-
files:
|
20
|
+
files:
|
24
21
|
- lib/gem2arch.rb
|
25
22
|
- lib/gem2arch/core.rb
|
26
23
|
- bin/gem2arch
|
@@ -28,30 +25,27 @@ files:
|
|
28
25
|
- Gemfile
|
29
26
|
- README.md
|
30
27
|
homepage: http://github.com/codemunchies/gem2arch
|
31
|
-
licenses:
|
28
|
+
licenses:
|
32
29
|
- GPL-3
|
33
30
|
metadata: {}
|
34
|
-
|
35
31
|
post_install_message:
|
36
32
|
rdoc_options: []
|
37
|
-
|
38
|
-
require_paths:
|
33
|
+
require_paths:
|
39
34
|
- lib
|
40
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
41
|
-
requirements:
|
42
|
-
-
|
43
|
-
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ! '>='
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
41
|
+
requirements:
|
42
|
+
- - ! '>='
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '0'
|
49
45
|
requirements: []
|
50
|
-
|
51
46
|
rubyforge_project:
|
52
47
|
rubygems_version: 2.0.6
|
53
48
|
signing_key:
|
54
49
|
specification_version: 4
|
55
50
|
summary: Creates an ArchLinux PKGBUILD from a ruby gem
|
56
51
|
test_files: []
|
57
|
-
|