furoshiki 0.0.2 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +3 -0
- data/.rspec +2 -0
- data/Gemfile +9 -0
- data/README.rdoc +33 -28
- data/Rakefile +3 -1
- data/furoshiki.gemspec +2 -1
- data/lib/furoshiki/exceptions.rb +3 -0
- data/lib/furoshiki/shoes/configuration.rb +146 -0
- data/lib/furoshiki/shoes/swt_app.rb +217 -0
- data/lib/furoshiki/shoes/swt_jar.rb +62 -0
- data/lib/furoshiki/shoes.rb +15 -0
- data/lib/furoshiki/version.rb +1 -1
- data/lib/furoshiki/zip/directory.rb +19 -0
- data/lib/furoshiki/zip/directory_contents.rb +20 -0
- data/lib/furoshiki/zip/recursive.rb +58 -0
- data/lib/furoshiki/zip.rb +2 -0
- data/lib/furoshiki.rb +3 -1
- data/lib/warbler/traits/shoes.rb +51 -0
- data/spec/shoes/configuration_spec.rb +156 -0
- data/spec/shoes/spec_helper.rb +68 -0
- data/spec/shoes/support/shared_config.rb +6 -0
- data/spec/shoes/swt_app_spec.rb +119 -0
- data/spec/shoes/swt_jar_spec.rb +45 -0
- data/spec/shoes/test_app/app.yaml +17 -0
- data/spec/shoes/test_app/bin/hello_world +3 -0
- data/spec/shoes/test_app/dir_to_ignore/file_to_ignore.txt +1 -0
- data/spec/shoes/test_app/img/boots.icns +0 -0
- data/spec/shoes/test_app/img/boots.ico +0 -0
- data/spec/shoes/test_app/img/boots_512x512x32.png +0 -0
- data/spec/shoes/test_app/sibling.rb +1 -0
- data/spec/spec_helper.rb +32 -0
- data/spec/support/shared_zip.rb +21 -0
- data/spec/support/zip/a/a.rb +3 -0
- data/spec/support/zip/a/b/b.png +0 -0
- data/spec/support/zip/a/b/c/c.rb +3 -0
- data/spec/zip/directory_contents_spec.rb +25 -0
- data/spec/zip/directory_spec.rb +30 -0
- data/vendor/appbundler-1.0.jar +0 -0
- metadata +103 -47
- data/.rvmrc +0 -1
- data/Gemfile.lock +0 -7
- data/lib/furoshiki/rake_task.rb +0 -19
metadata
CHANGED
@@ -1,75 +1,131 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: furoshiki
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
segments:
|
6
|
-
- 0
|
7
|
-
- 0
|
8
|
-
- 2
|
9
|
-
version: 0.0.2
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
10
5
|
platform: ruby
|
11
|
-
authors:
|
6
|
+
authors:
|
12
7
|
- Steve Klabnik
|
13
8
|
autorequire:
|
14
9
|
bindir: bin
|
15
10
|
cert_chain: []
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
11
|
+
date: 2013-03-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: warbler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: plist
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Create .app, .exe, and $LINUX_PACKAGE versions of your application, with
|
42
|
+
its own embedded Ruby.
|
22
43
|
email: steve@steveklabnik.com
|
23
44
|
executables: []
|
24
|
-
|
25
45
|
extensions: []
|
26
|
-
|
27
46
|
extra_rdoc_files: []
|
28
|
-
|
29
|
-
files:
|
47
|
+
files:
|
30
48
|
- .gitignore
|
31
|
-
- .
|
49
|
+
- .rspec
|
32
50
|
- Gemfile
|
33
|
-
- Gemfile.lock
|
34
51
|
- LICENSE
|
35
52
|
- README.rdoc
|
36
53
|
- Rakefile
|
37
54
|
- example/Rakefile
|
38
55
|
- furoshiki.gemspec
|
39
56
|
- lib/furoshiki.rb
|
40
|
-
- lib/furoshiki/
|
57
|
+
- lib/furoshiki/exceptions.rb
|
58
|
+
- lib/furoshiki/shoes.rb
|
59
|
+
- lib/furoshiki/shoes/configuration.rb
|
60
|
+
- lib/furoshiki/shoes/swt_app.rb
|
61
|
+
- lib/furoshiki/shoes/swt_jar.rb
|
41
62
|
- lib/furoshiki/version.rb
|
42
|
-
|
63
|
+
- lib/furoshiki/zip.rb
|
64
|
+
- lib/furoshiki/zip/directory.rb
|
65
|
+
- lib/furoshiki/zip/directory_contents.rb
|
66
|
+
- lib/furoshiki/zip/recursive.rb
|
67
|
+
- lib/warbler/traits/shoes.rb
|
68
|
+
- spec/shoes/configuration_spec.rb
|
69
|
+
- spec/shoes/spec_helper.rb
|
70
|
+
- spec/shoes/support/shared_config.rb
|
71
|
+
- spec/shoes/swt_app_spec.rb
|
72
|
+
- spec/shoes/swt_jar_spec.rb
|
73
|
+
- spec/shoes/test_app/app.yaml
|
74
|
+
- spec/shoes/test_app/bin/hello_world
|
75
|
+
- spec/shoes/test_app/dir_to_ignore/file_to_ignore.txt
|
76
|
+
- spec/shoes/test_app/img/boots.icns
|
77
|
+
- spec/shoes/test_app/img/boots.ico
|
78
|
+
- spec/shoes/test_app/img/boots_512x512x32.png
|
79
|
+
- spec/shoes/test_app/sibling.rb
|
80
|
+
- spec/spec_helper.rb
|
81
|
+
- spec/support/shared_zip.rb
|
82
|
+
- spec/support/zip/a/a.rb
|
83
|
+
- spec/support/zip/a/b/b.png
|
84
|
+
- spec/support/zip/a/b/c/c.rb
|
85
|
+
- spec/zip/directory_contents_spec.rb
|
86
|
+
- spec/zip/directory_spec.rb
|
87
|
+
- vendor/appbundler-1.0.jar
|
43
88
|
homepage: http://github.com/steveklabnik/furoshiki
|
44
89
|
licenses: []
|
45
|
-
|
90
|
+
metadata: {}
|
46
91
|
post_install_message:
|
47
92
|
rdoc_options: []
|
48
|
-
|
49
|
-
require_paths:
|
93
|
+
require_paths:
|
50
94
|
- lib
|
51
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
requirements:
|
62
|
-
- - ">="
|
63
|
-
- !ruby/object:Gem::Version
|
64
|
-
segments:
|
65
|
-
- 0
|
66
|
-
version: "0"
|
95
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - '>='
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
100
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - '>='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
67
105
|
requirements: []
|
68
|
-
|
69
106
|
rubyforge_project:
|
70
|
-
rubygems_version:
|
107
|
+
rubygems_version: 2.0.0
|
71
108
|
signing_key:
|
72
|
-
specification_version:
|
109
|
+
specification_version: 4
|
73
110
|
summary: Package and distribute applications with Ruby.
|
74
|
-
test_files:
|
75
|
-
|
111
|
+
test_files:
|
112
|
+
- spec/shoes/configuration_spec.rb
|
113
|
+
- spec/shoes/spec_helper.rb
|
114
|
+
- spec/shoes/support/shared_config.rb
|
115
|
+
- spec/shoes/swt_app_spec.rb
|
116
|
+
- spec/shoes/swt_jar_spec.rb
|
117
|
+
- spec/shoes/test_app/app.yaml
|
118
|
+
- spec/shoes/test_app/bin/hello_world
|
119
|
+
- spec/shoes/test_app/dir_to_ignore/file_to_ignore.txt
|
120
|
+
- spec/shoes/test_app/img/boots.icns
|
121
|
+
- spec/shoes/test_app/img/boots.ico
|
122
|
+
- spec/shoes/test_app/img/boots_512x512x32.png
|
123
|
+
- spec/shoes/test_app/sibling.rb
|
124
|
+
- spec/spec_helper.rb
|
125
|
+
- spec/support/shared_zip.rb
|
126
|
+
- spec/support/zip/a/a.rb
|
127
|
+
- spec/support/zip/a/b/b.png
|
128
|
+
- spec/support/zip/a/b/c/c.rb
|
129
|
+
- spec/zip/directory_contents_spec.rb
|
130
|
+
- spec/zip/directory_spec.rb
|
131
|
+
has_rdoc:
|
data/.rvmrc
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
rvm use 1.9.2@furoshiki
|
data/Gemfile.lock
DELETED
data/lib/furoshiki/rake_task.rb
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
require 'rake'
|
2
|
-
|
3
|
-
module Furoshiki
|
4
|
-
class RakeTask
|
5
|
-
def initialize opts={}
|
6
|
-
yield self if block_given?
|
7
|
-
|
8
|
-
desc "Builds the package for distribution"
|
9
|
-
task "build" do
|
10
|
-
puts "You're going to build something!"
|
11
|
-
end
|
12
|
-
|
13
|
-
desc "Builds an installer"
|
14
|
-
task "install" do
|
15
|
-
puts "You're going to install something!"
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|