pod4 0.10.6 → 1.0.0

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 (48) hide show
  1. checksums.yaml +5 -5
  2. data/.bugs/bugs +2 -1
  3. data/.bugs/details/b5368c7ef19065fc597b5692314da71772660963.txt +53 -0
  4. data/.hgtags +1 -0
  5. data/Gemfile +5 -5
  6. data/README.md +157 -46
  7. data/lib/pod4/basic_model.rb +9 -22
  8. data/lib/pod4/connection.rb +67 -0
  9. data/lib/pod4/connection_pool.rb +154 -0
  10. data/lib/pod4/errors.rb +20 -0
  11. data/lib/pod4/interface.rb +34 -12
  12. data/lib/pod4/model.rb +32 -27
  13. data/lib/pod4/nebulous_interface.rb +25 -30
  14. data/lib/pod4/null_interface.rb +22 -16
  15. data/lib/pod4/pg_interface.rb +84 -104
  16. data/lib/pod4/sequel_interface.rb +138 -82
  17. data/lib/pod4/tds_interface.rb +83 -70
  18. data/lib/pod4/tweaking.rb +105 -0
  19. data/lib/pod4/version.rb +1 -1
  20. data/md/breaking_changes.md +80 -0
  21. data/spec/common/basic_model_spec.rb +67 -70
  22. data/spec/common/connection_pool_parallelism_spec.rb +154 -0
  23. data/spec/common/connection_pool_spec.rb +246 -0
  24. data/spec/common/connection_spec.rb +129 -0
  25. data/spec/common/model_ai_missing_id_spec.rb +256 -0
  26. data/spec/common/model_plus_encrypting_spec.rb +16 -4
  27. data/spec/common/model_plus_tweaking_spec.rb +128 -0
  28. data/spec/common/model_plus_typecasting_spec.rb +10 -4
  29. data/spec/common/model_spec.rb +283 -363
  30. data/spec/common/nebulous_interface_spec.rb +159 -108
  31. data/spec/common/null_interface_spec.rb +88 -65
  32. data/spec/common/sequel_interface_pg_spec.rb +217 -161
  33. data/spec/common/shared_examples_for_interface.rb +50 -50
  34. data/spec/jruby/sequel_encrypting_jdbc_pg_spec.rb +1 -1
  35. data/spec/jruby/sequel_interface_jdbc_ms_spec.rb +3 -3
  36. data/spec/jruby/sequel_interface_jdbc_pg_spec.rb +3 -23
  37. data/spec/mri/pg_encrypting_spec.rb +1 -1
  38. data/spec/mri/pg_interface_spec.rb +311 -223
  39. data/spec/mri/sequel_encrypting_spec.rb +1 -1
  40. data/spec/mri/sequel_interface_spec.rb +177 -180
  41. data/spec/mri/tds_encrypting_spec.rb +1 -1
  42. data/spec/mri/tds_interface_spec.rb +296 -212
  43. data/tags +340 -174
  44. metadata +19 -11
  45. data/md/fixme.md +0 -3
  46. data/md/roadmap.md +0 -125
  47. data/md/typecasting.md +0 -80
  48. data/spec/common/model_new_validate_spec.rb +0 -204
data/tags CHANGED
@@ -1,28 +1,45 @@
1
1
  !_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
2
2
  !_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
3
+ << lib/pod4/connection_pool.rb /^ def <<(cl)$/;" f class:Pod4.ConnectionPool.Pool
3
4
  <=> lib/pod4/alert.rb /^ def <=>(other)$/;" f class:Pod4.Alert
4
- ACTIONS lib/pod4/interface.rb /^ ACTIONS = [ :list, :create, :read, :update, :delete ]$/;" C class:Pod4.Interface
5
- ALERTTYPES lib/pod4/alert.rb /^ ALERTTYPES = [:error, :warning, :info, :success]$/;" C class:Pod4.Alert
6
5
  Alert lib/pod4/alert.rb /^ class Alert$/;" c class:Pod4
7
6
  BasicModel lib/pod4/basic_model.rb /^ class BasicModel$/;" c class:Pod4
8
- CantContinue lib/pod4/errors.rb /^ class CantContinue < Pod4Error$/;" c class:Pod4 inherits:Pod4Error
7
+ CantContinue lib/pod4/errors.rb /^ class CantContinue < Pod4Error$/;" c class:Pod4
8
+ ClassMethods lib/pod4/encrypting.rb /^ module ClassMethods$/;" m class:Pod4.Encrypting
9
+ ClassMethods lib/pod4/tweaking.rb /^ module ClassMethods$/;" m class:Pod4.Tweaking
9
10
  ClassMethods lib/pod4/typecasting.rb /^ module ClassMethods$/;" m class:Pod4.TypeCasting
11
+ Connection lib/pod4/connection.rb /^ class Connection$/;" c class:Pod4
12
+ ConnectionPool lib/pod4/connection_pool.rb /^ class ConnectionPool < Connection$/;" c class:Pod4
13
+ ConnectionTestingI spec/common/connection_spec.rb /^class ConnectionTestingI < Interface$/;" c
14
+ ConnectionTestingIBad spec/common/connection_spec.rb /^class ConnectionTestingIBad < Interface$/;" c
15
+ Customer ffile.rb /^class Customer < Pod4::Model$/;" c
16
+ Customer ffile2.rb /^class Customer < Pod4::Model$/;" c
10
17
  DB spec/fixtures/database.rb /^DB = {} $/;" C class:
11
- DatabaseError lib/pod4/errors.rb /^ class DatabaseError < Pod4Error$/;" c class:Pod4 inherits:Pod4Error
18
+ DatabaseError lib/pod4/errors.rb /^ class DatabaseError < Pod4Error$/;" c class:Pod4
12
19
  DocNoPending spec/doc_no_pending.rb /^class DocNoPending < RSpec::Core::Formatters::DocumentationFormatter$/;" c inherits:RSpec.Core.Formatters.DocumentationFormatter
20
+ Encrypting lib/pod4/encrypting.rb /^ module Encrypting$/;" m class:Pod4
13
21
  FakeRequester spec/common/nebulous_interface_spec.rb /^class FakeRequester$/;" c
14
- InstanceMethods lib/pod4/typecasting.rb /^ module InstanceMethods$/;" m class:Pod4.TypeCasting
22
+ Foo ffile3.rb /^class Foo$/;" c
23
+ InstanceMethods lib/pod4/encrypting.rb /^ module InstanceMethods$/;" m class:Pod4.Encrypting
24
+ InstanceMethods lib/pod4/typecasting.rb /^ module InstanceMethods$/;" m class:Pod4.TypeCasting.ClassMethods
25
+ Interface ffile.rb /^ class Interface < Pod4::PgInterface$/;" c class:Customer
26
+ Interface ffile2.rb /^ class Interface < Pod4::PgInterface$/;" c class:Customer
15
27
  Interface lib/pod4/interface.rb /^ class Interface$/;" c class:Pod4
16
28
  Metaxing lib/pod4/metaxing.rb /^ module Metaxing$/;" m class:Pod4
17
- Model lib/pod4/model.rb /^ class Model < Pod4::BasicModel$/;" c class:Pod4 inherits:Pod4.BasicModel
18
- NebulousInterface lib/pod4/nebulous_interface.rb /^ class NebulousInterface < Interface$/;" c class:Pod4 inherits:Interface
19
- NotImplemented lib/pod4/errors.rb /^ class NotImplemented < Exception$/;" c class:Pod4 inherits:Exception
20
- NullInterface lib/pod4/null_interface.rb /^ class NullInterface < Interface$/;" c class:Pod4 inherits:Interface
29
+ Model lib/pod4/model.rb /^ class Model < Pod4::BasicModel$/;" c class:Pod4
30
+ MyInterface spec/common/model_plus_tweaking_spec.rb /^ class MyInterface < Pod4::Interface$/;" c
31
+ MyInterface thread_test.rb /^class MyInterface < Interface$/;" c
32
+ NebulousInterface lib/pod4/nebulous_interface.rb /^ class NebulousInterface < Interface$/;" c class:Pod4
33
+ NotImplemented lib/pod4/errors.rb /^ class NotImplemented < Exception$/;" c class:Pod4
34
+ NullInterface lib/pod4/null_interface.rb /^ class NullInterface < Interface$/;" c class:Pod4
21
35
  Param lib/pod4/param.rb /^ module Param$/;" m class:Pod4
22
- PgInterface lib/pod4/pg_interface.rb /^ class PgInterface < Interface$/;" c class:Pod4 inherits:Interface
36
+ PgInterface lib/pod4/pg_interface.rb /^ class PgInterface < Interface$/;" c class:Pod4
23
37
  Pod4 lib/pod4.rb /^module Pod4$/;" m
24
38
  Pod4 lib/pod4/alert.rb /^module Pod4$/;" m
25
39
  Pod4 lib/pod4/basic_model.rb /^module Pod4$/;" m
40
+ Pod4 lib/pod4/connection.rb /^module Pod4$/;" m
41
+ Pod4 lib/pod4/connection_pool.rb /^module Pod4$/;" m
42
+ Pod4 lib/pod4/encrypting.rb /^module Pod4$/;" m
26
43
  Pod4 lib/pod4/errors.rb /^module Pod4$/;" m
27
44
  Pod4 lib/pod4/interface.rb /^module Pod4$/;" m
28
45
  Pod4 lib/pod4/metaxing.rb /^module Pod4$/;" m
