gir_ffi-gtk 0.10.0 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 47cd3d94aa5d7230a7f2966264c626f796dc0f49
4
- data.tar.gz: f69a478ee45f0098d672e3304ab855d40e205dca
3
+ metadata.gz: 926702ce42eff09b08c56748b4b16a2a53b71225
4
+ data.tar.gz: cfdd9c9c5f5fe243803928b65a63854f774c4318
5
5
  SHA512:
6
- metadata.gz: 85b9c147323df50bfd17e90c01823732a91b65f28e38f60d866fe2e87cb752a2a4d50869d281c985aa7c82899380ec4105906f2f60a8c15b857d22cc8a7da346
7
- data.tar.gz: 084dc3ee450a116b7f0317d777a7858c1fe8b05b24692fd2109fdcd3e5eaa96e5e845edcdccaed1512b66b9eee7fd3f7c3c023ce195f26f9f793fb96d8f63eaf
6
+ metadata.gz: c9f69fca003e0c4d653408f01f14d1944e10ad1edac7f74d343e3dc1323fce9c21f152c85d407e65ffa52427fd7f62cc0c97b795c42f2e62eb23375e06c1a8c2
7
+ data.tar.gz: a551cb431b11d6e1c6d99e2522d1406b1e79f39f03349b163add05b2d6311ed9d5beb603ad7e4e237b3a744a7c77709139f407ddcaa0f3c9cbb3f1a08fe34ac7
data/Changelog.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file. See the
4
4
  Git log for all changes.
5
5
 
6
+ ## 0.11.0 / 2016-10-16
7
+
8
+ * Depend on GirFFI 0.11.0
9
+
6
10
  ## 0.10.0 / 2016-03-23
7
11
 
8
12
  * Depend on GirFFI 0.10.0
@@ -21,7 +25,6 @@ Git log for all changes.
21
25
  * Use GirFFI's new way of handling callback parameters and user data and
22
26
  destroy notifier handling
23
27
 
24
-
25
28
  ## 0.8.1 / 2015-12-02
26
29
 
27
30
  * Add override for Gtk::RadioAction#set_group
@@ -8,8 +8,8 @@ module Gtk
8
8
  add_from_string_without_auto_length buffer, buffer.length
9
9
  end
10
10
 
11
- alias_method :add_from_string_without_auto_length, :add_from_string
12
- alias_method :add_from_string, :add_from_string_with_auto_length
11
+ alias add_from_string_without_auto_length add_from_string
12
+ alias add_from_string add_from_string_with_auto_length
13
13
 
14
14
  setup_instance_method :connect_signals_full
15
15
  remove_method :connect_signals
@@ -24,7 +24,7 @@ module Gtk
24
24
  gvalue.get_value
25
25
  end
26
26
 
27
- alias_method :child_get_property_without_override, :child_get_property
28
- alias_method :child_get_property, :child_get_property_with_override
27
+ alias child_get_property_without_override child_get_property
28
+ alias child_get_property child_get_property_with_override
29
29
  end
30
30
  end
@@ -5,10 +5,10 @@ module Gtk
5
5
  setup_method :newv
6
6
  setup_instance_method :set_valuesv
7
7
 
8
- alias_method :old_initialize, :initialize
9
- alias_method :initialize, :initializev
8
+ alias old_initialize initialize
9
+ alias initialize initializev
10
10
  remove_method :old_initialize
11
11
 
12
- alias_method :set, :set_valuesv
12
+ alias set set_valuesv
13
13
  end
14
14
  end
@@ -14,7 +14,7 @@ module Gtk
14
14
  obj
15
15
  end
16
16
 
17
- alias_method :old_initialize, :initialize
17
+ alias old_initialize initialize
18
18
 
19
19
  def initialize(group)
20
20
  list = GLib::SList.from(Gtk::RadioButton, group)
@@ -6,11 +6,11 @@ module Gtk
6
6
  setup_instance_method :set_valuesv
7
7
  setup_instance_method :insert_with_valuesv
8
8
 
9
- alias_method :old_initialize, :initialize
10
- alias_method :initialize, :initializev
9
+ alias old_initialize initialize
10
+ alias initialize initializev
11
11
  remove_method :old_initialize
12
12
 
13
- alias_method :insert_with_values, :insert_with_valuesv
14
- alias_method :set, :set_valuesv
13
+ alias insert_with_values insert_with_valuesv
14
+ alias set set_valuesv
15
15
  end
16
16
  end
@@ -9,7 +9,7 @@ module Gtk
9
9
  initialize_without_flags_conversion target, native_flags, info
10
10
  end
11
11
 
12
- alias_method :initialize_without_flags_conversion, :initialize
13
- alias_method :initialize, :initialize_with_flags_conversion
12
+ alias initialize_without_flags_conversion initialize
13
+ alias initialize initialize_with_flags_conversion
14
14
  end
15
15
  end
@@ -4,7 +4,7 @@ module Gtk
4
4
  class ListStore
5
5
  setup_instance_method :insert_with_valuesv
6
6
 
7
- alias_method :insert_with_values, :insert_with_valuesv
7
+ alias insert_with_values insert_with_valuesv
8
8
 
9
9
  setup_instance_method :set_value
10
10
 
@@ -15,7 +15,7 @@ module Gtk
15
15
  set_value_without_value_conversion iter, column, value
16
16
  end
17
17
 
18
- alias_method :set_value_without_value_conversion, :set_value
19
- alias_method :set_value, :set_value_with_value_conversion
18
+ alias set_value_without_value_conversion set_value
19
+ alias set_value set_value_with_value_conversion
20
20
  end
21
21
  end
@@ -13,7 +13,7 @@ module Gtk
13
13
 
14
14
  # Overrides for GtkMessageDialog
15
15
  class MessageDialog
16
- alias_method :old_initialize, :initialize
16
+ alias old_initialize initialize
17
17
 
18
18
  def initialize(parent, flags, type, buttons, message)
19
19
  ptr = Gtk::Lib.gtk_message_dialog_new(parent, flags, type, buttons,
@@ -9,7 +9,7 @@ module Gtk
9
9
  set_value_without_value_conversion iter, column, value
10
10
  end
11
11
 
12
- alias_method :set_value_without_value_conversion, :set_value
13
- alias_method :set_value, :set_value_with_value_conversion
12
+ alias set_value_without_value_conversion set_value
13
+ alias set_value set_value_with_value_conversion
14
14
  end
15
15
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gir_ffi-gtk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matijs van Zuijlen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-23 00:00:00.000000000 Z
11
+ date: 2016-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gir_ffi
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.10.0
19
+ version: 0.11.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.10.0
26
+ version: 0.11.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: minitest
29
29
  requirement: !ruby/object:Gem::Requirement