Launcher 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +4 -7
  3. data/launcher.gemspec +2 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YjZmZDAzOGI0OGI2NjI1NDVmZjEzZjMyZjViYzZlMjZjNmU5N2JjNQ==
4
+ YWQxNjIwODUzYWRiMGY1OWM2NzdiOTMyZWZiZTcxY2NiOGQzM2Q0OQ==
5
5
  data.tar.gz: !binary |-
6
- YTE3MjBiNzMwZjRlNzE5MmZjYWQ5ZmY0MWJhZmQwN2RjZDU5YWFjNA==
6
+ M2U3NDBhYjI4ZDQxNTBjZTVlMjQzMGIyMDc0ZjdiYjZhZGViYWI1Mg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YTYxODUyMTIzZGY5ZTgzZmI4OTI4ZGM4MzM4ZWQ0ZjBlNjI5Y2EwYTU5ZDQ4
10
- NmY2ZTcwZmY3ZTMyZDc1MWUxNzE4Y2ZlNjJmMzQ5NjRkMTQ2NGMwYzIwYjdj
11
- YTE3NzcxZmIyMDk0ZjA4MmY5ZDQyNjVmZmEzZTYyMDRjMjA4ZWE=
9
+ ZTMxYTExODVlOGM2ZTg1OGJiNDFhMzYzMzg5MjVjZDE4ZTJmNWUxMTU3ZDhm
10
+ YWFlNjUyN2E4ZGE4NGY2ZjM3NmUzODhiYjk5ZTU4NjIxMmVlMTRkZjJmYmIw
11
+ MjYzOTQ3NzczNDk1MTc1NDUzZjdlYWI5N2M0ZTM1MmViMGEyOWE=
12
12
  data.tar.gz: !binary |-
13
- NjhhNTRhZDk3ODQ3OGRmZTM4YTE5ZDkzNjhmM2MxYzI2MjI1YjY3ODUxNzBm
14
- NDUyNTg4MGVmNTdiYjQ4ZGJjYWMwYjI0ZjI3YzYzNGExNDc5OGIxY2Q5OTc5
15
- MTNkNTAzZTA4Y2VjMDNmZTRhYjFhMjFiNjlhYmFhNDgyY2E4OTY=
13
+ NzA0NTYyMjkwZmQ0MTc2YmZiYTQ4MTQ2OGRhNjAyMWY3YTY3MGQxOTM3NzUx
14
+ Y2FmMGYzMzJmOTdjZTc5ZTQ4NjVkNzllNjA2MmIwZTE4YzUwZjMzODBlYzBk
15
+ YzRjYWEyMTMyMTNkMmZlMmFiYjJhODk1MDJjOTg1NGRiYTNiZTM=
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- As the number of Ruby Gui Applications increases, it may be difficult to manage the big collection of apps. This launcher makes managing the Ruby widgets and Apps easier through a dropdown menu list. Once the user select a script it is launched. This works mainly with Ruby Gui scripts. Launcher comes as a window Ruby file ".rbw" which is launched without the cmd window.
1
+ Launcher is a small widget to launch applications and Ruby scripts. As the number of Ruby Gui Applications increases, it may be difficult to manage the big collection of apps. This launcher makes managing the Ruby widgets and Apps easier through a dropdown menu list. Once the user select a script it will be launched. This works mainly with Ruby Gui scripts. Launcher comes as a window Ruby file ".rbw" which is launched without the cmd window.
2
2
 
3
3
  This applies to Microsoft windows. Users of other Operating systems will modify the script to their needs.
4
4
 
@@ -6,9 +6,6 @@ This applies to Microsoft windows. Users of other Operating systems will modify
6
6
  USAGE:
7
7
  =====
8
8
  1. Install the Launcherr : "gem install launcher" at the prompt.
9
- 2. create a text file containing:
10
- require 'launcher'
11
- Launcher.run
12
- save it as "launcher.rb" in the folder where the collection of your Ruby scripts resides.
13
- Create a shortcut link on your desktop to this launcher.rb file in the scripts folder.
14
- 3. When you click on the Desktop link, the widget will be launched. Select the script to launch from the dropdown menu.
9
+ 2. Move the launcher.rbw from the gem location(C:\Ruby193\lib\ruby\gems\1.9.1\gems\Launcher-0.1.1) to the folder containing the scripts or applications (where the collection of your Ruby scripts resides).
10
+ Create a short-cut link on your desktop to this launcher.rb file in the scripts folder.
11
+ 3. When you click on the Desktop link, the widget will be launched. Select the script to launch from the drop-down menu.
@@ -2,12 +2,12 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "Launcher"
5
- s.version = "0.1.0"
5
+ s.version = "0.1.1"
6
6
  s.licenses = ['MIT']
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Sabry Fattah"]
9
9
  s.date = "2015-02-21"
10
- s.description = "A small desktop Gui widget in the form of dropdown menu to launch Ruby scripts or any executables"
10
+ s.description = "A small desktop Gui widget in the form of drop-down menu to launch Ruby scripts or any executables"
11
11
  s.email = "sabryabdelfattah@gmail.com"
12
12
  s.extra_rdoc_files = ["README.md"]
13
13
  s.files = ["launcher.gemspec", "lib/launcher.rbw", "README.md"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Launcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sabry Fattah
@@ -10,7 +10,7 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2015-02-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: A small desktop Gui widget in the form of dropdown menu to launch Ruby
13
+ description: A small desktop Gui widget in the form of drop-down menu to launch Ruby
14
14
  scripts or any executables
15
15
  email: sabryabdelfattah@gmail.com
16
16
  executables: []