@@ -34,212 +51,361 @@ Pod4 lib/pod4/pg_interface.rb /^module Pod4$/;" m
34
51
  Pod4 lib/pod4/sequel_interface.rb /^module Pod4$/;" m
35
52
  Pod4 lib/pod4/sql_helper.rb /^module Pod4$/;" m
36
53
  Pod4 lib/pod4/tds_interface.rb /^module Pod4$/;" m
54
+ Pod4 lib/pod4/tweaking.rb /^module Pod4$/;" m
37
55
  Pod4 lib/pod4/typecasting.rb /^module Pod4$/;" m
38
56
  Pod4 lib/pod4/version.rb /^module Pod4 $/;" m
39
- Pod4Error lib/pod4/errors.rb /^ class Pod4Error < StandardError$/;" c class:Pod4 inherits:StandardError
57
+ Pod4Error lib/pod4/errors.rb /^ class Pod4Error < StandardError$/;" c class:Pod4
58
+ Pool lib/pod4/connection_pool.rb /^ class Pool$/;" c class:Pod4.ConnectionPool
59
+ PoolTimeout lib/pod4/errors.rb /^ class PoolTimeout < Pod4Error$/;" c class:Pod4
40
60
  SQLHelper lib/pod4/sql_helper.rb /^ module SQLHelper$/;" m class:Pod4
41
- STATII lib/pod4/basic_model.rb /^ STATII = %i|error warning okay deleted empty|$/;" C class:Pod4.BasicModel
42
- SequelInterface lib/pod4/sequel_interface.rb /^ class SequelInterface < Interface$/;" c class:Pod4 inherits:Interface
43
- TdsInterface lib/pod4/tds_interface.rb /^ class TdsInterface < Interface$/;" c class:Pod4 inherits:Interface
61
+ SequelInterface lib/pod4/sequel_interface.rb /^ class SequelInterface < Interface$/;" c class:Pod4
62
+ TdsInterface lib/pod4/tds_interface.rb /^ class TdsInterface < Interface$/;" c class:Pod4
63
+ Tweaking lib/pod4/tweaking.rb /^ module Tweaking$/;" m class:Pod4
44
64
  TypeCasting lib/pod4/typecasting.rb /^ module TypeCasting$/;" m class:Pod4
45
- VERSION lib/pod4/version.rb /^ VERSION = '0.8.0'$/;" C class:Pod4
46
- ValidationError lib/pod4/errors.rb /^ class ValidationError < Pod4Error$/;" c class:Pod4 inherits:Pod4Error
47
- Verb lib/pod4/nebulous_interface.rb /^ Verb = Struct.new(:name, :params)$/;" c class:Pod4.NebulousInterface
48
- add_alert lib/pod4/basic_model.rb /^ def add_alert(type, field=nil, message)$/;" f class:Pod4.BasicModel
49
- alerts lib/pod4/basic_model.rb /^ def alerts; @alerts.dup; end$/;" f class:Pod4.BasicModel
50
- attr_columns lib/pod4/model.rb /^ def attr_columns(*cols)$/;" F class:Pod4.Model
51
- cast_row_fudge lib/pod4/pg_interface.rb /^ def cast_row_fudge(row, oids)$/;" f class:Pod4.PgInterface
52
- cause lib/pod4/errors.rb /^ define_method(:cause) { @cos }$/;" f class:Pod4.Pod4Error
53
- clear_alerts lib/pod4/basic_model.rb /^ def clear_alerts$/;" f class:Pod4.BasicModel
54
- clearing_cache lib/pod4/nebulous_interface.rb /^ def clearing_cache$/;" f class:Pod4.NebulousInterface
55
- close lib/pod4/pg_interface.rb /^ def close$/;" f class:Pod4.PgInterface
56
- close lib/pod4/tds_interface.rb /^ def close$/;" f class:Pod4.TdsInterface
57
- columns lib/pod4/model.rb /^ def columns $/;" F class:Pod4.Model
58
- columns lib/pod4/model.rb /^ def columns; self.class.columns.dup; end$/;" f class:Pod4.Model
59
- connected? lib/pod4/pg_interface.rb /^ def connected?$/;" f class:Pod4.PgInterface
60
- connected? lib/pod4/tds_interface.rb /^ def connected?$/;" f class:Pod4.TdsInterface
65
+ ValidationError lib/pod4/errors.rb /^ class ValidationError < Pod4Error$/;" c class:Pod4
66
+ WeakError lib/pod4/errors.rb /^ class WeakError < Pod4Error$/;" c class:Pod4
67
+ _connection lib/pod4/interface.rb /^ def _connection$/;" f class:Pod4.Interface
68
+ _connection lib/pod4/pg_interface.rb /^ def _connection$/;" f class:Pod4.list.read.update
69
+ _connection lib/pod4/sequel_interface.rb /^ def _connection$/;" f class:Pod4
70
+ _connection lib/pod4/tds_interface.rb /^ def _connection$/;" f class:Pod4.list.read.update
71
+ _dump lib/pod4/connection_pool.rb /^ def _dump$/;" f class:Pod4.ConnectionPool.Pool
72
+ _pool lib/pod4/connection_pool.rb /^ def _pool$/;" f class:Pod4.ConnectionPool
73
+ add_alert lib/pod4/basic_model.rb /^ def add_alert(type, field=nil, message)$/;" f class:Pod4
74
+ alerts lib/pod4/basic_model.rb /^ def alerts; @alerts.dup; end$/;" f class:Pod4
75
+ arr_without_groups spec/common/model_spec.rb /^ def arr_without_groups(arr)$/;" f
76
+ attr_columns lib/pod4/model.rb /^ def attr_columns(*cols)$/;" f class:Pod4.Model
77
+ cast_bool lib/pod4/pg_interface.rb /^ def cast_bool(val)$/;" f class:Pod4.list.read.update
78
+ cast_row_fudge lib/pod4/pg_interface.rb /^ def cast_row_fudge(row, oids)$/;" f class:Pod4.list.read.update
79
+ clear_alerts lib/pod4/basic_model.rb /^ def clear_alerts$/;" f class:Pod4
80
+ clear_method spec/common/nebulous_interface_spec.rb /^ def clear_method; @@method = nil; end$/;" f class:FakeRequester
81
+ clearing_cache lib/pod4/nebulous_interface.rb /^ def clearing_cache$/;" f class:Pod4.NebulousInterface.validate_params.create
82
+ client lib/pod4/connection.rb /^ def client(interface)$/;" f class:Pod4.Connection.initialize
83
+ client lib/pod4/connection_pool.rb /^ def client(interface)$/;" f class:Pod4.ConnectionPool
84
+ close lib/pod4/connection.rb /^ def close(interface)$/;" f class:Pod4.Connection.initialize
85
+ close lib/pod4/connection_pool.rb /^ def close(interface)$/;" f class:Pod4.ConnectionPool
86
+ close_connection lib/pod4/interface.rb /^ def close_connection(conn)$/;" f class:Pod4.Interface
87
+ close_connection lib/pod4/pg_interface.rb /^ def close_connection(conn)$/;" f class:Pod4.list.read.update
88
+ close_connection lib/pod4/sequel_interface.rb /^ def close_connection$/;" f class:Pod4
89
+ close_connection lib/pod4/tds_interface.rb /^ def close_connection(conn)$/;" f class:Pod4.list.read.update
90
+ close_connection spec/common/connection_pool_parallelism_spec.rb /^ def close_connection; end$/;" f
91
+ close_connection spec/common/connection_pool_parallelism_spoc.rb /^ def close_connection; end$/;" f
92
+ close_connection spec/common/connection_pool_spec.rb /^ def close_connection; end$/;" f
93
+ close_connection spec/common/connection_spec.rb /^ def close_connection; end$/;" f class:ConnectionTestingI
94
+ close_connection spec/common/connection_spec.rb /^ def close_connection; end$/;" f class:ConnectionTestingIBad
95
+ close_connection thread_test.rb /^ def close_connection; end$/;" f class:MyInterface
96
+ columns lib/pod4/model.rb /^ def columns $/;" f class:Pod4.Model
97
+ columns lib/pod4/model.rb /^ def columns; self.class.columns.dup; end$/;" f class:Pod4.Model.test_for_octo
98
+ connected? lib/pod4/pg_interface.rb /^ def connected?(conn)$/;" f class:Pod4.list.read.update
99
+ connected? lib/pod4/tds_interface.rb /^ def connected?(conn)$/;" f class:Pod4.list.read.update
61
100
  create lib/pod4/interface.rb /^ def create(record)$/;" f class:Pod4.Interface
62
- create lib/pod4/model.rb /^ def create$/;" f class:Pod4.Model
63
- create lib/pod4/nebulous_interface.rb /^ def create(record)$/;" f class:Pod4.NebulousInterface
101
+ create lib/pod4/model.rb /^ def create$/;" f class:Pod4.Model.test_for_octo
102
+ create lib/pod4/nebulous_interface.rb /^ def create(record)$/;" f class:Pod4.NebulousInterface.validate_params
64
103
  create lib/pod4/null_interface.rb /^ def create(record)$/;" f class:Pod4.NullInterface
