cryptopunks-gui 0.0.10 → 0.0.14
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 +4 -4
- data/CHANGELOG.md +24 -0
- data/LICENSE.txt +1 -1
- data/README.md +16 -52
- data/VERSION +1 -1
- data/app/cryptopunks_gui.rb +17 -319
- data/app/model/image.rb +187 -0
- data/app/view/help_dialog.rb +31 -0
- data/app/view/image_frame.rb +145 -0
- data/app/view/menu_bar.rb +88 -0
- data/app/view/preferences_dialog.rb +174 -0
- data/app/view/style_options_frame.rb +60 -0
- data/bin/cryptopunks-gui +0 -0
- data/cryptopunks-gui.gemspec +68 -67
- metadata +15 -13
- data/bin/cryptopunks-mac-gui +0 -8
- data/bin/cryptopunks-mac-gui.rb +0 -8
- data/bin/package-mac +0 -8
- data/bin/package-mac-app +0 -5
- data/bin/package-mac-dmg +0 -6
data/cryptopunks-gui.gemspec
CHANGED
|
@@ -1,67 +1,68 @@
|
|
|
1
|
-
# Generated by juwelier
|
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
-
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: cryptopunks-gui 0.0.
|
|
6
|
-
|
|
7
|
-
Gem::Specification.new do |s|
|
|
8
|
-
s.name = "cryptopunks-gui".freeze
|
|
9
|
-
s.version = "0.0.
|
|
10
|
-
|
|
11
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
|
-
s.require_paths = ["app".freeze]
|
|
13
|
-
s.authors = ["
|
|
14
|
-
s.date = "2021-11-
|
|
15
|
-
s.description = "CryptoPunks GUI for Simplified Minting - Built with Glimmer DSL for Tk (requires ActiveTcl to run cryptopunks-gui command)".freeze
|
|
16
|
-
s.email = "andy.am@gmail.com".freeze
|
|
17
|
-
s.executables = ["cryptopunks-gui".freeze]
|
|
18
|
-
s.extra_rdoc_files = [
|
|
19
|
-
"CHANGELOG.md",
|
|
20
|
-
"LICENSE.txt",
|
|
21
|
-
"README.md"
|
|
22
|
-
]
|
|
23
|
-
s.files = [
|
|
24
|
-
"CHANGELOG.md",
|
|
25
|
-
"LICENSE.txt",
|
|
26
|
-
"README.md",
|
|
27
|
-
"VERSION",
|
|
28
|
-
"app/cryptopunks_gui.rb",
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"cryptopunks-gui
|
|
36
|
-
"
|
|
37
|
-
"icons/cryptopunks-gui.
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
s.
|
|
41
|
-
s.
|
|
42
|
-
s.
|
|
43
|
-
s.
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
s.add_runtime_dependency(%q<
|
|
52
|
-
s.
|
|
53
|
-
s.add_development_dependency(%q<
|
|
54
|
-
s.add_development_dependency(%q<
|
|
55
|
-
s.add_development_dependency(%q<
|
|
56
|
-
s.add_development_dependency(%q<
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
s.add_dependency(%q<
|
|
60
|
-
s.add_dependency(%q<
|
|
61
|
-
s.add_dependency(%q<
|
|
62
|
-
s.add_dependency(%q<
|
|
63
|
-
s.add_dependency(%q<
|
|
64
|
-
s.add_dependency(%q<
|
|
65
|
-
|
|
66
|
-
end
|
|
67
|
-
|
|
1
|
+
# Generated by juwelier
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
# stub: cryptopunks-gui 0.0.14 ruby app
|
|
6
|
+
|
|
7
|
+
Gem::Specification.new do |s|
|
|
8
|
+
s.name = "cryptopunks-gui".freeze
|
|
9
|
+
s.version = "0.0.14"
|
|
10
|
+
|
|
11
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
|
+
s.require_paths = ["app".freeze]
|
|
13
|
+
s.authors = ["andy_maleh".freeze, "geraldbauer".freeze]
|
|
14
|
+
s.date = "2021-11-25"
|
|
15
|
+
s.description = "CryptoPunks GUI for Simplified Minting - Built with Glimmer DSL for Tk (requires ActiveTcl to run cryptopunks-gui command)".freeze
|
|
16
|
+
s.email = "andy.am@gmail.com".freeze
|
|
17
|
+
s.executables = ["cryptopunks-gui".freeze]
|
|
18
|
+
s.extra_rdoc_files = [
|
|
19
|
+
"CHANGELOG.md",
|
|
20
|
+
"LICENSE.txt",
|
|
21
|
+
"README.md"
|
|
22
|
+
]
|
|
23
|
+
s.files = [
|
|
24
|
+
"CHANGELOG.md",
|
|
25
|
+
"LICENSE.txt",
|
|
26
|
+
"README.md",
|
|
27
|
+
"VERSION",
|
|
28
|
+
"app/cryptopunks_gui.rb",
|
|
29
|
+
"app/model/image.rb",
|
|
30
|
+
"app/view/help_dialog.rb",
|
|
31
|
+
"app/view/image_frame.rb",
|
|
32
|
+
"app/view/menu_bar.rb",
|
|
33
|
+
"app/view/preferences_dialog.rb",
|
|
34
|
+
"app/view/style_options_frame.rb",
|
|
35
|
+
"bin/cryptopunks-gui",
|
|
36
|
+
"cryptopunks-gui.gemspec",
|
|
37
|
+
"icons/cryptopunks-gui.icns",
|
|
38
|
+
"icons/cryptopunks-gui.png"
|
|
39
|
+
]
|
|
40
|
+
s.homepage = "http://github.com/cryptopunksnotdead/cryptopunks-gui".freeze
|
|
41
|
+
s.licenses = ["MIT".freeze]
|
|
42
|
+
s.post_install_message = "To launch CryptoPunks GUI, run command: cryptopunks-gui".freeze
|
|
43
|
+
s.rubygems_version = "3.2.22".freeze
|
|
44
|
+
s.summary = "CryptoPunks GUI for Simplified Minting".freeze
|
|
45
|
+
|
|
46
|
+
if s.respond_to? :specification_version then
|
|
47
|
+
s.specification_version = 4
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
if s.respond_to? :add_runtime_dependency then
|
|
51
|
+
s.add_runtime_dependency(%q<glimmer-dsl-tk>.freeze, ["= 0.0.47"])
|
|
52
|
+
s.add_runtime_dependency(%q<cryptopunks>.freeze, ["~> 2.0.1"])
|
|
53
|
+
s.add_development_dependency(%q<rspec>.freeze, ["~> 3.5.0"])
|
|
54
|
+
s.add_development_dependency(%q<rdoc>.freeze, ["~> 3.12"])
|
|
55
|
+
s.add_development_dependency(%q<juwelier>.freeze, ["~> 2.1.0"])
|
|
56
|
+
s.add_development_dependency(%q<simplecov>.freeze, [">= 0"])
|
|
57
|
+
s.add_development_dependency(%q<rake-tui>.freeze, [">= 0"])
|
|
58
|
+
else
|
|
59
|
+
s.add_dependency(%q<glimmer-dsl-tk>.freeze, ["= 0.0.47"])
|
|
60
|
+
s.add_dependency(%q<cryptopunks>.freeze, ["~> 2.0.1"])
|
|
61
|
+
s.add_dependency(%q<rspec>.freeze, ["~> 3.5.0"])
|
|
62
|
+
s.add_dependency(%q<rdoc>.freeze, ["~> 3.12"])
|
|
63
|
+
s.add_dependency(%q<juwelier>.freeze, ["~> 2.1.0"])
|
|
64
|
+
s.add_dependency(%q<simplecov>.freeze, [">= 0"])
|
|
65
|
+
s.add_dependency(%q<rake-tui>.freeze, [">= 0"])
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
|
metadata
CHANGED
|
@@ -1,29 +1,30 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cryptopunks-gui
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- andy_maleh
|
|
8
|
+
- geraldbauer
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2021-11-
|
|
12
|
+
date: 2021-11-25 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: glimmer-dsl-tk
|
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
|
16
17
|
requirements:
|
|
17
|
-
- -
|
|
18
|
+
- - '='
|
|
18
19
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.0.
|
|
20
|
+
version: 0.0.47
|
|
20
21
|
type: :runtime
|
|
21
22
|
prerelease: false
|
|
22
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
24
|
requirements:
|
|
24
|
-
- -
|
|
25
|
+
- - '='
|
|
25
26
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.0.
|
|
27
|
+
version: 0.0.47
|
|
27
28
|
- !ruby/object:Gem::Dependency
|
|
28
29
|
name: cryptopunks
|
|
29
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -124,16 +125,17 @@ files:
|
|
|
124
125
|
- README.md
|
|
125
126
|
- VERSION
|
|
126
127
|
- app/cryptopunks_gui.rb
|
|
128
|
+
- app/model/image.rb
|
|
129
|
+
- app/view/help_dialog.rb
|
|
130
|
+
- app/view/image_frame.rb
|
|
131
|
+
- app/view/menu_bar.rb
|
|
132
|
+
- app/view/preferences_dialog.rb
|
|
133
|
+
- app/view/style_options_frame.rb
|
|
127
134
|
- bin/cryptopunks-gui
|
|
128
|
-
- bin/cryptopunks-mac-gui
|
|
129
|
-
- bin/cryptopunks-mac-gui.rb
|
|
130
|
-
- bin/package-mac
|
|
131
|
-
- bin/package-mac-app
|
|
132
|
-
- bin/package-mac-dmg
|
|
133
135
|
- cryptopunks-gui.gemspec
|
|
134
136
|
- icons/cryptopunks-gui.icns
|
|
135
137
|
- icons/cryptopunks-gui.png
|
|
136
|
-
homepage: http://github.com/
|
|
138
|
+
homepage: http://github.com/cryptopunksnotdead/cryptopunks-gui
|
|
137
139
|
licenses:
|
|
138
140
|
- MIT
|
|
139
141
|
metadata: {}
|
data/bin/cryptopunks-mac-gui
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
|
|
3
|
-
mkdir -p ~/Library/Frameworks
|
|
4
|
-
[ ! -d ~/Library/Tcl ] && cp -r Tcl ~/Library/Tcl
|
|
5
|
-
[ ! -d ~/Library/Frameworks/Tcl.framework ] && cp -r Tcl.framework ~/Library/Frameworks/Tcl.framework
|
|
6
|
-
[ ! -d ~/Library/Frameworks/Tk.framework ] && cp -r Tk.framework ~/Library/Frameworks/Tk.framework
|
|
7
|
-
|
|
8
|
-
ruby-3.0.2/bin/ruby cryptopunks-gui/bin/cryptopunks-mac-gui.rb
|
data/bin/cryptopunks-mac-gui.rb
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
Gem.paths = {
|
|
4
|
-
'GEM_HOME' => File.expand_path('../../ruby-3.0.2@cryptopunks-gui', __dir__),
|
|
5
|
-
'GEM_PATH' => Gem.paths.path + [File.expand_path('../../ruby-3.0.2@cryptopunks-gui', __dir__)],
|
|
6
|
-
'GEM_SPEC_CACHE' => Gem.paths.spec_cache_dir
|
|
7
|
-
}
|
|
8
|
-
require_relative '../app/cryptopunks_gui.rb'
|
data/bin/package-mac
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
|
|
3
|
-
source "$(dirname "$BASH_SOURCE")/package-mac-dmg"
|
|
4
|
-
echo "Moving .app file to ~/Applications/ to make ready for use..."
|
|
5
|
-
rm -rf ~/Applications/CryptoPunks\ GUI.app
|
|
6
|
-
mv ~/Applications/CryptoPunks\ GUI/CryptoPunks\ GUI.app ~/Applications/CryptoPunks\ GUI.app
|
|
7
|
-
rm -rf ~/Applications/CryptoPunks\ GUI
|
|
8
|
-
echo "Done packaging."
|
data/bin/package-mac-app
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
|
|
3
|
-
echo "Packaging .app file..."
|
|
4
|
-
mkdir -p ~/Applications/CryptoPunks\ GUI
|
|
5
|
-
platypus --quit-after-execution --interface-type "None" --name "CryptoPunks GUI" --app-icon "icons/cryptopunks-gui.icns" --author "Andy Maleh" --app-version "1.0.0" --bundle-identifier "org.andymaleh.CryptoPunksGUI" --bundled-file "$(pwd)|$(dirname $(dirname $(which ruby)))|$(dirname $(dirname $(dirname $(dirname $(gem which glimmer)))))|/Library/Frameworks/Tcl.framework|/Library/Frameworks/Tk.framework|/Library/Tcl" "bin/cryptopunks-mac-gui" --overwrite "~/Applications/CryptoPunks GUI/CryptoPunks GUI.app"
|
data/bin/package-mac-dmg
DELETED