-
Notifications
You must be signed in to change notification settings - Fork 2
/
scratchpad.gemspec
122 lines (117 loc) · 4.25 KB
/
scratchpad.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{scratchpad}
s.version = "0.0.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["costan"]
s.date = %q{2010-06-17}
s.description = %q{Proof-of-concept models for a system that trusts an FPGA and a smart-card chip
for integrity verification of an untrusted storage medium.
}
s.email = %q{victor@costan.us}
s.executables = ["ether_ping_server", "ssc_client", "ssc_server", "enable_pcap", "fpga_deploy", "fpga_setup", "ssc_server_fmt", "ether_ping"]
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".gitignore",
".project",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"bin/enable_pcap",
"bin/ether_ping",
"bin/ether_ping_server",
"bin/fpga_deploy",
"bin/fpga_setup",
"bin/ssc_client",
"bin/ssc_server",
"bin/ssc_server_fmt",
"demo_script",
"lib/scratchpad.rb",
"lib/scratchpad/common/crypto.rb",
"lib/scratchpad/common/disk_helper.rb",
"lib/scratchpad/common/hash_tree.rb",
"lib/scratchpad/common/hash_tree_cache.rb",
"lib/scratchpad/common/hash_tree_cache_driver.rb",
"lib/scratchpad/common/hash_tree_on_disk.rb",
"lib/scratchpad/dev_keys/manufacturer.crt",
"lib/scratchpad/dev_keys/manufacturer.key.der",
"lib/scratchpad/dev_keys/manufacturer.yml",
"lib/scratchpad/ethernet/ping.rb",
"lib/scratchpad/ethernet/raw_ethernet.rb",
"lib/scratchpad/fpga/ether_echo.bit",
"lib/scratchpad/fpga/provision.rb",
"lib/scratchpad/models/client.rb",
"lib/scratchpad/models/disk.rb",
"lib/scratchpad/models/fpga.rb",
"lib/scratchpad/models/manufacturer.rb",
"lib/scratchpad/models/server.rb",
"lib/scratchpad/models/smartcard.rb",
"lib/scratchpad/protocols/fpga_client.rb",
"lib/scratchpad/protocols/server.rb",
"lib/scratchpad/protocols/server_client.rb",
"scratchpad.gemspec",
"test/disk_test.rb",
"test/fpga_protocol_test.rb",
"test/fpga_provisioning_test.rb",
"test/hash_tree_cache_driver_test.rb",
"test/hash_tree_cache_test.rb",
"test/hash_tree_on_disk_test.rb",
"test/hash_tree_test.rb",
"test/helper.rb",
"test/integration_test.rb",
"test/manufacturer_test.rb",
"test/raw_ethernet_test.rb",
"test/security_test.rb",
"test/server_protocol_test.rb"
]
s.homepage = %q{http://github.com/costan/scratchpad}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{High-performance trusted cloud storage proof-of-concept}
s.test_files = [
"test/hash_tree_cache_driver_test.rb",
"test/manufacturer_test.rb",
"test/hash_tree_test.rb",
"test/fpga_protocol_test.rb",
"test/raw_ethernet_test.rb",
"test/server_protocol_test.rb",
"test/integration_test.rb",
"test/hash_tree_cache_test.rb",
"test/fpga_provisioning_test.rb",
"test/disk_test.rb",
"test/security_test.rb",
"test/helper.rb",
"test/hash_tree_on_disk_test.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<fakefs>, [">= 0.2.1"])
s.add_development_dependency(%q<jeweler>, [">= 1.4.0"])
s.add_runtime_dependency(%q<eventmachine>, [">= 0.12.10"])
s.add_runtime_dependency(%q<ffi>, [">= 0.6.3"])
s.add_runtime_dependency(%q<json>, [">= 1.4.3"])
else
s.add_dependency(%q<fakefs>, [">= 0.2.1"])
s.add_dependency(%q<jeweler>, [">= 1.4.0"])
s.add_dependency(%q<eventmachine>, [">= 0.12.10"])
s.add_dependency(%q<ffi>, [">= 0.6.3"])
s.add_dependency(%q<json>, [">= 1.4.3"])
end
else
s.add_dependency(%q<fakefs>, [">= 0.2.1"])
s.add_dependency(%q<jeweler>, [">= 1.4.0"])
s.add_dependency(%q<eventmachine>, [">= 0.12.10"])
s.add_dependency(%q<ffi>, [">= 0.6.3"])
s.add_dependency(%q<json>, [">= 1.4.3"])
end
end