65
- create lib/pod4/pg_interface.rb /^ def create(record)$/;" f class:Pod4.PgInterface
66
- create lib/pod4/sequel_interface.rb /^ def create(record)$/;" f class:Pod4.SequelInterface
67
- create lib/pod4/tds_interface.rb /^ def create(record)$/;" f class:Pod4.TdsInterface
68
- create spec/common/nebulous_interface_spec.rb /^ def create(name, price)$/;" f class:FakeRequester
69
- db lib/pod4/tds_interface.rb /^ def db $/;" F class:Pod4.TdsInterface
70
- db lib/pod4/tds_interface.rb /^ def db; self.class.db; end$/;" f class:Pod4.TdsInterface
71
- define_class_method lib/pod4/metaxing.rb /^ def define_class_method(method, *args, &blk)$/;" f class:Pod4.Metaxing
104
+ create lib/pod4/pg_interface.rb /^ def create(record)$/;" f class:Pod4.list
105
+ create lib/pod4/sequel_interface.rb /^ def create(record)$/;" f class:Pod4
106
+ create lib/pod4/tds_interface.rb /^ def create(record)$/;" f class:Pod4.list
107
+ create spec/common/nebulous_interface_spec.rb /^ def create(name, price)$/;" f
108
+ crypt lib/pod4/encrypting.rb /^ def crypt(cipher, direction, iv, string)$/;" f class:Pod4.Encrypting.InstanceMethods
109
+ db lib/pod4/sequel_interface.rb /^ def db$/;" f class:Pod4
110
+ db lib/pod4/tds_interface.rb /^ def db $/;" f class:Pod4.TdsInterface
111
+ db lib/pod4/tds_interface.rb /^ def db; self.class.db; end$/;" f class:Pod4
112
+ db_setup spec/common/sequel_interface_pg_spec.rb /^ def db_setup(db)$/;" f
113
+ db_setup spec/jruby/sequel_encrypting_jdbc_pg_spec.rb /^ def db_setup(connection)$/;" f
114
+ db_setup spec/mri/pg_encrypting_spec.rb /^ def db_setup(connect)$/;" f
115
+ db_setup spec/mri/pg_interface_spec.rb /^ def db_setup(connect)$/;" f
116
+ db_setup spec/mri/sequel_encrypting_spec.rb /^ def db_setup(connection)$/;" f
117
+ db_setup spec/mri/tds_encrypting_spec.rb /^ def db_setup(connect)$/;" f
118
+ db_setup spec/mri/tds_interface_spec.rb /^ def db_setup(connect)$/;" f
119
+ db_table lib/pod4/sequel_interface.rb /^ def db_table$/;" f class:Pod4
120
+ db_truncate spec/jruby/sequel_encrypting_jdbc_pg_spec.rb /^ def db_truncate(connection)$/;" f
121
+ db_truncate spec/mri/pg_encrypting_spec.rb /^ def db_truncate(connect)$/;" f
122
+ db_truncate spec/mri/sequel_encrypting_spec.rb /^ def db_truncate(connection)$/;" f
123
+ db_truncate spec/mri/tds_encrypting_spec.rb /^ def db_truncate(connect)$/;" f class:db_setup
124
+ decrypt lib/pod4/encrypting.rb /^ def decrypt(string)$/;" f class:Pod4.Encrypting.InstanceMethods
125
+ define_class_method lib/pod4/metaxing.rb /^ def define_class_method(method, *args, &blk)$/;" f class:Pod4
72
126
  delete lib/pod4/interface.rb /^ def delete(id)$/;" f class:Pod4.Interface
73
- delete lib/pod4/model.rb /^ def delete$/;" f class:Pod4.Model
74
- delete lib/pod4/nebulous_interface.rb /^ def delete(id)$/;" f class:Pod4.NebulousInterface
75
- delete lib/pod4/null_interface.rb /^ def delete(id)$/;" f class:Pod4.NullInterface
76
- delete lib/pod4/pg_interface.rb /^ def delete(id)$/;" f class:Pod4.PgInterface
77
- delete lib/pod4/sequel_interface.rb /^ def delete(id)$/;" f class:Pod4.SequelInterface
78
- delete lib/pod4/tds_interface.rb /^ def delete(id)$/;" f class:Pod4.TdsInterface
127
+ delete lib/pod4/model.rb /^ def delete$/;" f class:Pod4.Model.test_for_octo
128
+ delete lib/pod4/nebulous_interface.rb /^ def delete(id)$/;" f class:Pod4.NebulousInterface.validate_params.create
129
+ delete lib/pod4/null_interface.rb /^ def delete(id)$/;" f class:Pod4.NullInterface.create
130
+ delete lib/pod4/pg_interface.rb /^ def delete(id)$/;" f class:Pod4.list.read.update
131
+ delete lib/pod4/sequel_interface.rb /^ def delete(id)$/;" f class:Pod4
132
+ delete lib/pod4/tds_interface.rb /^ def delete(id)$/;" f class:Pod4.list.read.update
133
+ drop lib/pod4/connection_pool.rb /^ def drop$/;" f class:Pod4.ConnectionPool.Pool
134
+ drop lib/pod4/connection_pool.rb /^ def drop(interface)$/;" f class:Pod4.ConnectionPool
79
135
  encoding lib/pod4/typecasting.rb /^ def encoding; nil; end$/;" f class:Pod4.TypeCasting.ClassMethods
80
- ensure_connection lib/pod4/pg_interface.rb /^ def ensure_connection$/;" f class:Pod4.PgInterface
81
- escape lib/pod4/tds_interface.rb /^ def escape(thing)$/;" f class:Pod4.TdsInterface
136
+ encrypt lib/pod4/encrypting.rb /^ def encrypt(string)$/;" f class:Pod4.Encrypting.InstanceMethods
137
+ encrypt spec/common/model_plus_encrypting_spec.rb /^ def encrypt(key, iv=nil, plaintext)$/;" f
138
+ encrypted_columns lib/pod4/encrypting.rb /^ def encrypted_columns(*ecolumns)$/;" f class:Pod4.Encrypting.ClassMethods
139
+ encryption_columns lib/pod4/encrypting.rb /^ def encryption_columns; []; end$/;" f class:Pod4.Encrypting.ClassMethods
140
+ encryption_iv lib/pod4/encrypting.rb /^ def encryption_iv$/;" f class:Pod4.Encrypting.InstanceMethods
141
+ encryption_iv_column lib/pod4/encrypting.rb /^ def encryption_iv_column; nil; end$/;" f class:Pod4.Encrypting.ClassMethods
142
+ encryption_key lib/pod4/encrypting.rb /^ def encryption_key; nil; end$/;" f class:Pod4.Encrypting.ClassMethods
143
+ ensure_connected lib/pod4/tds_interface.rb /^ def ensure_connected$/;" f class:Pod4.list.read.update
144
+ ensure_connection lib/pod4/pg_interface.rb /^ def ensure_connection$/;" f class:Pod4.list.read.update
145
+ escape lib/pod4/tds_interface.rb /^ def escape(thing)$/;" f class:Pod4.list.read.update
82
146
  example_pending spec/doc_no_pending.rb /^ def example_pending(notifications); end$/;" f class:DocNoPending
83
- exception lib/pod4/alert.rb /^ attr_reader :exception$/;" f class:Pod4.Alert
84
- execute lib/pod4/pg_interface.rb /^ def execute(sql)$/;" f class:Pod4.PgInterface
85
- execute lib/pod4/sequel_interface.rb /^ def execute(sql)$/;" f class:Pod4.SequelInterface
86
- execute lib/pod4/tds_interface.rb /^ def execute(sql)$/;" f class:Pod4.TdsInterface
87
- executep lib/pod4/pg_interface.rb /^ def executep(sql, *vals)$/;" f class:Pod4.PgInterface
88
- executep lib/pod4/sequel_interface.rb /^ def executep(sql, mode, *values)$/;" f class:Pod4.SequelInterface
89
- fail_no_id lib/pod4/model.rb /^ def fail_no_id$/;" F class:Pod4.Model
90
- fail_no_id_fld lib/pod4/model.rb /^ def fail_no_id_fld$/;" F class:Pod4.Model
91
- field lib/pod4/alert.rb /^ attr_accessor :field$/;" f class:Pod4.Alert
92
- field lib/pod4/errors.rb /^ attr_reader :field$/;" f class:Pod4.ValidationError
93
- field= lib/pod4/alert.rb /^ attr_accessor :field$/;" f class:Pod4.Alert
147
+ execute lib/pod4/pg_interface.rb /^ def execute(sql)$/;" f class:Pod4.list.read.update
148
+ execute lib/pod4/sequel_interface.rb /^ def execute(sql)$/;" f class:Pod4
149
+ execute lib/pod4/tds_interface.rb /^ def execute(sql)$/;" f class:Pod4.list.read.update
150
+ executep lib/pod4/pg_interface.rb /^ def executep(sql, *vals)$/;" f class:Pod4.list.read.update
151
+ executep lib/pod4/sequel_interface.rb /^ def executep(sql, mode, *values)$/;" f class:Pod4
152
+ fail_bad_interfaces lib/pod4/connection.rb /^ def fail_bad_interfaces(f)$/;" f class:Pod4.Connection.initialize
153
+ fail_no_id lib/pod4/model.rb /^ def fail_no_id$/;" f class:Pod4.Model.test_for_octo.test_for_invalid_status
154
+ fail_no_id_fld lib/pod4/model.rb /^ def fail_no_id_fld$/;" f class:Pod4.Model.test_for_octo.test_for_invalid_status
155
+ fake_an_alert spec/common/basic_model_spec.rb /^ def fake_an_alert(*args)$/;" f
156
+ fake_an_alert spec/common/model_new_validate_spec.rb /^ def fake_an_alert(*args)$/;" f
157
+ fake_an_alert spec/common/model_spec.rb /^ def fake_an_alert(*args)$/;" f
158
+ fill_data spec/common/sequel_interface_pg_spec.rb /^ def fill_data(ifce, data)$/;" f
159
+ fill_data spec/jruby/sequel_interface_jdbc_ms_spec.rb /^ def fill_data(ifce)$/;" f
160
+ fill_data spec/jruby/sequel_interface_jdbc_pg_spec.rb /^ def fill_data(ifce)$/;" f
161
+ fill_data spec/mri/pg_interface_spec.rb /^ def fill_data(ifce)$/;" f
162
+ fill_data spec/mri/sequel_interface_spec.rb /^ def fill_data(ifce)$/;" f
163
+ fill_data spec/mri/tds_interface_spec.rb /^ def fill_data(ifce)$/;" f class:db_setup
164
+ fill_product_data spec/common/sequel_interface_pg_spec.rb /^ def fill_product_data(ifce)$/;" f
165
+ fill_product_data spec/jruby/sequel_interface_jdbc_ms_spec.rb /^ def fill_product_data(ifce)$/;" f
166
+ fill_product_data spec/jruby/sequel_interface_jdbc_pg_spec.rb /^ def fill_product_data(ifce)$/;" f
167
+ fill_product_data spec/mri/pg_interface_spec.rb /^ def fill_product_data(ifce)$/;" f
168
+ fill_product_data spec/mri/sequel_interface_spec.rb /^ def fill_product_data(ifce)$/;" f
169
+ fill_product_data spec/mri/tds_interface_spec.rb /^ def fill_product_data(ifce)$/;" f class:db_setup
170
+ float_price spec/mri/pg_interface_spec.rb /^ def float_price(row)$/;" f
171
+ float_price spec/mri/tds_interface_spec.rb /^ def float_price(row)$/;" f class:db_setup
94
172
  force_encoding lib/pod4/typecasting.rb /^ def force_encoding(enc)$/;" f class:Pod4.TypeCasting.ClassMethods
