gtk3app 1.0.0 → 1.1.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a1730a503d6a167a516fa9c08494f5f2cfceec01
4
- data.tar.gz: 91963a1977d954bce96de1797f55cb619b32283f
3
+ metadata.gz: a45c813c86913bc16390755fc94b11da427711a2
4
+ data.tar.gz: f6ec81905eea7a33cf41d7374af3a4efee73a1a9
5
5
  SHA512:
6
- metadata.gz: 8d1e3a1bc0c65786b7f7857278a38cc977b3b3e975b66c337d17ebd257555765ae1914e2d292c8a6328cd00b5577ff747b3d10c0e2b8dfd59f476e0105e4fb3d
7
- data.tar.gz: 028495fa1593419f3d959fe349c215a763731f88bd60e43c6869e824efc98edde6c2c1ac5d37f70f6f1e1f713e2fb5bd7c47485e82bc951781f4767205ce71d7
6
+ metadata.gz: 8985d91fc0d3430b09da0c9c2a245a374ab631505556202de5ffafc5829f21a51dcfca5299ee8699e7269cbb05c7d6427b4fe6c1f0fe49a7eca83d3f8e06bc75
7
+ data.tar.gz: 168cc6bca6e67a3ad2807d6decb7e7ccef70a576bee8a3668850a4e384436289087cc9f7c672a704960e3ee3eb62604aa1bce98f4348289b9a6a2a1e8ca332ab
data/README.rdoc CHANGED
@@ -1,5 +1,7 @@
1
1
  = gt3applib
2
2
 
3
+ {<img src="https://badge.fury.io/rb/gtk3app.svg" alt="Gem Version" />}[http://badge.fury.io/rb/gtk3app]
4
+
3
5
  == DESCRIPTION:
4
6
 
5
7
  _Gtk3App_ provides a _Gtk3_ application stub.
@@ -8,7 +10,7 @@ It autmatically provides for command line options parsing, user configuration, a
8
10
 
9
11
  == SYNOPSIS:
10
12
 
11
- Given a module file such as ./my_app.rb, the module is expected to at leat provide MyApp.run(window):
13
+ Given a module file such as ./my_app.rb, the module is expected to at leat provide MyApp.run(program):
12
14
 
13
15
  module MyApp
14
16
  def self.run(program)
data/data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.1.0
@@ -4,6 +4,7 @@ module Gtk3App
4
4
  using Rafini::Exception
5
5
 
6
6
  UserSpace::OPTIONS[:parser] = YAML
7
+ UserSpace::OPTIONS[:config] = "config-#{VERSION}"
7
8
  UserSpace::OPTIONS[:ext] = 'yml'
8
9
 
9
10
  def self.config(mod)
@@ -1,3 +1,3 @@
1
1
  module Gtk3App
2
- VERSION = '1.0.0'
2
+ VERSION = '1.1.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gtk3app
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - carlosjhr64
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-27 00:00:00.000000000 Z
11
+ date: 2014-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: help_parser
@@ -56,20 +56,20 @@ dependencies:
56
56
  requirements:
57
57
  - - "~>"
58
58
  - !ruby/object:Gem::Version
59
- version: '0.3'
59
+ version: '0.5'
60
60
  - - ">="
61
61
  - !ruby/object:Gem::Version
62
- version: 0.3.0
62
+ version: 0.5.0
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - "~>"
68
68
  - !ruby/object:Gem::Version
69
- version: '0.3'
69
+ version: '0.5'
70
70
  - - ">="
71
71
  - !ruby/object:Gem::Version
72
- version: 0.3.0
72
+ version: 0.5.0
73
73
  - !ruby/object:Gem::Dependency
74
74
  name: sys-proctable
75
75
  requirement: !ruby/object:Gem::Requirement
@@ -119,7 +119,7 @@ dependencies:
119
119
  version: '0.2'
120
120
  - - ">="
121
121
  - !ruby/object:Gem::Version
122
- version: 0.2.0
122
+ version: 0.2.1
123
123
  type: :runtime
124
124
  prerelease: false
125
125
  version_requirements: !ruby/object:Gem::Requirement
@@ -129,7 +129,7 @@ dependencies:
129
129
  version: '0.2'
130
130
  - - ">="
131
131
  - !ruby/object:Gem::Version
132
- version: 0.2.0
132
+ version: 0.2.1
133
133
  description: |
134
134
  _Gtk3App_ provides a _Gtk3_ application stub.
135
135