shoes 4.0.0.pre9 → 4.0.0.pre10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +8 -8
  3. metadata +11 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 8f02f46d99a3adfcd11392948aaa6918130b54a9
4
- data.tar.gz: 50c5c30caad5fc9145509cc495c8d46f310eb29d
2
+ SHA256:
3
+ metadata.gz: e6356ca2dac26b1b015abd483ab6b5f25b5d589b728f3a18d804779d2271aa84
4
+ data.tar.gz: 6251e4a70f4368c7511da79a5784e82d6eb2f1055a10ef61ef51f45faaa229ad
5
5
  SHA512:
6
- metadata.gz: 8f807f8dd66c88d47442e16fa14a3ec08129aa80ee3a95ac4ede2596123b82725aeae26c35d907fa7484fecd8552a3535869a60877c2e45cd5e39a22e7f40a77
7
- data.tar.gz: 6fac910f459e6b4cae7996884a76e5f73fe73c8a957914b32e4aba0fbac48db7aabd40286a459dbccdca67e99c3ff99ef95e833c8253973a01ba639f88425d38
6
+ metadata.gz: 574184b0af24736d8f07a73855d78f7a64a53aae7bbe641f478d7ab1c4aae2cde222ad69a626db5d431c40f053693d98f00aaf39c8df96b6434c86cd81ce2445
7
+ data.tar.gz: e12d71eb8a1134ad05044df10fd90e6c05cce65cd39d80442437b902d422c9fcd9d65df3a2174573c717a9b85821d1088e0724d5434e7dab4dc01a0915a74927
data/README.md CHANGED
@@ -29,7 +29,7 @@ This results in the following application:
29
29
 
30
30
  The look and feel will differ for your operating system, as Shoes 4 uses native widgets.
31
31
 
32
- ##Some history about Shoes
32
+ ## Some history about Shoes
33
33
 
34
34
  Way way back in the day, there was a guy named \_why. He created a project known as [Hackety Hack](http://hackety-hack.com) to teach programming to everyone. In order to reach all corners of the earth, \_why decided to make Hackety Hack work on Windows, Mac OS X, and Linux. This was a lot of work, and so \_why decided to share his toolkit with the world. Thus, Shoes was born.
35
35
 
@@ -49,7 +49,7 @@ So your first step is to install a [JDK](http://www.oracle.com/technetwork/java/
49
49
 
50
50
  $ rvm install jruby
51
51
 
52
- **JDK version note:** JRuby version 9 requires a JDK version of **7 and up**. Also within the JDK major version make sure to have the latest updates installed, we had cases where newer versions resolved bugs.
52
+ **JDK version note:** JRuby version 9 requires a JDK version of **7 or 8** - **JDK 9 does not yet work with JRuby** and therefore not with Shoes. Also within the JDK major version make sure to have the latest updates installed, we had cases where newer versions resolved bugs.
53
53
 
54
54
  **SWT requirement:** Be aware that Shoes 4 builds on [SWT](http://www.eclipse.org/swt/) for its default backend. That is usually no concern (other than the need for JRuby/JDK, described above) as you do not have to install SWT yourself. However, that means we have the same basic system requirements SWT does. For Linux that means you need GTK+ >= 2.10 or >= 3.0 if you like. Moreover, as of now there is no ARM support (as the Raspberry Pi would need).
55
55
 
@@ -148,13 +148,13 @@ That's Warbler talking. Actually, we sneak the Shoes gem in anyway, but don't te
148
148
 
149
149
  Okay, now for real. The simplest thing is to put your script in a directory by itself and then:
150
150
 
151
- $ bin/shoes -p swt:app path/to/directory-of/your-shoes-app.rb
151
+ $ bin/shoes package --mac path/to/directory-of/your-shoes-app.rb
152
152
 
153
- This will produce a Mac app, which you can then find at `path/to/directory-of/pkg/Shoes App.app`.
153
+ This will produce a Mac app, which you can then find at `path/to/directory-of/pkg/your-shoes-app.app`.
154
154
 
155
155
  You can also package a shoes app up as a jar through:
156
156
 
157
- $ bin/shoes -p swt:jar path/to/directory-of/your-shoes-app.rb
157
+ $ bin/shoes package --jar path/to/directory-of/your-shoes-app.rb
158
158
 
159
159
  You can find the jar in the same directory as above, i.e. path/to/directory-of/pkg/your-shoes-app.jar
160
160
 
@@ -164,9 +164,9 @@ If you want more control (like you want to name your app something besides "Shoe
164
164
 
165
165
  When you have an `app.yaml` file right next to your script, you have three options:
166
166
 
167
- $ bin/shoes -p swt:app path/to/directory-of/your-shoes-app.rb
168
- $ bin/shoes -p swt:app path/to/directory-of/app.yaml
169
- $ bin/shoes -p swt:app path/to/directory-of
167
+ $ bin/shoes package --mac path/to/directory-of/your-shoes-app.rb
168
+ $ bin/shoes package --mac path/to/directory-of/app.yaml
169
+ $ bin/shoes package --mac path/to/directory-of
170
170
 
171
171
  The packager will find your instructions using any of those commands. Again, you'll find your app in the `pkg` directory inside your project's directory. Find out more at `bin/shoes --help`.
172
172
 
metadata CHANGED
@@ -1,21 +1,21 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shoes
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0.pre9
4
+ version: 4.0.0.pre10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Team Shoes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-24 00:00:00.000000000 Z
11
+ date: 2017-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
16
  - - '='
17
17
  - !ruby/object:Gem::Version
18
- version: 4.0.0.pre9
18
+ version: 4.0.0.pre10
19
19
  name: shoes-core
20
20
  prerelease: false
21
21
  type: :runtime
@@ -23,13 +23,13 @@ dependencies:
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 4.0.0.pre9
26
+ version: 4.0.0.pre10
27
27
  - !ruby/object:Gem::Dependency
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
30
  - - '='
31
31
  - !ruby/object:Gem::Version
32
- version: 4.0.0.pre9
32
+ version: 4.0.0.pre10
33
33
  name: shoes-swt
34
34
  prerelease: false
35
35
  type: :runtime
@@ -37,7 +37,7 @@ dependencies:
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 4.0.0.pre9
40
+ version: 4.0.0.pre10
41
41
  - !ruby/object:Gem::Dependency
42
42
  requirement: !ruby/object:Gem::Requirement
43
43
  requirements:
@@ -58,7 +58,8 @@ dependencies:
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
60
  version: 4.0.0
61
- description: Shoes is the best little GUI toolkit for Ruby. Shoes makes building for Mac, Windows, and Linux super simple. Shoes runs on JRuby only for now.
61
+ description: Shoes is the best little GUI toolkit for Ruby. Shoes makes building for
62
+ Mac, Windows, and Linux super simple. Shoes runs on JRuby only for now.
62
63
  email:
63
64
  - shoes@lists.mvmanila.com
64
65
  executables:
@@ -93,8 +94,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
94
  version: 1.3.1
94
95
  requirements: []
95
96
  rubyforge_project:
96
- rubygems_version: 2.6.10
97
+ rubygems_version: 2.6.11
97
98
  signing_key:
98
99
  specification_version: 4
99
- summary: Shoes is the best little GUI toolkit for Ruby. Shoes runs on JRuby only for now.
100
+ summary: Shoes is the best little GUI toolkit for Ruby. Shoes runs on JRuby only for
101
+ now.
100
102
  test_files: []