173
+ from_alert lib/pod4/errors.rb /^ def self.from_alert(alert)$/;" F class:Pod4.PoolTimeout
95
174
  from_alert lib/pod4/errors.rb /^ def self.from_alert(alert)$/;" F class:Pod4.ValidationError
96
175
  get lib/pod4/param.rb /^ def get(p); params[p.to_s.to_sym]; end$/;" f class:Pod4.Param
97
176
  get_all lib/pod4/param.rb /^ def get_all; Octothorpe.new(params.dup); end$/;" f class:Pod4.Param
98
- handle_error lib/pod4/nebulous_interface.rb /^ def handle_error(err, kaller=caller[1..-1])$/;" f class:Pod4.NebulousInterface
99
- handle_error lib/pod4/null_interface.rb /^ def handle_error(err, kaller=nil)$/;" f class:Pod4.NullInterface
100
- handle_error lib/pod4/pg_interface.rb /^ def handle_error(err, kaller=nil)$/;" f class:Pod4.PgInterface
101
- handle_error lib/pod4/sequel_interface.rb /^ def handle_error(err, kaller=nil)$/;" f class:Pod4.SequelInterface
102
- handle_error lib/pod4/tds_interface.rb /^ def handle_error(err, kaller=nil)$/;" f class:Pod4.TdsInterface
103
- hashy? lib/pod4/nebulous_interface.rb /^ def hashy?(obj)$/;" f class:Pod4.NebulousInterface
177
+ get_cipher lib/pod4/encrypting.rb /^ def get_cipher(direction)$/;" f class:Pod4.Encrypting.InstanceMethods
178
+ get_current lib/pod4/connection_pool.rb /^ def get_current $/;" f class:Pod4.ConnectionPool.Pool
179
+ get_free lib/pod4/connection_pool.rb /^ def get_free$/;" f class:Pod4.ConnectionPool.Pool
180
+ guard lib/pod4/typecasting.rb /^ def guard(ot)$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods.typecast?
181
+ handle_error lib/pod4/nebulous_interface.rb /^ def handle_error(err, kaller=caller[1..-1])$/;" f class:Pod4.NebulousInterface.validate_params.create.send_message
182
+ handle_error lib/pod4/null_interface.rb /^ def handle_error(err, kaller=nil)$/;" f class:Pod4.NullInterface.create
183
+ handle_error lib/pod4/pg_interface.rb /^ def handle_error(err, kaller=nil)$/;" f class:Pod4.list.read.update
184
+ handle_error lib/pod4/sequel_interface.rb /^ def handle_error(err, kaller=nil)$/;" f class:Pod4
185
+ handle_error lib/pod4/tds_interface.rb /^ def handle_error(err, kaller=nil)$/;" f class:Pod4.list.read.update
186
+ hashy? lib/pod4/nebulous_interface.rb /^ def hashy?(obj)$/;" f class:Pod4.NebulousInterface.validate_params.create.send_message
187
+ id_ai lib/pod4/interface.rb /^ def id_ai$/;" f class:Pod4.Interface
188
+ id_ai lib/pod4/nebulous_interface.rb /^ def id_ai$/;" f class:Pod4.NebulousInterface
189
+ id_ai lib/pod4/pg_interface.rb /^ def id_ai$/;" f class:Pod4.PgInterface
190
+ id_ai lib/pod4/pg_interface.rb /^ def id_ai; self.class.id_ai; end$/;" f class:Pod4
191
+ id_ai lib/pod4/sequel_interface.rb /^ def id_ai$/;" f class:Pod4.SequelInterface
192
+ id_ai lib/pod4/sequel_interface.rb /^ def id_ai; self.class.id_ai; end$/;" f class:Pod4
193
+ id_ai lib/pod4/tds_interface.rb /^ def id_ai ; self.class.id_ai; end$/;" f class:Pod4
104
194
  id_fld lib/pod4/interface.rb /^ def id_fld$/;" f class:Pod4.Interface
105
- id_fld lib/pod4/nebulous_interface.rb /^ def id_fld$/;" F class:Pod4.NebulousInterface
106
- id_fld lib/pod4/nebulous_interface.rb /^ attr_reader :id_fld$/;" f class:Pod4.NebulousInterface
107
- id_fld lib/pod4/null_interface.rb /^ attr_reader :id_fld$/;" f class:Pod4.NullInterface
108
- id_fld lib/pod4/pg_interface.rb /^ def id_fld$/;" F class:Pod4.PgInterface
109
- id_fld lib/pod4/pg_interface.rb /^ attr_reader :id_fld$/;" f class:Pod4.PgInterface
110
- id_fld lib/pod4/pg_interface.rb /^ def id_fld; self.class.id_fld; end$/;" f class:Pod4.PgInterface
111
- id_fld lib/pod4/sequel_interface.rb /^ def id_fld$/;" F class:Pod4.SequelInterface
112
- id_fld lib/pod4/sequel_interface.rb /^ attr_reader :id_fld$/;" f class:Pod4.SequelInterface
113
- id_fld lib/pod4/sequel_interface.rb /^ def id_fld; self.class.id_fld; end$/;" f class:Pod4.SequelInterface
114
- id_fld lib/pod4/tds_interface.rb /^ def id_fld$/;" F class:Pod4.TdsInterface
115
- id_fld lib/pod4/tds_interface.rb /^ attr_reader :id_fld$/;" f class:Pod4.TdsInterface
116
- id_fld lib/pod4/tds_interface.rb /^ def id_fld; self.class.id_fld; end$/;" f class:Pod4.TdsInterface
195
+ id_fld lib/pod4/nebulous_interface.rb /^ def id_fld$/;" f class:Pod4.NebulousInterface
196
+ id_fld lib/pod4/pg_interface.rb /^ def id_fld$/;" f class:Pod4.PgInterface
197
+ id_fld lib/pod4/pg_interface.rb /^ def id_fld; self.class.id_fld; end$/;" f class:Pod4
198
+ id_fld lib/pod4/sequel_interface.rb /^ def id_fld$/;" f class:Pod4.SequelInterface
199
+ id_fld lib/pod4/sequel_interface.rb /^ def id_fld; self.class.id_fld; end$/;" f class:Pod4
200
+ id_fld lib/pod4/tds_interface.rb /^ def id_fld$/;" f class:Pod4.TdsInterface
201
+ id_fld lib/pod4/tds_interface.rb /^ def id_fld; self.class.id_fld; end$/;" f class:Pod4
202
+ id_fld spec/common/model_plus_tweaking_spec.rb /^ def id_fld; :id; end$/;" f class:MyInterface
203
+ included lib/pod4/encrypting.rb /^ def self.included(base)$/;" F class:Pod4.Encrypting
204
+ included lib/pod4/tweaking.rb /^ def self.included(base)$/;" F class:Pod4.Tweaking
117
205
  included lib/pod4/typecasting.rb /^ def self.included(base)$/;" F class:Pod4.TypeCasting
206
+ init_nebulous spec/common/nebulous_interface_spec.rb /^def init_nebulous$/;" f
118
207
  initialize lib/pod4/alert.rb /^ def initialize(type, field=nil, message)$/;" f class:Pod4.Alert
