lumina 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/bin/lumina +0 -0
  3. data/lib/lumina.rb +0 -0
  4. data/lumina.gemspec +22 -0
  5. metadata +70 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 013ccaa9fd77b001b4807f34dfd15880753d2dbe
4
+ data.tar.gz: 9f34a2052e358ea6e66cd2bb9ad18330d1755d04
5
+ SHA512:
6
+ metadata.gz: c1e469b9d9eb4435318533bc5d9ac3678bf44eff54807fbe2ecc03aa2d9be2738fcbfdbe755c6349e38668f1a7479aa39e052f54294f959d5c27a8c699b45607
7
+ data.tar.gz: 2d582e4814acf4670726aba597a814f733045f2477f5a5f428a45902997cd96aec06189db047d8506b213cf370a2aab220e96cd4d98e624c680359c4e304a963
File without changes
File without changes
@@ -0,0 +1,22 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'lumina'
3
+ s.version = '0.0.0'
4
+ s.license = 'GPL-3.0'
5
+ s.summary = 'Lumina cross platform desktop GUI packager'
6
+ s.description = 'Lumina builds packages for Linux, OS X, and Windows by bundling all the ' \
7
+ 'necessary tools in a native package. For Linux it builds DEB or RPM packages ' \
8
+ 'which require the requisite dependencies, for OS X it builds a self-contained ' \
9
+ 'runnable which can be placed in Applications, for Windows it rolls a Ruby ' \
10
+ 'interpreter and all the necessary libraries into an installer.'
11
+ s.authors = ['Rei Kagetsuki']
12
+ s.email = 'zero@tsuki.net'
13
+ s.homepage = 'http://www.tsuki.net'
14
+
15
+ s.required_ruby_version = '>= 2.3.3'
16
+ s.files = Dir.glob('lib/**/*.rb') +
17
+ Dir.glob('bin/**/*') +
18
+ ['lumina.gemspec']
19
+ s.require_paths = ['lib']
20
+
21
+ s.add_dependency 'gtk3', '~> 3.1', '~> 3.1.9'
22
+ end
metadata ADDED
@@ -0,0 +1,70 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lumina
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Rei Kagetsuki
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-10-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: gtk3
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.1'
20
+ - - "~>"
21
+ - !ruby/object:Gem::Version
22
+ version: 3.1.9
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '3.1'
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: 3.1.9
33
+ description: Lumina builds packages for Linux, OS X, and Windows by bundling all the
34
+ necessary tools in a native package. For Linux it builds DEB or RPM packages which
35
+ require the requisite dependencies, for OS X it builds a self-contained runnable
36
+ which can be placed in Applications, for Windows it rolls a Ruby interpreter and
37
+ all the necessary libraries into an installer.
38
+ email: zero@tsuki.net
39
+ executables: []
40
+ extensions: []
41
+ extra_rdoc_files: []
42
+ files:
43
+ - bin/lumina
44
+ - lib/lumina.rb
45
+ - lumina.gemspec
46
+ homepage: http://www.tsuki.net
47
+ licenses:
48
+ - GPL-3.0
49
+ metadata: {}
50
+ post_install_message:
51
+ rdoc_options: []
52
+ require_paths:
53
+ - lib
54
+ required_ruby_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: 2.3.3
59
+ required_rubygems_version: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ requirements: []
65
+ rubyforge_project:
66
+ rubygems_version: 2.6.11
67
+ signing_key:
68
+ specification_version: 4
69
+ summary: Lumina cross platform desktop GUI packager
70
+ test_files: []