gtkbuilder 0.2 → 0.3

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.
Files changed (5) hide show
  1. data/.gitignore +1 -0
  2. data/Gemfile +3 -0
  3. data/Gemfile.lock +31 -0
  4. data/gtkbuilder.gemspec +22 -0
  5. metadata +24 -9
@@ -0,0 +1 @@
1
+ *.gem
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
3
+
@@ -0,0 +1,31 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ gtkbuilder (0.3)
5
+ gtk2
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ atk (1.1.5)
11
+ glib2 (>= 1.1.5)
12
+ cairo (1.12.2)
13
+ pkg-config
14
+ gdk_pixbuf2 (1.1.5)
15
+ glib2 (>= 1.1.5)
16
+ glib2 (1.1.5)
17
+ pkg-config
18
+ gtk2 (1.1.5)
19
+ atk (>= 1.1.5)
20
+ gdk_pixbuf2 (>= 1.1.5)
21
+ pango (>= 1.1.5)
22
+ pango (1.1.5)
23
+ cairo (>= 1.10.0)
24
+ glib2 (>= 1.1.5)
25
+ pkg-config (1.1.4)
26
+
27
+ PLATFORMS
28
+ ruby
29
+
30
+ DEPENDENCIES
31
+ gtkbuilder!
@@ -0,0 +1,22 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib/', __FILE__)
3
+ $:.unshift lib unless $:.include?(lib)
4
+
5
+ require 'bundler/version'
6
+
7
+ Gem::Specification.new do |s|
8
+ s.name = "gtkbuilder"
9
+ s.version = "0.3"
10
+ s.platform = Gem::Platform::RUBY
11
+ s.authors = ["Fabian Streitel"]
12
+ s.email = ["github@rottenrei.be"]
13
+ s.homepage = "http://github.com/karottenreibe/ruby-gtkbuilder"
14
+ s.summary = "Easy way to :reate simple Gtk GUIs"
15
+ s.description = "Builder::Gtk let's you build Gtk windows using a simple DSL"
16
+
17
+ s.add_dependency("gtk2")
18
+
19
+ s.files = `git ls-files`.split("\n")
20
+ s.require_path = 'lib'
21
+ end
22
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gtkbuilder
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.2'
4
+ version: '0.3'
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,8 +9,19 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-21 00:00:00.000000000 Z
13
- dependencies: []
12
+ date: 2012-11-25 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: gtk2
16
+ requirement: &16760360 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *16760360
14
25
  description: Builder::Gtk let's you build Gtk windows using a simple DSL
15
26
  email:
16
27
  - github@rottenrei.be
@@ -18,12 +29,16 @@ executables: []
18
29
  extensions: []
19
30
  extra_rdoc_files: []
20
31
  files:
21
- - lib/proxies/box.rb
22
- - lib/proxies/window.rb
23
- - lib/proxies/layout.rb
24
- - lib/gtkbuilder.rb
32
+ - .gitignore
33
+ - Gemfile
34
+ - Gemfile.lock
25
35
  - LICENSE
26
36
  - README.mkd
37
+ - gtkbuilder.gemspec
38
+ - lib/gtkbuilder.rb
39
+ - lib/proxies/box.rb
40
+ - lib/proxies/layout.rb
41
+ - lib/proxies/window.rb
27
42
  homepage: http://github.com/karottenreibe/ruby-gtkbuilder
28
43
  licenses: []
29
44
  post_install_message:
@@ -41,11 +56,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
41
56
  requirements:
42
57
  - - ! '>='
43
58
  - !ruby/object:Gem::Version
44
- version: 1.3.6
59
+ version: '0'
45
60
  requirements: []
46
61
  rubyforge_project:
47
62
  rubygems_version: 1.8.11
48
63
  signing_key:
49
64
  specification_version: 3
50
- summary: Easy way to generate simple Gtk GUIs
65
+ summary: Easy way to :reate simple Gtk GUIs
51
66
  test_files: []