119
- initialize lib/pod4/basic_model.rb /^ def initialize(id=nil)$/;" f class:Pod4.BasicModel
208
+ initialize lib/pod4/basic_model.rb /^ def initialize(id=nil)$/;" f class:Pod4
209
+ initialize lib/pod4/connection.rb /^ def initialize(args)$/;" f class:Pod4.Connection
210
+ initialize lib/pod4/connection_pool.rb /^ def initialize$/;" f class:Pod4.ConnectionPool.Pool
211
+ initialize lib/pod4/connection_pool.rb /^ def initialize(args)$/;" f class:Pod4.ConnectionPool
212
+ initialize lib/pod4/errors.rb /^ def initialize(message=nil, field=nil)$/;" f class:Pod4.PoolTimeout
120
213
  initialize lib/pod4/errors.rb /^ def initialize(message=nil, field=nil)$/;" f class:Pod4.ValidationError
121
214
  initialize lib/pod4/errors.rb /^ def initialize(msg=nil)$/;" f class:Pod4.CantContinue
122
215
  initialize lib/pod4/errors.rb /^ def initialize(msg=nil)$/;" f class:Pod4.DatabaseError
123
216
  initialize lib/pod4/errors.rb /^ def initialize(msg=nil)$/;" f class:Pod4.NotImplemented
124
217
  initialize lib/pod4/errors.rb /^ def initialize(msg=nil)$/;" f class:Pod4.Pod4Error
218
+ initialize lib/pod4/errors.rb /^ def initialize(msg=nil)$/;" f class:Pod4.WeakError
125
219
  initialize lib/pod4/interface.rb /^ def initialize$/;" f class:Pod4.Interface
126
- initialize lib/pod4/nebulous_interface.rb /^ def initialize(requestObj=nil)$/;" f class:Pod4.NebulousInterface
220
+ initialize lib/pod4/nebulous_interface.rb /^ def initialize(requestObj=nil)$/;" f class:Pod4.NebulousInterface.validate_params
127
221
  initialize lib/pod4/null_interface.rb /^ def initialize(*cols, data)$/;" f class:Pod4.NullInterface
128
- initialize lib/pod4/pg_interface.rb /^ def initialize(connectHash, testClient=nil)$/;" f class:Pod4.PgInterface
129
- initialize lib/pod4/sequel_interface.rb /^ def initialize(db)$/;" f class:Pod4.SequelInterface
130
- initialize lib/pod4/tds_interface.rb /^ def initialize(connectHash, testClient=nil)$/;" f class:Pod4.TdsInterface
131
- initialize spec/common/nebulous_interface_spec.rb /^ def initialize(data={}); @data = data; end$/;" f class:FakeRequester
132
- interface lib/pod4/basic_model.rb /^ def interface$/;" F class:Pod4.BasicModel
133
- interface lib/pod4/basic_model.rb /^ def interface; self.class.interface; end$/;" f class:Pod4.BasicModel
222
+ initialize lib/pod4/pg_interface.rb /^ def initialize(arg)$/;" f class:Pod4
223
+ initialize lib/pod4/sequel_interface.rb /^ def initialize(arg)$/;" f class:Pod4
224
+ initialize lib/pod4/tds_interface.rb /^ def initialize(args)$/;" f class:Pod4
225
+ initialize spec/common/connection_pool_parallelism_spec.rb /^ def initialize; end$/;" f
226
+ initialize spec/common/connection_pool_parallelism_spoc.rb /^ def initialize; end$/;" f
227
+ initialize spec/common/connection_pool_spec.rb /^ def initialize; end$/;" f
228
+ initialize spec/common/connection_spec.rb /^ def initialize; end$/;" f class:ConnectionTestingI
229
+ initialize spec/common/connection_spec.rb /^ def initialize; end$/;" f class:ConnectionTestingIBad
230
+ initialize spec/common/model_plus_tweaking_spec.rb /^ def initialize; end$/;" f class:MyInterface
231
+ initialize spec/common/nebulous_interface_spec.rb /^ def initialize(data={}); @data = data; end$/;" f
232
+ initialize thread_test.rb /^ def initialize; end$/;" f class:MyInterface
233
+ interface lib/pod4/basic_model.rb /^ def interface$/;" f class:Pod4.BasicModel
234
+ interface lib/pod4/basic_model.rb /^ def interface; self.class.interface; end$/;" f class:Pod4
134
235
  list lib/pod4/interface.rb /^ def list(selection=nil)$/;" f class:Pod4.Interface
135
- list lib/pod4/model.rb /^ def list(params=nil)$/;" F class:Pod4.Model
136
- list lib/pod4/nebulous_interface.rb /^ def list(selection=nil)$/;" f class:Pod4.NebulousInterface
236
+ list lib/pod4/model.rb /^ def list(params=nil)$/;" f class:Pod4.Model
237
+ list lib/pod4/nebulous_interface.rb /^ def list(selection=nil, opts={})$/;" f class:Pod4.NebulousInterface.validate_params
137
238
  list lib/pod4/null_interface.rb /^ def list(selection=nil)$/;" f class:Pod4.NullInterface
138
- list lib/pod4/pg_interface.rb /^ def list(selection=nil)$/;" f class:Pod4.PgInterface
139
- list lib/pod4/sequel_interface.rb /^ def list(selection=nil)$/;" f class:Pod4.SequelInterface
140
- list lib/pod4/tds_interface.rb /^ def list(selection=nil)$/;" f class:Pod4.TdsInterface
239
+ list lib/pod4/pg_interface.rb /^ def list(selection=nil)$/;" f class:Pod4
240
+ list lib/pod4/sequel_interface.rb /^ def list(selection=nil)$/;" f class:Pod4
241
+ list lib/pod4/tds_interface.rb /^ def list(selection=nil)$/;" f class:Pod4
242
+ list_contains spec/common/nebulous_interface_spec.rb /^ def list_contains(id)$/;" f
243
+ list_contains spec/common/null_interface_spec.rb /^ def list_contains(id)$/;" f
244
+ list_contains spec/common/sequel_interface_pg_spec.rb /^ def list_contains(ifce, id)$/;" f
245
+ list_contains spec/jruby/sequel_interface_jdbc_ms_spec.rb /^ def list_contains(ifce, id)$/;" f
246
+ list_contains spec/jruby/sequel_interface_jdbc_pg_spec.rb /^ def list_contains(ifce, id)$/;" f
247
+ list_contains spec/mri/pg_interface_spec.rb /^ def list_contains(ifce, id)$/;" f
248
+ list_contains spec/mri/sequel_interface_spec.rb /^ def list_contains(ifce, id)$/;" f
249
+ list_contains spec/mri/tds_interface_spec.rb /^ def list_contains(ifce, id)$/;" f class:db_setup
250
+ list_paged ffile.rb /^ def list_paged(search, limit, drop)$/;" f class:Customer.Interface
141
251
  log lib/pod4/alert.rb /^ def log(file='')$/;" f class:Pod4.Alert
142
252
  logger lib/pod4.rb /^ def self.logger$/;" F class:Pod4
143
- make_oid_hash lib/pod4/pg_interface.rb /^ def make_oid_hash(query)$/;" f class:Pod4.PgInterface
144
- map_to_interface lib/pod4/model.rb /^ def map_to_interface$/;" f class:Pod4.Model
145
- map_to_model lib/pod4/model.rb /^ def map_to_model(ot)$/;" f class:Pod4.Model
146
- map_to_model lib/pod4/typecasting.rb /^ def map_to_model(ot)$/;" f class:Pod4.TypeCasting.InstanceMethods
147
- merge lib/pod4/model.rb /^ def merge(ot)$/;" f class:Pod4.Model
148
- message lib/pod4/alert.rb /^ attr_accessor :message$/;" f class:Pod4.Alert
149
- message= lib/pod4/alert.rb /^ attr_accessor :message$/;" f class:Pod4.Alert
253
+ make_oid_hash lib/pod4/pg_interface.rb /^ def make_oid_hash(query)$/;" f class:Pod4.list.read.update
254
+ make_thread thread_test3.rb /^def make_thread(idx)$/;" f
255
+ make_threads spec/common/connection_pool_parallelism_spec.rb /^ def make_threads(count, connection, interface)$/;" f
256
+ make_threads thread_test.rb /^def make_threads(count, connection, interface)$/;" f
257
+ make_threads thread_test2.rb /^def make_threads(count)$/;" f
258
+ map_to_interface lib/pod4/encrypting.rb /^ def map_to_interface$/;" f class:Pod4.Encrypting.InstanceMethods
259
+ map_to_interface lib/pod4/model.rb /^ def map_to_interface$/;" f class:Pod4.Model.test_for_octo
260
+ map_to_interface lib/pod4/typecasting.rb /^ def map_to_interface$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods
261
+ map_to_interface spec/common/model_new_validate_spec.rb /^ def map_to_interface$/;" f
262
+ map_to_interface spec/common/model_spec.rb /^ def map_to_interface$/;" f
263
+ map_to_model lib/pod4/encrypting.rb /^ def map_to_model(ot)$/;" f class:Pod4.Encrypting.InstanceMethods
264
+ map_to_model lib/pod4/model.rb /^ def map_to_model(ot)$/;" f class:Pod4.Model.test_for_octo
265
+ map_to_model lib/pod4/typecasting.rb /^ def map_to_model(ot)$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods
266
+ map_to_model spec/common/model_new_validate_spec.rb /^ def map_to_model(ot)$/;" f
267
+ map_to_model spec/common/model_spec.rb /^ def map_to_model(ot)$/;" f
268
+ merge lib/pod4/model.rb /^ def merge(ot)$/;" f class:Pod4.Model.test_for_octo
150
269
  metaclass lib/pod4/metaxing.rb /^ def metaclass$/;" f class:Pod4.Metaxing
