dub 0.6.3 → 0.6.4

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 0.6.4 2010-07-14
2
+
3
+ * 1 enhancement
4
+ * Fixed homepage link in gem and documentation.
5
+
1
6
  == 0.6.3 2010-07-07
2
7
 
3
8
  * 1 enhancement
@@ -6,7 +11,7 @@
6
11
  == 0.6.2 2010-07-07
7
12
 
8
13
  * 1 enhancement
9
- * Added an option define (DUB_LUA_NO_OPEN) to prevent replaxe luaopen_xx by luaload_xx
14
+ * Added an option define (DUB_LUA_NO_OPEN) to replace luaopen_xx by luaload_xx
10
15
  * Added char in the list of 'int' types.
11
16
 
12
17
  == 0.6.1 2010-03-12
data/README.rdoc CHANGED
@@ -5,6 +5,8 @@ It is currently developed to crete the OpenCV bindings for Lua in Rubyk (http://
5
5
 
6
6
  The generator uses the xml output from Doxygen to avoid parsing C++ code by itself.
7
7
 
8
+ Homepage: http://rubyk.org/en/project311.html
9
+
8
10
  = Features
9
11
 
10
12
  Currently, the parser supports:
data/Rakefile CHANGED
@@ -13,7 +13,7 @@ begin
13
13
  gem.description = %Q{This is a tool to ease the creation of scripting language bindings for a C++ library.
14
14
  It is currently developed to crete the OpenCV bindings for Lua in Rubyk (http://rubyk.org). The generator uses the xml output from Doxygen to avoid parsing C++ code by itself.}
15
15
  gem.email = "gaspard@teti.ch"
16
- gem.homepage = "http://github.com/ruby/dub"
16
+ gem.homepage = "http://rubyk.org/en/project311.html"
17
17
  gem.authors = ["Gaspard Bucher"]
18
18
  gem.add_development_dependency "shoulda", ">= 0"
19
19
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
data/dub.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{dub}
8
- s.version = "0.6.3"
8
+ s.version = "0.6.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Gaspard Bucher"]
12
- s.date = %q{2010-07-07}
12
+ s.date = %q{2010-07-14}
13
13
  s.description = %q{This is a tool to ease the creation of scripting language bindings for a C++ library.
14
14
  It is currently developed to crete the OpenCV bindings for Lua in Rubyk (http://rubyk.org). The generator uses the xml output from Doxygen to avoid parsing C++ code by itself.}
15
15
  s.email = %q{gaspard@teti.ch}
@@ -163,7 +163,7 @@ Gem::Specification.new do |s|
163
163
  "test/namespace_test.rb",
164
164
  "test/parser_test.rb"
165
165
  ]
166
- s.homepage = %q{http://github.com/ruby/dub}
166
+ s.homepage = %q{http://rubyk.org/en/project311.html}
167
167
  s.rdoc_options = ["--charset=UTF-8"]
168
168
  s.require_paths = ["lib"]
169
169
  s.rubygems_version = %q{1.3.6}
@@ -80,4 +80,5 @@ extern "C" int luaopen_<%= @class.lib_name %>(lua_State *L) {
80
80
  // register class enums
81
81
  register_constants(L, <%= (@class.id_name + '_const').inspect %>, <%= @class.name %>_namespace_constants);
82
82
  <% end %>
83
+ return 1;
83
84
  }
data/lib/dub/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Dub
2
- VERSION = '0.6.3'
2
+ VERSION = '0.6.4'
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 6
8
- - 3
9
- version: 0.6.3
8
+ - 4
9
+ version: 0.6.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Gaspard Bucher
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-07-07 00:00:00 +02:00
17
+ date: 2010-07-14 00:00:00 +02:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -186,7 +186,7 @@ files:
186
186
  - test/namespace_test.rb
187
187
  - test/parser_test.rb
188
188
  has_rdoc: true
189
- homepage: http://github.com/ruby/dub
189
+ homepage: http://rubyk.org/en/project311.html
190
190
  licenses: []
191
191
 
192
192
  post_install_message: