rbktoblzcheck 0.1.1 → 0.1.2

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.
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :minor: 1
3
- :patch: 1
3
+ :patch: 2
4
4
  :major: 0
data/ext/extconf.rb CHANGED
@@ -9,5 +9,5 @@ if !have_library('ktoblzcheck')
9
9
  STDERR.puts "Hint: visit http://ktoblzcheck.sourceforge.net to obtain a source distribution tar-ball or check the package archives of your distribution (e.g. for Debian `apt-get install libktoblzcheck1-dev`)"
10
10
  exit 1
11
11
  end
12
- dir_config('ktoblzcheck_ext')
13
- create_makefile('ktoblzcheck_ext')
12
+ dir_config('ktoblzcheck')
13
+ create_makefile('ktoblzcheck')
data/ext/ktoblzcheck.c CHANGED
@@ -192,7 +192,7 @@ static VALUE find_info(VALUE self, VALUE blz)
192
192
  /*
193
193
  * Ruby extension stuff
194
194
  */
195
- void Init_ktoblzcheck_ext()
195
+ void Init_ktoblzcheck()
196
196
  {
197
197
  g_ktoblzcheck = rb_define_class("KtoBlzCheck", rb_cObject);
198
198
  g_error = rb_define_class_under(g_ktoblzcheck, "Error", rb_eStandardError);
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rbktoblzcheck}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Sascha Loetz", "Kim Rudolph"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 1
9
- version: 0.1.1
8
+ - 2
9
+ version: 0.1.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Sascha Loetz