151
- model_id lib/pod4/basic_model.rb /^ attr_reader :model_id$/;" f class:Pod4.BasicModel
152
- model_status lib/pod4/basic_model.rb /^ attr_reader :model_status$/;" f class:Pod4.BasicModel
153
- open lib/pod4/pg_interface.rb /^ def open$/;" f class:Pod4.PgInterface
154
- open lib/pod4/tds_interface.rb /^ def open$/;" f class:Pod4.TdsInterface
155
- or_die lib/pod4/basic_model.rb /^ alias :or_die :raise_exceptions$/;" a class:Pod4.BasicModel
156
- param_string lib/pod4/nebulous_interface.rb /^ def param_string(action, hashParam, id=nil)$/;" f class:Pod4.NebulousInterface
270
+ method spec/common/nebulous_interface_spec.rb /^ def method; @@method; end$/;" f class:FakeRequester
271
+ my_list spec/common/model_plus_tweaking_spec.rb /^ def my_list(*args)$/;" f class:MyInterface
272
+ mycast spec/common/model_plus_typecasting_spec.rb /^ def mycast(value, opts); "blarg"; end$/;" f
273
+ new_connection lib/pod4/interface.rb /^ def new_connection(args)$/;" f class:Pod4.Interface
274
+ new_connection lib/pod4/pg_interface.rb /^ def new_connection(params)$/;" f class:Pod4.list.read.update
275
+ new_connection lib/pod4/sequel_interface.rb /^ def new_connection(options)$/;" f class:Pod4
276
+ new_connection lib/pod4/tds_interface.rb /^ def new_connection(params)$/;" f class:Pod4.list.read.update
277
+ new_connection spec/common/connection_pool_parallelism_spec.rb /^ def new_connection(opts); @conn; end$/;" f
278
+ new_connection spec/common/connection_pool_parallelism_spoc.rb /^ def new_connection(opts); @conn; end$/;" f
279
+ new_connection spec/common/connection_pool_spec.rb /^ def new_connection(opts); @conn; end$/;" f
280
+ new_connection spec/common/connection_spec.rb /^ def new_connection(args); end$/;" f class:ConnectionTestingIBad
281
+ new_connection spec/common/connection_spec.rb /^ def new_connection(args); {conn: args}; end$/;" f class:ConnectionTestingI
282
+ new_connection thread_test.rb /^ def new_connection(opts); @conn; end$/;" f class:MyInterface
283
+ one ffile3.rb /^ def one$/;" f class:Foo
284
+ param_string lib/pod4/nebulous_interface.rb /^ def param_string(action, hashParam, id=nil)$/;" f class:Pod4.NebulousInterface.validate_params.create.send_message
157
285
  params lib/pod4/param.rb /^ def params; @params ||= {}; end$/;" f class:Pod4.Param
158
286
  parse_fldsvalues lib/pod4/sql_helper.rb /^ def parse_fldsvalues(hash)$/;" f class:Pod4.SQLHelper
159
- parse_for_params lib/pod4/pg_interface.rb /^ def parse_for_params(sql, vals)$/;" f class:Pod4.PgInterface
287
+ parse_for_params lib/pod4/pg_interface.rb /^ def parse_for_params(sql, vals)$/;" f class:Pod4.list.read.update
160
288
  placeholder lib/pod4/sql_helper.rb /^ def placeholder$/;" f class:Pod4.SQLHelper
