dlc 1.1.0 → 1.1.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/Rakefile +1 -0
- data/VERSION +1 -1
- data/dlc.gemspec +47 -0
- metadata +17 -12
- data/dlc_settings.yml +0 -8
data/Rakefile
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.1
|
data/dlc.gemspec
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{dlc}
|
|
8
|
+
s.version = "1.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["JP Hastings-Spital"]
|
|
12
|
+
s.date = %q{2010-06-09}
|
|
13
|
+
s.description = %q{Allows the generation of DLC container files (of JDownloader fame) from ruby}
|
|
14
|
+
s.email = %q{jphastings@gmail.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"README.rdoc"
|
|
17
|
+
]
|
|
18
|
+
s.files = [
|
|
19
|
+
"README.rdoc",
|
|
20
|
+
"Rakefile",
|
|
21
|
+
"VERSION",
|
|
22
|
+
"dlc.gemspec",
|
|
23
|
+
"lib/dlc.rb"
|
|
24
|
+
]
|
|
25
|
+
s.homepage = %q{http://github.com/jphastings/ruby-DLC}
|
|
26
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
27
|
+
s.require_paths = ["lib"]
|
|
28
|
+
s.rubygems_version = %q{1.3.6}
|
|
29
|
+
s.summary = %q{Allows the generation of DLC container files (of JDownloader fame) from ruby}
|
|
30
|
+
|
|
31
|
+
if s.respond_to? :specification_version then
|
|
32
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
33
|
+
s.specification_version = 3
|
|
34
|
+
|
|
35
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
36
|
+
s.add_runtime_dependency(%q<builder>, [">= 0"])
|
|
37
|
+
s.add_runtime_dependency(%q<ruby-aes-normal>, [">= 0"])
|
|
38
|
+
else
|
|
39
|
+
s.add_dependency(%q<builder>, [">= 0"])
|
|
40
|
+
s.add_dependency(%q<ruby-aes-normal>, [">= 0"])
|
|
41
|
+
end
|
|
42
|
+
else
|
|
43
|
+
s.add_dependency(%q<builder>, [">= 0"])
|
|
44
|
+
s.add_dependency(%q<ruby-aes-normal>, [">= 0"])
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
metadata
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dlc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash: 19
|
|
5
4
|
prerelease: false
|
|
6
5
|
segments:
|
|
7
6
|
- 1
|
|
8
7
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 1.1.
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.1.1
|
|
11
10
|
platform: ruby
|
|
12
11
|
authors:
|
|
13
12
|
- JP Hastings-Spital
|
|
@@ -15,23 +14,33 @@ autorequire:
|
|
|
15
14
|
bindir: bin
|
|
16
15
|
cert_chain: []
|
|
17
16
|
|
|
18
|
-
date: 2010-06-
|
|
17
|
+
date: 2010-06-09 00:00:00 +01:00
|
|
19
18
|
default_executable:
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: builder
|
|
23
22
|
prerelease: false
|
|
24
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
24
|
requirements:
|
|
27
25
|
- - ">="
|
|
28
26
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash: 3
|
|
30
27
|
segments:
|
|
31
28
|
- 0
|
|
32
29
|
version: "0"
|
|
33
30
|
type: :runtime
|
|
34
31
|
version_requirements: *id001
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: ruby-aes-normal
|
|
34
|
+
prerelease: false
|
|
35
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
segments:
|
|
40
|
+
- 0
|
|
41
|
+
version: "0"
|
|
42
|
+
type: :runtime
|
|
43
|
+
version_requirements: *id002
|
|
35
44
|
description: Allows the generation of DLC container files (of JDownloader fame) from ruby
|
|
36
45
|
email: jphastings@gmail.com
|
|
37
46
|
executables: []
|
|
@@ -44,7 +53,7 @@ files:
|
|
|
44
53
|
- README.rdoc
|
|
45
54
|
- Rakefile
|
|
46
55
|
- VERSION
|
|
47
|
-
-
|
|
56
|
+
- dlc.gemspec
|
|
48
57
|
- lib/dlc.rb
|
|
49
58
|
has_rdoc: true
|
|
50
59
|
homepage: http://github.com/jphastings/ruby-DLC
|
|
@@ -56,27 +65,23 @@ rdoc_options:
|
|
|
56
65
|
require_paths:
|
|
57
66
|
- lib
|
|
58
67
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
59
|
-
none: false
|
|
60
68
|
requirements:
|
|
61
69
|
- - ">="
|
|
62
70
|
- !ruby/object:Gem::Version
|
|
63
|
-
hash: 3
|
|
64
71
|
segments:
|
|
65
72
|
- 0
|
|
66
73
|
version: "0"
|
|
67
74
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
|
-
none: false
|
|
69
75
|
requirements:
|
|
70
76
|
- - ">="
|
|
71
77
|
- !ruby/object:Gem::Version
|
|
72
|
-
hash: 3
|
|
73
78
|
segments:
|
|
74
79
|
- 0
|
|
75
80
|
version: "0"
|
|
76
81
|
requirements: []
|
|
77
82
|
|
|
78
83
|
rubyforge_project:
|
|
79
|
-
rubygems_version: 1.3.
|
|
84
|
+
rubygems_version: 1.3.6
|
|
80
85
|
signing_key:
|
|
81
86
|
specification_version: 3
|
|
82
87
|
summary: Allows the generation of DLC container files (of JDownloader fame) from ruby
|
data/dlc_settings.yml
DELETED