datamapper 0.2.1 → 0.2.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/CHANGELOG CHANGED
@@ -114,3 +114,5 @@
114
114
  * BUG: Fixed String#blank? when a multi-line string contained a blank line (thanks pimpmaster!)
115
115
  * Performance enhancements: (thanks wycats!)
116
116
 
117
+ -- 0.2.2
118
+ * Removed C extension bundles and log files from package
data/rakefile.rb CHANGED
@@ -37,7 +37,7 @@ namespace :dm do
37
37
 
38
38
  end
39
39
 
40
- PACKAGE_VERSION = '0.2.1'
40
+ PACKAGE_VERSION = '0.2.2'
41
41
 
42
42
  PACKAGE_FILES = FileList[
43
43
  'README',
@@ -48,7 +48,7 @@ PACKAGE_FILES = FileList[
48
48
  'spec/**/*.{rb,yaml}',
49
49
  'tasks/**/*',
50
50
  'plugins/**/*'
51
- ].to_a
51
+ ].to_a.reject { |path| path =~ /\.(bundle|log)$/ }
52
52
 
53
53
  DOCUMENTED_FILES = PACKAGE_FILES.reject do |path|
54
54
  FileTest.directory?(path) || path =~ /(^spec|\/spec|\/swig\_)/
@@ -57,7 +57,7 @@ end
57
57
  PROJECT = 'datamapper'
58
58
 
59
59
  task :ls do
60
- p DOCUMENTED_FILES
60
+ p PACKAGE_FILES
61
61
  end
62
62
 
63
63
  desc "Generate Documentation"
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: datamapper
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.2.1
6
+ version: 0.2.2
7
7
  date: 2007-11-02 00:00:00 -05:00
8
8
  summary: An Object/Relational Mapper for Ruby
9
9
  require_paths:
@@ -158,8 +158,6 @@ files:
158
158
  - plugins/dataobjects/swig_mysql
159
159
  - plugins/dataobjects/swig_mysql/extconf.rb
160
160
  - plugins/dataobjects/swig_mysql/Makefile
161
- - plugins/dataobjects/swig_mysql/mkmf.log
162
- - plugins/dataobjects/swig_mysql/mysql_c.bundle
163
161
  - plugins/dataobjects/swig_mysql/mysql_c.c
164
162
  - plugins/dataobjects/swig_mysql/mysql_c.i
165
163
  - plugins/dataobjects/swig_mysql/mysql_c.o
@@ -167,7 +165,6 @@ files:
167
165
  - plugins/dataobjects/swig_postgres
168
166
  - plugins/dataobjects/swig_postgres/extconf.rb
169
167
  - plugins/dataobjects/swig_postgres/Makefile
170
- - plugins/dataobjects/swig_postgres/postgres_c.bundle
171
168
  - plugins/dataobjects/swig_postgres/postgres_c.c
172
169
  - plugins/dataobjects/swig_postgres/postgres_c.i
173
170
  - plugins/dataobjects/swig_sqlite
@@ -1,24 +0,0 @@
1
- find_library: checking for mysql_query() in -lmysqlclient... -------------------- yes
2
-
3
- "gcc -o conftest -I. -I/opt/local/lib/ruby/1.8/i686-darwin8.9.1 -I. -I/usr/local/mysql/include -O -pipe -I/opt/local/include -O -pipe -I/opt/local/include -fno-common -pipe -fno-common conftest.c -L"/opt/local/lib" -L""/usr/local/mysql/lib -lmysqlclient_r -lz -lm"" -L/opt/local/lib -lruby-static -lmysqlclient -lpthread -ldl -lobjc "
4
- conftest.c: In function ‘t’:
5
- conftest.c:3: error: ‘mysql_query’ undeclared (first use in this function)
6
- conftest.c:3: error: (Each undeclared identifier is reported only once
7
- conftest.c:3: error: for each function it appears in.)
8
- checked program was:
9
- /* begin */
10
- 1: /*top*/
11
- 2: int main() { return 0; }
12
- 3: int t() { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
13
- /* end */
14
-
15
- "gcc -o conftest -I. -I/opt/local/lib/ruby/1.8/i686-darwin8.9.1 -I. -I/usr/local/mysql/include -O -pipe -I/opt/local/include -O -pipe -I/opt/local/include -fno-common -pipe -fno-common conftest.c -L"/opt/local/lib" -L""/usr/local/mysql/lib -lmysqlclient_r -lz -lm"" -L/opt/local/lib -lruby-static -lmysqlclient -lpthread -ldl -lobjc "
16
- checked program was:
17
- /* begin */
18
- 1: /*top*/
19
- 2: int main() { return 0; }
20
- 3: int t() { mysql_query(); return 0; }
21
- /* end */
22
-
23
- --------------------
24
-