161
289
  quote lib/pod4/sql_helper.rb /^ def quote(fld, qc=%q|'|)$/;" f class:Pod4.SQLHelper
162
- quote lib/pod4/tds_interface.rb /^ def quote(fld)$/;" f class:Pod4.TdsInterface
290
+ quote lib/pod4/tds_interface.rb /^ def quote(fld)$/;" f class:Pod4.list.read.update
163
291
  quote_field lib/pod4/sql_helper.rb /^ def quote_field(fld, qc=%q|"|)$/;" f class:Pod4.SQLHelper
164
- quote_field lib/pod4/tds_interface.rb /^ def quote_field(fld)$/;" f class:Pod4.TdsInterface
165
- quoted_table lib/pod4/sequel_interface.rb /^ def quoted_table$/;" f class:Pod4.SequelInterface
292
+ quote_field lib/pod4/tds_interface.rb /^ def quote_field(fld)$/;" f class:Pod4
293
+ quoted_table lib/pod4/sequel_interface.rb /^ def quoted_table$/;" f class:Pod4
166
294
  quoted_table lib/pod4/sql_helper.rb /^ def quoted_table$/;" f class:Pod4.SQLHelper
167
- quoted_table lib/pod4/tds_interface.rb /^ def quoted_table$/;" f class:Pod4.TdsInterface
168
- raise_exceptions lib/pod4/basic_model.rb /^ def raise_exceptions$/;" f class:Pod4.BasicModel
295
+ quoted_table lib/pod4/tds_interface.rb /^ def quoted_table$/;" f class:Pod4
296
+ raise_exceptions lib/pod4/basic_model.rb /^ def raise_exceptions$/;" f class:Pod4
169
297
  read lib/pod4/interface.rb /^ def read(id)$/;" f class:Pod4.Interface
170
- read lib/pod4/model.rb /^ def read$/;" f class:Pod4.Model
171
- read lib/pod4/nebulous_interface.rb /^ def read(id)$/;" f class:Pod4.NebulousInterface
172
- read lib/pod4/null_interface.rb /^ def read(id)$/;" f class:Pod4.NullInterface
173
- read lib/pod4/pg_interface.rb /^ def read(id)$/;" f class:Pod4.PgInterface
174
- read lib/pod4/sequel_interface.rb /^ def read(id)$/;" f class:Pod4.SequelInterface
175
- read lib/pod4/tds_interface.rb /^ def read(id)$/;" f class:Pod4.TdsInterface
176
- read_or_die lib/pod4/pg_interface.rb /^ def read_or_die(id)$/;" f class:Pod4.PgInterface
177
- read_or_die lib/pod4/sequel_interface.rb /^ def read_or_die(id)$/;" f class:Pod4.SequelInterface
178
- read_or_die lib/pod4/tds_interface.rb /^ def read_or_die(id)$/;" f class:Pod4.TdsInterface
298
+ read lib/pod4/model.rb /^ def read$/;" f class:Pod4.Model.test_for_octo
299
+ read lib/pod4/nebulous_interface.rb /^ def read(id, opts={})$/;" f class:Pod4.NebulousInterface.validate_params.create
300
+ read lib/pod4/null_interface.rb /^ def read(id)$/;" f class:Pod4.NullInterface.create
301
+ read lib/pod4/pg_interface.rb /^ def read(id)$/;" f class:Pod4.list
302
+ read lib/pod4/sequel_interface.rb /^ def read(id)$/;" f class:Pod4
303
+ read lib/pod4/tds_interface.rb /^ def read(id)$/;" f class:Pod4.list
304
+ read_or_die lib/pod4/pg_interface.rb /^ def read_or_die(id)$/;" f class:Pod4.list.read.update
305
+ read_or_die lib/pod4/sequel_interface.rb /^ def read_or_die(id)$/;" f class:Pod4
306
+ read_or_die lib/pod4/tds_interface.rb /^ def read_or_die(id)$/;" f class:Pod4.list.read.update
307
+ release lib/pod4/connection_pool.rb /^ def release$/;" f class:Pod4.ConnectionPool.Pool
179
308
  reset lib/pod4/param.rb /^ def reset; @params = {}; end$/;" f class:Pod4.Param
180
- response lib/pod4/nebulous_interface.rb /^ attr_reader :response $/;" f class:Pod4.NebulousInterface
181
- response_message_hash spec/common/nebulous_interface_spec.rb /^ def response_message_hash(requestmsg)$/;" f class:FakeRequester
182
- response_status lib/pod4/nebulous_interface.rb /^ attr_reader :response_status$/;" f class:Pod4.NebulousInterface
183
- sanitise_hash lib/pod4/sequel_interface.rb /^ def sanitise_hash(sel)$/;" f class:Pod4.SequelInterface
184
- schema lib/pod4/pg_interface.rb /^ def schema; nil; end$/;" F class:Pod4.PgInterface
185
- schema lib/pod4/pg_interface.rb /^ def schema; self.class.schema; end$/;" f class:Pod4.PgInterface
186
- schema lib/pod4/sequel_interface.rb /^ def schema; nil; end$/;" F class:Pod4.SequelInterface
187
- schema lib/pod4/sequel_interface.rb /^ def schema; self.class.schema; end$/;" f class:Pod4.SequelInterface
188
- schema lib/pod4/tds_interface.rb /^ def schema; nil; end$/;" F class:Pod4.TdsInterface
189
- schema lib/pod4/tds_interface.rb /^ def schema; self.class.schema; end$/;" f class:Pod4.TdsInterface
190
- select lib/pod4/pg_interface.rb /^ def select(sql)$/;" f class:Pod4.PgInterface
191
- select lib/pod4/sequel_interface.rb /^ def select(sql)$/;" f class:Pod4.SequelInterface
192
- select lib/pod4/tds_interface.rb /^ def select(sql)$/;" f class:Pod4.TdsInterface
193
- selectp lib/pod4/pg_interface.rb /^ def selectp(sql, *vals)$/;" f class:Pod4.PgInterface
194
- selectp lib/pod4/sequel_interface.rb /^ def selectp(sql, *values)$/;" f class:Pod4.SequelInterface
195
- send spec/common/nebulous_interface_spec.rb /^ def send(target, requestmsg)$/;" f class:FakeRequester
196
- send_message lib/pod4/nebulous_interface.rb /^ def send_message(verb, paramStr, with_cache=true)$/;" f class:Pod4.NebulousInterface
197
- send_message_helper lib/pod4/nebulous_interface.rb /^ def send_message_helper(verb, paramStr, with_cache)$/;" f class:Pod4.NebulousInterface
198
- set lib/pod4/model.rb /^ def set(ot)$/;" f class:Pod4.Model
309
+ reset_alerts spec/common/basic_model_spec.rb /^ def reset_alerts; @alerts = []; end$/;" f
310
+ reset_alerts spec/common/model_new_validate_spec.rb /^ def reset_alerts; @alerts = []; end$/;" f
311
+ reset_alerts spec/common/model_spec.rb /^ def reset_alerts; @alerts = []; end$/;" f
312
+ response_message_hash spec/common/nebulous_interface_spec.rb /^ def response_message_hash(requestmsg)$/;" f
313
+ run_validation lib/pod4/model.rb /^ def run_validation(vmode)$/;" f class:Pod4.Model.test_for_octo
314
+ sanitise_hash lib/pod4/sequel_interface.rb /^ def sanitise_hash(sel)$/;" f class:Pod4
315
+ schema lib/pod4/pg_interface.rb /^ def schema; nil; end$/;" f class:Pod4.PgInterface
316
+ schema lib/pod4/pg_interface.rb /^ def schema; self.class.schema; end$/;" f class:Pod4
317
+ schema lib/pod4/sequel_interface.rb /^ def schema; nil; end$/;" f class:Pod4.SequelInterface
318
+ schema lib/pod4/sequel_interface.rb /^ def schema; self.class.schema; end$/;" f class:Pod4
319
+ schema lib/pod4/tds_interface.rb /^ def schema; nil; end$/;" f class:Pod4.TdsInterface
320
+ schema lib/pod4/tds_interface.rb /^ def schema; self.class.schema; end$/;" f class:Pod4
321
+ select lib/pod4/pg_interface.rb /^ def select(sql)$/;" f class:Pod4.list.read.update
322
+ select lib/pod4/sequel_interface.rb /^ def select(sql)$/;" f class:Pod4
323
+ select lib/pod4/tds_interface.rb /^ def select(sql)$/;" f class:Pod4.list.read.update
324
+ selectp lib/pod4/pg_interface.rb /^ def selectp(sql, *vals)$/;" f class:Pod4.list.read.update
325
+ selectp lib/pod4/sequel_interface.rb /^ def selectp(sql, *values)$/;" f class:Pod4
326
+ send spec/common/nebulous_interface_spec.rb /^ def send(*args); FakeRequester.set_method :send; super; end$/;" f class:send
327
+ send spec/common/nebulous_interface_spec.rb /^ def send(target, requestmsg)$/;" f
328
+ send_message lib/pod4/nebulous_interface.rb /^ def send_message(verb, paramStr, with_cache=true)$/;" f class:Pod4.NebulousInterface.validate_params.create
329
+ send_message_helper lib/pod4/nebulous_interface.rb /^ def send_message_helper(verb, paramStr, with_cache)$/;" f class:Pod4.NebulousInterface.validate_params.create.send_message
330
+ send_no_cache spec/common/nebulous_interface_spec.rb /^ def send_no_cache(*args); FakeRequester.set_method :send_no_cache; super; end$/;" f class:send
331
+ sequel_fudges lib/pod4/sequel_interface.rb /^ def sequel_fudges(db)$/;" f class:Pod4
332
+ set lib/pod4/model.rb /^ def set(ot)$/;" f class:Pod4.Model.test_for_octo
199
333
  set lib/pod4/param.rb /^ def set(p,v); params[p.to_s.to_sym] = v; end$/;" f class:Pod4.Param
200
- set_db lib/pod4/tds_interface.rb /^ def set_db(db)$/;" F class:Pod4.TdsInterface
201
- set_id_fld lib/pod4/nebulous_interface.rb /^ def set_id_fld(idFld)$/;" F class:Pod4.NebulousInterface
202
- set_id_fld lib/pod4/pg_interface.rb /^ def set_id_fld(idFld)$/;" F class:Pod4.PgInterface
203
- set_id_fld lib/pod4/sequel_interface.rb /^ def set_id_fld(idFld)$/;" F class:Pod4.SequelInterface
204
- set_id_fld lib/pod4/tds_interface.rb /^ def set_id_fld(idFld) $/;" F class:Pod4.TdsInterface
205
- set_interface lib/pod4/basic_model.rb /^ def set_interface(interface)$/;" F class:Pod4.BasicModel
334
+ set lib/pod4/typecasting.rb /^ def set(ot)$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods
335
+ set_conn spec/common/connection_pool_parallelism_spec.rb /^ def set_conn(c); @conn = c; end$/;" f
336
+ set_conn spec/common/connection_pool_parallelism_spoc.rb /^ def set_conn(c); @conn = c; end$/;" f
337
+ set_conn spec/common/connection_pool_spec.rb /^ def set_conn(c); @conn = c; end$/;" f
338
+ set_conn thread_test.rb /^ def set_conn(c); @conn = c; end$/;" f class:MyInterface
339
+ set_custom_list lib/pod4/tweaking.rb /^ def set_custom_list(method)$/;" f class:Pod4.Tweaking.ClassMethods
340
+ set_db lib/pod4/tds_interface.rb /^ def set_db(db)$/;" f class:Pod4.TdsInterface
341
+ set_encryption_iv lib/pod4/encrypting.rb /^ def set_encryption_iv(iv)$/;" f class:Pod4.Encrypting.InstanceMethods
342
+ set_guard lib/pod4/typecasting.rb /^ def set_guard(ot, fld, tc)$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods.typecast?
343
+ set_id_fld lib/pod4/nebulous_interface.rb /^ def set_id_fld(idFld, opts={})$/;" f class:Pod4.NebulousInterface
344
+ set_id_fld lib/pod4/pg_interface.rb /^ def set_id_fld(idFld, opts={})$/;" f class:Pod4.PgInterface
345
+ set_id_fld lib/pod4/sequel_interface.rb /^ def set_id_fld(idFld, opts={})$/;" f class:Pod4.SequelInterface
346
+ set_id_fld lib/pod4/tds_interface.rb /^ def set_id_fld(idFld, opts={}) $/;" f class:Pod4.TdsInterface
347
+ set_interface lib/pod4/basic_model.rb /^ def set_interface(interface)$/;" f class:Pod4.BasicModel
348
+ set_iv_column lib/pod4/encrypting.rb /^ def set_iv_column(column)$/;" f class:Pod4.Encrypting.ClassMethods
349
+ set_key lib/pod4/encrypting.rb /^ def set_key(key)$/;" f class:Pod4.Encrypting.ClassMethods
206
350
  set_logger lib/pod4.rb /^ def self.set_logger(instance)$/;" F class:Pod4
207
- set_schema lib/pod4/pg_interface.rb /^ def set_schema(schema) $/;" F class:Pod4.PgInterface
208
- set_schema lib/pod4/sequel_interface.rb /^ def set_schema(schema)$/;" F class:Pod4.SequelInterface
209
- set_schema lib/pod4/tds_interface.rb /^ def set_schema(schema)$/;" F class:Pod4.TdsInterface
210
- set_table lib/pod4/pg_interface.rb /^ def set_table(table)$/;" F class:Pod4.PgInterface
211
- set_table lib/pod4/sequel_interface.rb /^ def set_table(table)$/;" F class:Pod4.SequelInterface
212
- set_table lib/pod4/tds_interface.rb /^ def set_table(table)$/;" F class:Pod4.TdsInterface
213
- set_target lib/pod4/nebulous_interface.rb /^ def set_target(target)$/;" F class:Pod4.NebulousInterface
214
- set_verb lib/pod4/nebulous_interface.rb /^ def set_verb(action, verb, *paramKeys)$/;" F class:Pod4.NebulousInterface
351
+ set_method spec/common/nebulous_interface_spec.rb /^ def set_method(x); @@method ||= x; end $/;" f class:FakeRequester
352
+ set_schema lib/pod4/pg_interface.rb /^ def set_schema(schema) $/;" f class:Pod4.PgInterface
353
+ set_schema lib/pod4/sequel_interface.rb /^ def set_schema(schema)$/;" f class:Pod4.SequelInterface
354
+ set_schema lib/pod4/tds_interface.rb /^ def set_schema(schema)$/;" f class:Pod4.TdsInterface
355
+ set_table lib/pod4/pg_interface.rb /^ def set_table(table)$/;" f class:Pod4.PgInterface
356
+ set_table lib/pod4/sequel_interface.rb /^ def set_table(table)$/;" f class:Pod4.SequelInterface
357
+ set_table lib/pod4/tds_interface.rb /^ def set_table(table)$/;" f class:Pod4.TdsInterface
358
+ set_target lib/pod4/nebulous_interface.rb /^ def set_target(target)$/;" f class:Pod4.NebulousInterface
359
+ set_verb lib/pod4/nebulous_interface.rb /^ def set_verb(action, verb, *paramKeys)$/;" f class:Pod4.NebulousInterface
360
+ size lib/pod4/connection_pool.rb /^ def size $/;" f class:Pod4.ConnectionPool.Pool
215
361
  sql_delete lib/pod4/sql_helper.rb /^ def sql_delete(selection)$/;" f class:Pod4.SQLHelper
216
362
  sql_insert lib/pod4/sql_helper.rb /^ def sql_insert(fldsValues)$/;" f class:Pod4.SQLHelper
217
- sql_insert lib/pod4/tds_interface.rb /^ def sql_insert(record)$/;" f class:Pod4.TdsInterface
363
+ sql_insert lib/pod4/tds_interface.rb /^ def sql_insert(record)$/;" f class:Pod4.list.read.update
218
364
  sql_select lib/pod4/sql_helper.rb /^ def sql_select(fields, selection)$/;" f class:Pod4.SQLHelper
219
365
  sql_subst lib/pod4/sql_helper.rb /^ def sql_subst(sql, *args)$/;" f class:Pod4.SQLHelper
220
366
  sql_update lib/pod4/sql_helper.rb /^ def sql_update(fldsValues, selection)$/;" f class:Pod4.SQLHelper
221
367
  sql_where lib/pod4/sql_helper.rb /^ def sql_where(selection)$/;" f class:Pod4.SQLHelper
222
- table lib/pod4/pg_interface.rb /^ def table$/;" F class:Pod4.PgInterface
223
- table lib/pod4/pg_interface.rb /^ def table; self.class.table; end$/;" f class:Pod4.PgInterface
224
- table lib/pod4/sequel_interface.rb /^ def table$/;" F class:Pod4.SequelInterface
225
- table lib/pod4/sequel_interface.rb /^ def table; self.class.table; end$/;" f class:Pod4.SequelInterface
226
- table lib/pod4/tds_interface.rb /^ def table$/;" F class:Pod4.TdsInterface
227
- table lib/pod4/tds_interface.rb /^ def table; self.class.table; end$/;" f class:Pod4.TdsInterface
228
- target lib/pod4/nebulous_interface.rb /^ def target$/;" F class:Pod4.NebulousInterface
229
- test_for_invalid_status lib/pod4/model.rb /^ def test_for_invalid_status(action, status)$/;" F class:Pod4.Model
230
- test_for_octo lib/pod4/model.rb /^ def test_for_octo(param)$/;" F class:Pod4.Model
231
- to_h lib/pod4/model.rb /^ def to_h$/;" f class:Pod4.Model
232
- to_ot lib/pod4/model.rb /^ def to_ot$/;" f class:Pod4.Model
233
- type lib/pod4/alert.rb /^ attr_reader :type$/;" f class:Pod4.Alert
368
+ table lib/pod4/pg_interface.rb /^ def table$/;" f class:Pod4.PgInterface
369
+ table lib/pod4/pg_interface.rb /^ def table; self.class.table; end$/;" f class:Pod4
370
+ table lib/pod4/sequel_interface.rb /^ def table$/;" f class:Pod4.SequelInterface
371
+ table lib/pod4/sequel_interface.rb /^ def table; self.class.table; end$/;" f class:Pod4
372
+ table lib/pod4/tds_interface.rb /^ def table$/;" f class:Pod4.TdsInterface
373
+ table lib/pod4/tds_interface.rb /^ def table; self.class.table; end$/;" f class:Pod4
374
+ target lib/pod4/nebulous_interface.rb /^ def target$/;" f class:Pod4.NebulousInterface
375
+ tc_bigdecimal lib/pod4/typecasting.rb /^ def tc_bigdecimal(thing)$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods.typecast?
376
+ tc_boolean lib/pod4/typecasting.rb /^ def tc_boolean(thing)$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods.typecast?
377
+ tc_date lib/pod4/typecasting.rb /^ def tc_date(thing)$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods.typecast?
378
+ tc_float lib/pod4/typecasting.rb /^ def tc_float(thing)$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods.typecast?
379
+ tc_integer lib/pod4/typecasting.rb /^ def tc_integer(thing)$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods.typecast?
380
+ tc_time lib/pod4/typecasting.rb /^ def tc_time(thing)$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods.typecast?
381
+ test spec/common/model_plus_tweaking_spec.rb /^ def test; end # something we can use to test attr_columns method$/;" f class:MyInterface
382
+ test_for_invalid_status lib/pod4/model.rb /^ def test_for_invalid_status(action, status)$/;" f class:Pod4.Model.test_for_octo
383
+ test_for_octo lib/pod4/model.rb /^ def test_for_octo(param)$/;" f class:Pod4.Model
384
+ thing spec/common/model_plus_tweaking_spec.rb /^ def thing; end # there's already a method called this on the model$/;" f class:MyInterface
385
+ thing spec/common/model_plus_tweaking_spec.rb /^ def thing; end $/;" f
386
+ to_h lib/pod4/model.rb /^ def to_h$/;" f class:Pod4.Model.test_for_octo
387
+ to_ot lib/pod4/model.rb /^ def to_ot$/;" f class:Pod4.Model.test_for_octo
388
+ to_ot lib/pod4/typecasting.rb /^ def to_ot$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods
389
+ typecast lib/pod4/typecasting.rb /^ def typecast(*args)$/;" f class:Pod4.TypeCasting.ClassMethods
390
+ typecast lib/pod4/typecasting.rb /^ def typecast(type, thing, opt={})$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods
391
+ typecast? lib/pod4/typecasting.rb /^ def typecast?(attr, val=nil)$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods
392
+ typecast_one lib/pod4/typecasting.rb /^ def typecast_one(val, tc)$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods.typecast?
393
+ typecast_ot lib/pod4/typecasting.rb /^ def typecast_ot(ot, opts={})$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods.typecast?
394
+ typecast_ot_to_ot lib/pod4/typecasting.rb /^ def typecast_ot_to_ot(ot)$/;" f class:Pod4.TypeCasting.ClassMethods.InstanceMethods.typecast?
395
+ typecasts lib/pod4/typecasting.rb /^ def typecasts; {}; end$/;" f class:Pod4.TypeCasting.ClassMethods.typecast
234
396
  update lib/pod4/interface.rb /^ def update(id, record)$/;" f class:Pod4.Interface
235
- update lib/pod4/model.rb /^ def update$/;" f class:Pod4.Model
236
- update lib/pod4/nebulous_interface.rb /^ def update(id, record)$/;" f class:Pod4.NebulousInterface
237
- update lib/pod4/null_interface.rb /^ def update(id, record)$/;" f class:Pod4.NullInterface
238
- update lib/pod4/pg_interface.rb /^ def update(id, record)$/;" f class:Pod4.PgInterface
239
- update lib/pod4/sequel_interface.rb /^ def update(id, record)$/;" f class:Pod4.SequelInterface
240
- update lib/pod4/tds_interface.rb /^ def update(id, record)$/;" f class:Pod4.TdsInterface
241
- update spec/common/nebulous_interface_spec.rb /^ def update(id, name, price)$/;" f class:FakeRequester
242
- validate lib/pod4/model.rb /^ def validate$/;" f class:Pod4.Model
243
- validate_params lib/pod4/nebulous_interface.rb /^ def validate_params$/;" F class:Pod4.NebulousInterface
244
- verb_for lib/pod4/nebulous_interface.rb /^ def verb_for(action)$/;" f class:Pod4.NebulousInterface
245
- verbs lib/pod4/nebulous_interface.rb /^ def verbs; {}; end$/;" F class:Pod4.NebulousInterface
397
+ update lib/pod4/model.rb /^ def update$/;" f class:Pod4.Model.test_for_octo
398
+ update lib/pod4/nebulous_interface.rb /^ def update(id, record)$/;" f class:Pod4.NebulousInterface.validate_params.create
399
+ update lib/pod4/null_interface.rb /^ def update(id, record)$/;" f class:Pod4.NullInterface.create
400
+ update lib/pod4/pg_interface.rb /^ def update(id, record)$/;" f class:Pod4.list.read
401
+ update lib/pod4/sequel_interface.rb /^ def update(id, record)$/;" f class:Pod4
402
+ update lib/pod4/tds_interface.rb /^ def update(id, record)$/;" f class:Pod4.list.read
403
+ update spec/common/nebulous_interface_spec.rb /^ def update(id, name, price)$/;" f
404
+ use_iv? lib/pod4/encrypting.rb /^ def use_iv?$/;" f class:Pod4.Encrypting.InstanceMethods
405
+ validate lib/pod4/model.rb /^ def validate(vmode=nil)$/;" f class:Pod4.Model.test_for_octo
406
+ validate spec/common/model_new_validate_spec.rb /^ def validate(vmode)$/;" f
407
+ validate spec/common/model_spec.rb /^ def validate(vmode)$/;" f
408
+ validate_params lib/pod4/nebulous_interface.rb /^ def validate_params$/;" f class:Pod4.NebulousInterface
409
+ verb_for lib/pod4/nebulous_interface.rb /^ def verb_for(action)$/;" f class:Pod4.NebulousInterface.validate_params.create.send_message
410
+ verbs lib/pod4/nebulous_interface.rb /^ def verbs; {}; end$/;" f class:Pod4.NebulousInterface
411
+ without_groups spec/common/model_spec.rb /^ def without_groups(ot)$/;" f