forked from maran/mastercoin-wallet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mastercoin-wallet.gemspec
110 lines (105 loc) · 4.2 KB
/
mastercoin-wallet.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
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "mastercoin-wallet"
s.version = "0.0.5"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Maran"]
s.date = "2013-11-05"
s.description = "Mastercoin wallet using QT bindings to create a useful gui wallet"
s.email = "[email protected]"
s.executables = ["mastercoin-wallet"]
s.extra_rdoc_files = [
"LICENSE.txt",
"README.rdoc"
]
s.files = [
".document",
"Gemfile",
"Gemfile.lock",
"LICENSE.txt",
"Makefile",
"README.rdoc",
"Rakefile",
"VERSION",
"bin/mastercoin-wallet",
"lib/.DS_Store",
"lib/mastercoin-wallet.rb",
"lib/mastercoin-wallet/builder.rb",
"lib/mastercoin-wallet/config.rb",
"lib/mastercoin-wallet/gui/bitcoin_offer_window.rb",
"lib/mastercoin-wallet/gui/bitcoin_offer_window.ui",
"lib/mastercoin-wallet/gui/first_run_window.rb",
"lib/mastercoin-wallet/gui/first_run_window.ui",
"lib/mastercoin-wallet/gui/images.rb",
"lib/mastercoin-wallet/gui/main_window.rb",
"lib/mastercoin-wallet/gui/main_window.ui",
"lib/mastercoin-wallet/gui/purchase_offer_window.rb",
"lib/mastercoin-wallet/gui/purchase_offer_window.ui",
"lib/mastercoin-wallet/gui/selling_offer_window.rb",
"lib/mastercoin-wallet/gui/selling_offer_window.ui",
"lib/mastercoin-wallet/gui/simple_send_window.rb",
"lib/mastercoin-wallet/gui/simple_send_window.ui",
"lib/mastercoin-wallet/gui/ui_bitcoin_offer.rb",
"lib/mastercoin-wallet/gui/ui_first_run.rb",
"lib/mastercoin-wallet/gui/ui_main.rb",
"lib/mastercoin-wallet/gui/ui_purchase_offer.rb",
"lib/mastercoin-wallet/gui/ui_selling_offer.rb",
"lib/mastercoin-wallet/gui/ui_simple_send.rb",
"lib/mastercoin-wallet/models/address.rb",
"lib/mastercoin-wallet/models/selling_offer.rb",
"lib/mastercoin-wallet/models/transaction.rb",
"lib/mastercoin-wallet/network/selling_offer.rb",
"lib/mastercoin-wallet/network/wallet.rb",
"mastercoin-wallet.gemspec",
"resources/images.qrc",
"resources/logo.icns",
"resources/logo.svg",
"test/helper.rb",
"test/test_mastercoin-wallet.rb"
]
s.homepage = "http://github.com/maran/mastercoin-wallet"
s.licenses = ["CCPL"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.summary = "Wallet implementation for the Mastercoin protocol"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<mastercoin-ruby>, ["~> 0.1.0"])
s.add_runtime_dependency(%q<qtbindings>, [">= 0"])
s.add_runtime_dependency(%q<httparty>, [">= 0"])
s.add_runtime_dependency(%q<active_support>, [">= 0"])
s.add_runtime_dependency(%q<bitcoin-ruby>, ["= 0.0.2"])
s.add_runtime_dependency(%q<ffi>, [">= 0"])
s.add_runtime_dependency(%q<i18n>, [">= 0"])
s.add_development_dependency(%q<releasy>, [">= 0"])
s.add_development_dependency(%q<bundler>, ["~> 1.0"])
s.add_development_dependency(%q<jeweler>, ["~> 1.8.8"])
else
s.add_dependency(%q<mastercoin-ruby>, ["~> 0.1.0"])
s.add_dependency(%q<qtbindings>, [">= 0"])
s.add_dependency(%q<httparty>, [">= 0"])
s.add_dependency(%q<active_support>, [">= 0"])
s.add_dependency(%q<bitcoin-ruby>, ["= 0.0.2"])
s.add_dependency(%q<ffi>, [">= 0"])
s.add_dependency(%q<i18n>, [">= 0"])
s.add_dependency(%q<releasy>, [">= 0"])
s.add_dependency(%q<bundler>, ["~> 1.0"])
s.add_dependency(%q<jeweler>, ["~> 1.8.8"])
end
else
s.add_dependency(%q<mastercoin-ruby>, ["~> 0.1.0"])
s.add_dependency(%q<qtbindings>, [">= 0"])
s.add_dependency(%q<httparty>, [">= 0"])
s.add_dependency(%q<active_support>, [">= 0"])
s.add_dependency(%q<bitcoin-ruby>, ["= 0.0.2"])
s.add_dependency(%q<ffi>, [">= 0"])
s.add_dependency(%q<i18n>, [">= 0"])
s.add_dependency(%q<releasy>, [">= 0"])
s.add_dependency(%q<bundler>, ["~> 1.0"])
s.add_dependency(%q<jeweler>, ["~> 1.8.8"])
end
end