taps 0.2.19 → 0.2.20

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 (3) hide show
  1. data/VERSION.yml +1 -1
  2. data/lib/taps/utils.rb +1 -1
  3. metadata +32 -26
@@ -1,4 +1,4 @@
1
1
  ---
2
- :patch: 19
2
+ :patch: 20
3
3
  :major: 0
4
4
  :minor: 2
@@ -8,7 +8,7 @@ module Utils
8
8
  extend self
9
9
 
10
10
  def windows?
11
- RUBY_PLATFORM =~ /mswin32/
11
+ RUBY_PLATFORM =~ /mswin32|mingw32/
12
12
  end
13
13
 
14
14
  def bin(cmd)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: taps
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.19
4
+ version: 0.2.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ricardo Chimal, Jr.
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-06-20 00:00:00 -07:00
13
+ date: 2009-11-10 00:00:00 -08:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -86,39 +86,41 @@ executables:
86
86
  - schema
87
87
  extensions: []
88
88
 
89
- extra_rdoc_files: []
90
-
89
+ extra_rdoc_files:
90
+ - LICENSE
91
+ - README.rdoc
91
92
  files:
92
- - spec/base.rb
93
- - spec/schema_spec.rb
94
- - spec/server_spec.rb
95
- - spec/client_session_spec.rb
96
- - spec/utils_spec.rb
97
- - lib/taps/progress_bar.rb
93
+ - LICENSE
94
+ - README.rdoc
95
+ - Rakefile
96
+ - VERSION.yml
97
+ - bin/schema
98
+ - bin/schema.cmd
99
+ - bin/taps
98
100
  - lib/taps/adapter_hacks.rb
99
101
  - lib/taps/adapter_hacks/invalid_binary_limit.rb
100
102
  - lib/taps/adapter_hacks/invalid_text_limit.rb
101
103
  - lib/taps/adapter_hacks/mysql_invalid_primary_key.rb
102
104
  - lib/taps/adapter_hacks/non_rails_schema_dump.rb
103
- - lib/taps/schema.rb
104
- - lib/taps/server.rb
105
- - lib/taps/utils.rb
106
105
  - lib/taps/cli.rb
107
- - lib/taps/db_session.rb
108
106
  - lib/taps/client_session.rb
109
107
  - lib/taps/config.rb
110
- - README.rdoc
111
- - LICENSE
112
- - VERSION.yml
113
- - Rakefile
114
- - bin/schema
115
- - bin/schema.cmd
116
- - bin/taps
108
+ - lib/taps/db_session.rb
109
+ - lib/taps/progress_bar.rb
110
+ - lib/taps/schema.rb
111
+ - lib/taps/server.rb
112
+ - lib/taps/utils.rb
113
+ - spec/base.rb
114
+ - spec/client_session_spec.rb
115
+ - spec/schema_spec.rb
116
+ - spec/server_spec.rb
117
+ - spec/utils_spec.rb
117
118
  has_rdoc: true
118
119
  homepage: http://github.com/ricardochimal/taps
120
+ licenses: []
121
+
119
122
  post_install_message:
120
123
  rdoc_options:
121
- - --inline-source
122
124
  - --charset=UTF-8
123
125
  require_paths:
124
126
  - lib
@@ -137,9 +139,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
137
139
  requirements: []
138
140
 
139
141
  rubyforge_project: taps
140
- rubygems_version: 1.3.1
142
+ rubygems_version: 1.3.5
141
143
  signing_key:
142
- specification_version: 2
144
+ specification_version: 3
143
145
  summary: simple database import/export app
144
- test_files: []
145
-
146
+ test_files:
147
+ - spec/base.rb
148
+ - spec/schema_spec.rb
149
+ - spec/server_spec.rb
150
+ - spec/client_session_spec.rb
151
+ - spec/utils_spec.rb