webapi-active-query-builder 1.1.3

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 (46) hide show
  1. data/LICENSE +201 -0
  2. data/README.md +55 -0
  3. data/docs/ActiveQueryBuilderApi.md +102 -0
  4. data/docs/Condition.md +10 -0
  5. data/docs/ConditionGroup.md +10 -0
  6. data/docs/HiddenColumn.md +8 -0
  7. data/docs/Pagination.md +9 -0
  8. data/docs/QueryColumn.md +9 -0
  9. data/docs/Sorting.md +9 -0
  10. data/docs/SqlQuery.md +9 -0
  11. data/docs/Totals.md +9 -0
  12. data/docs/Transform.md +14 -0
  13. data/docs/TransformResult.md +10 -0
  14. data/git_push.sh +67 -0
  15. data/lib/webapi-active-query-builder.rb +61 -0
  16. data/lib/webapi-active-query-builder/api/active_query_builder_api.rb +148 -0
  17. data/lib/webapi-active-query-builder/api_client.rb +378 -0
  18. data/lib/webapi-active-query-builder/api_error.rb +47 -0
  19. data/lib/webapi-active-query-builder/configuration.rb +207 -0
  20. data/lib/webapi-active-query-builder/models/condition.rb +255 -0
  21. data/lib/webapi-active-query-builder/models/condition_group.rb +257 -0
  22. data/lib/webapi-active-query-builder/models/hidden_column.rb +200 -0
  23. data/lib/webapi-active-query-builder/models/pagination.rb +210 -0
  24. data/lib/webapi-active-query-builder/models/query_column.rb +210 -0
  25. data/lib/webapi-active-query-builder/models/sorting.rb +243 -0
  26. data/lib/webapi-active-query-builder/models/sql_query.rb +210 -0
  27. data/lib/webapi-active-query-builder/models/totals.rb +243 -0
  28. data/lib/webapi-active-query-builder/models/transform.rb +261 -0
  29. data/lib/webapi-active-query-builder/models/transform_result.rb +220 -0
  30. data/lib/webapi-active-query-builder/version.rb +26 -0
  31. data/spec/api/active_query_builder_api_spec.rb +70 -0
  32. data/spec/api_client_spec.rb +237 -0
  33. data/spec/configuration_spec.rb +53 -0
  34. data/spec/models/condition_group_spec.rb +69 -0
  35. data/spec/models/condition_spec.rb +69 -0
  36. data/spec/models/hidden_column_spec.rb +53 -0
  37. data/spec/models/pagination_spec.rb +59 -0
  38. data/spec/models/query_column_spec.rb +59 -0
  39. data/spec/models/sorting_spec.rb +63 -0
  40. data/spec/models/sql_query_spec.rb +59 -0
  41. data/spec/models/totals_spec.rb +63 -0
  42. data/spec/models/transform_result_spec.rb +65 -0
  43. data/spec/models/transform_spec.rb +89 -0
  44. data/spec/spec_helper.rb +122 -0
  45. data/webapi-active-query-builder.gemspec +55 -0
  46. metadata +307 -0
@@ -0,0 +1,89 @@
1
+ =begin
2
+ #QueryBuilderApi
3
+
4
+ #Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
5
+
6
+ OpenAPI spec version: 1.0.0
7
+ Contact: support@activedbsoft.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+ =end
23
+
24
+ require 'spec_helper'
25
+ require 'json'
26
+ require 'date'
27
+
28
+ # Unit tests for WebApiActivequerybuilder::Transform
29
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
30
+ # Please update as you see appropriate
31
+ describe 'Transform' do
32
+ before do
33
+ # run before each test
34
+ @instance = WebApiActivequerybuilder::Transform.new
35
+ end
36
+
37
+ after do
38
+ # run after each test
39
+ end
40
+
41
+ describe 'test an instance of Transform' do
42
+ it 'should create an instact of Transform' do
43
+ expect(@instance).to be_instance_of(WebApiActivequerybuilder::Transform)
44
+ end
45
+ end
46
+ describe 'test attribute "guid"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "sql"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "pagination"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "totals"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "sortings"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "filter"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
+ end
80
+ end
81
+
82
+ describe 'test attribute "hidden_columns"' do
83
+ it 'should work' do
84
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
85
+ end
86
+ end
87
+
88
+ end
89
+
@@ -0,0 +1,122 @@
1
+ =begin
2
+ #QueryBuilderApi
3
+
4
+ #Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
5
+
6
+ OpenAPI spec version: 1.0.0
7
+ Contact: support@activedbsoft.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+ =end
23
+
24
+ # load the gem
25
+ require 'webapi-active-query-builder'
26
+
27
+ # The following was generated by the `rspec --init` command. Conventionally, all
28
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
29
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
30
+ # this file to always be loaded, without a need to explicitly require it in any
31
+ # files.
32
+ #
33
+ # Given that it is always loaded, you are encouraged to keep this file as
34
+ # light-weight as possible. Requiring heavyweight dependencies from this file
35
+ # will add to the boot time of your test suite on EVERY test run, even for an
36
+ # individual file that may not need all of that loaded. Instead, consider making
37
+ # a separate helper file that requires the additional dependencies and performs
38
+ # the additional setup, and require it from the spec files that actually need
39
+ # it.
40
+ #
41
+ # The `.rspec` file also contains a few flags that are not defaults but that
42
+ # users commonly want.
43
+ #
44
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
45
+ RSpec.configure do |config|
46
+ # rspec-expectations config goes here. You can use an alternate
47
+ # assertion/expectation library such as wrong or the stdlib/minitest
48
+ # assertions if you prefer.
49
+ config.expect_with :rspec do |expectations|
50
+ # This option will default to `true` in RSpec 4. It makes the `description`
51
+ # and `failure_message` of custom matchers include text for helper methods
52
+ # defined using `chain`, e.g.:
53
+ # be_bigger_than(2).and_smaller_than(4).description
54
+ # # => "be bigger than 2 and smaller than 4"
55
+ # ...rather than:
56
+ # # => "be bigger than 2"
57
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
58
+ end
59
+
60
+ # rspec-mocks config goes here. You can use an alternate test double
61
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
62
+ config.mock_with :rspec do |mocks|
63
+ # Prevents you from mocking or stubbing a method that does not exist on
64
+ # a real object. This is generally recommended, and will default to
65
+ # `true` in RSpec 4.
66
+ mocks.verify_partial_doubles = true
67
+ end
68
+
69
+ # The settings below are suggested to provide a good initial experience
70
+ # with RSpec, but feel free to customize to your heart's content.
71
+ =begin
72
+ # These two settings work together to allow you to limit a spec run
73
+ # to individual examples or groups you care about by tagging them with
74
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
75
+ # get run.
76
+ config.filter_run :focus
77
+ config.run_all_when_everything_filtered = true
78
+
79
+ # Allows RSpec to persist some state between runs in order to support
80
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
81
+ # you configure your source control system to ignore this file.
82
+ config.example_status_persistence_file_path = "spec/examples.txt"
83
+
84
+ # Limits the available syntax to the non-monkey patched syntax that is
85
+ # recommended. For more details, see:
86
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
87
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
88
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
89
+ config.disable_monkey_patching!
90
+
91
+ # This setting enables warnings. It's recommended, but in some cases may
92
+ # be too noisy due to issues in dependencies.
93
+ config.warnings = true
94
+
95
+ # Many RSpec users commonly either run the entire suite or an individual
96
+ # file, and it's useful to allow more verbose output when running an
97
+ # individual spec file.
98
+ if config.files_to_run.one?
99
+ # Use the documentation formatter for detailed output,
100
+ # unless a formatter has already been configured
101
+ # (e.g. via a command-line flag).
102
+ config.default_formatter = 'doc'
103
+ end
104
+
105
+ # Print the 10 slowest examples and example groups at the
106
+ # end of the spec run, to help surface which specs are running
107
+ # particularly slow.
108
+ config.profile_examples = 10
109
+
110
+ # Run specs in random order to surface order dependencies. If you find an
111
+ # order dependency and want to debug it, you can fix the order by providing
112
+ # the seed, which is printed after each run.
113
+ # --seed 1234
114
+ config.order = :random
115
+
116
+ # Seed global randomization in this process using the `--seed` CLI option.
117
+ # Setting this allows you to use `--seed` to deterministically reproduce
118
+ # test failures related to randomization by passing the same `--seed` value
119
+ # as the one that triggered the failure.
120
+ Kernel.srand config.seed
121
+ =end
122
+ end
@@ -0,0 +1,55 @@
1
+ # -*- encoding: utf-8 -*-
2
+ #
3
+ =begin
4
+ #QueryBuilderApi
5
+
6
+ #Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
7
+
8
+ OpenAPI spec version: 1.1.3
9
+ Contact: support@activedbsoft.com
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+
12
+ Licensed under the Apache License, Version 2.0 (the "License");
13
+ you may not use this file except in compliance with the License.
14
+ You may obtain a copy of the License at
15
+
16
+ http://www.apache.org/licenses/LICENSE-2.0
17
+
18
+ Unless required by applicable law or agreed to in writing, software
19
+ distributed under the License is distributed on an "AS IS" BASIS,
20
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21
+ See the License for the specific language governing permissions and
22
+ limitations under the License.
23
+
24
+ =end
25
+
26
+ $:.push File.expand_path("../lib", __FILE__)
27
+ require "webapi-active-query-builder/version"
28
+
29
+ Gem::Specification.new do |s|
30
+ s.name = "webapi-active-query-builder"
31
+ s.version = WebApiActivequerybuilder::VERSION
32
+ s.platform = Gem::Platform::RUBY
33
+ s.authors = ["ActiveDbSoft"]
34
+ s.email = ["development@activedbsoft.com"]
35
+ s.homepage = "https://rubygems.org/gems/webapi_activequerybuilder"
36
+ s.summary = "Active Query Builder Web API lets modify SQL queries for different database servers using RESTful HTTP requests."
37
+ s.description = "Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/."
38
+ s.license = "Apache 2.0"
39
+
40
+ s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
41
+ s.add_runtime_dependency 'json', '~> 1.8', '>= 1.8.3'
42
+
43
+ s.add_development_dependency 'rspec', '~> 3.4', '>= 3.4.0'
44
+ s.add_development_dependency 'vcr', '~> 3.0', '>= 3.0.1'
45
+ s.add_development_dependency 'webmock', '~> 1.24', '>= 1.24.3'
46
+ s.add_development_dependency 'autotest', '~> 4.4', '>= 4.4.6'
47
+ s.add_development_dependency 'autotest-rails-pure', '~> 4.1', '>= 4.1.2'
48
+ s.add_development_dependency 'autotest-growl', '~> 0.2', '>= 0.2.16'
49
+ s.add_development_dependency 'autotest-fsevent', '~> 0.2', '>= 0.2.11'
50
+
51
+ s.files = `find *`.split("\n").uniq.sort.select{|f| !f.empty? }
52
+ s.test_files = `find spec/*`.split("\n")
53
+ s.executables = []
54
+ s.require_paths = ["lib"]
55
+ end
metadata ADDED
@@ -0,0 +1,307 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: webapi-active-query-builder
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.3
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - ActiveDbSoft
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2016-08-22 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: typhoeus
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.0'
22
+ - - ! '>='
23
+ - !ruby/object:Gem::Version
24
+ version: 1.0.1
25
+ type: :runtime
26
+ prerelease: false
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: '1.0'
33
+ - - ! '>='
34
+ - !ruby/object:Gem::Version
35
+ version: 1.0.1
36
+ - !ruby/object:Gem::Dependency
37
+ name: json
38
+ requirement: !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ version: '1.8'
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: 1.8.3
47
+ type: :runtime
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '1.8'
55
+ - - ! '>='
56
+ - !ruby/object:Gem::Version
57
+ version: 1.8.3
58
+ - !ruby/object:Gem::Dependency
59
+ name: rspec
60
+ requirement: !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ~>
64
+ - !ruby/object:Gem::Version
65
+ version: '3.4'
66
+ - - ! '>='
67
+ - !ruby/object:Gem::Version
68
+ version: 3.4.0
69
+ type: :development
70
+ prerelease: false
71
+ version_requirements: !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ~>
75
+ - !ruby/object:Gem::Version
76
+ version: '3.4'
77
+ - - ! '>='
78
+ - !ruby/object:Gem::Version
79
+ version: 3.4.0
80
+ - !ruby/object:Gem::Dependency
81
+ name: vcr
82
+ requirement: !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
85
+ - - ~>
86
+ - !ruby/object:Gem::Version
87
+ version: '3.0'
88
+ - - ! '>='
89
+ - !ruby/object:Gem::Version
90
+ version: 3.0.1
91
+ type: :development
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ none: false
95
+ requirements:
96
+ - - ~>
97
+ - !ruby/object:Gem::Version
98
+ version: '3.0'
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: 3.0.1
102
+ - !ruby/object:Gem::Dependency
103
+ name: webmock
104
+ requirement: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ version: '1.24'
110
+ - - ! '>='
111
+ - !ruby/object:Gem::Version
112
+ version: 1.24.3
113
+ type: :development
114
+ prerelease: false
115
+ version_requirements: !ruby/object:Gem::Requirement
116
+ none: false
117
+ requirements:
118
+ - - ~>
119
+ - !ruby/object:Gem::Version
120
+ version: '1.24'
121
+ - - ! '>='
122
+ - !ruby/object:Gem::Version
123
+ version: 1.24.3
124
+ - !ruby/object:Gem::Dependency
125
+ name: autotest
126
+ requirement: !ruby/object:Gem::Requirement
127
+ none: false
128
+ requirements:
129
+ - - ~>
130
+ - !ruby/object:Gem::Version
131
+ version: '4.4'
132
+ - - ! '>='
133
+ - !ruby/object:Gem::Version
134
+ version: 4.4.6
135
+ type: :development
136
+ prerelease: false
137
+ version_requirements: !ruby/object:Gem::Requirement
138
+ none: false
139
+ requirements:
140
+ - - ~>
141
+ - !ruby/object:Gem::Version
142
+ version: '4.4'
143
+ - - ! '>='
144
+ - !ruby/object:Gem::Version
145
+ version: 4.4.6
146
+ - !ruby/object:Gem::Dependency
147
+ name: autotest-rails-pure
148
+ requirement: !ruby/object:Gem::Requirement
149
+ none: false
150
+ requirements:
151
+ - - ~>
152
+ - !ruby/object:Gem::Version
153
+ version: '4.1'
154
+ - - ! '>='
155
+ - !ruby/object:Gem::Version
156
+ version: 4.1.2
157
+ type: :development
158
+ prerelease: false
159
+ version_requirements: !ruby/object:Gem::Requirement
160
+ none: false
161
+ requirements:
162
+ - - ~>
163
+ - !ruby/object:Gem::Version
164
+ version: '4.1'
165
+ - - ! '>='
166
+ - !ruby/object:Gem::Version
167
+ version: 4.1.2
168
+ - !ruby/object:Gem::Dependency
169
+ name: autotest-growl
170
+ requirement: !ruby/object:Gem::Requirement
171
+ none: false
172
+ requirements:
173
+ - - ~>
174
+ - !ruby/object:Gem::Version
175
+ version: '0.2'
176
+ - - ! '>='
177
+ - !ruby/object:Gem::Version
178
+ version: 0.2.16
179
+ type: :development
180
+ prerelease: false
181
+ version_requirements: !ruby/object:Gem::Requirement
182
+ none: false
183
+ requirements:
184
+ - - ~>
185
+ - !ruby/object:Gem::Version
186
+ version: '0.2'
187
+ - - ! '>='
188
+ - !ruby/object:Gem::Version
189
+ version: 0.2.16
190
+ - !ruby/object:Gem::Dependency
191
+ name: autotest-fsevent
192
+ requirement: !ruby/object:Gem::Requirement
193
+ none: false
194
+ requirements:
195
+ - - ~>
196
+ - !ruby/object:Gem::Version
197
+ version: '0.2'
198
+ - - ! '>='
199
+ - !ruby/object:Gem::Version
200
+ version: 0.2.11
201
+ type: :development
202
+ prerelease: false
203
+ version_requirements: !ruby/object:Gem::Requirement
204
+ none: false
205
+ requirements:
206
+ - - ~>
207
+ - !ruby/object:Gem::Version
208
+ version: '0.2'
209
+ - - ! '>='
210
+ - !ruby/object:Gem::Version
211
+ version: 0.2.11
212
+ description: Active Query Builder Web API lets create, analyze and modify SQL queries
213
+ for different database servers using RESTful HTTP requests to a cloud-based service.
214
+ It requires SQL execution context (information about database schema and used database
215
+ server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
216
+ email:
217
+ - development@activedbsoft.com
218
+ executables: []
219
+ extensions: []
220
+ extra_rdoc_files: []
221
+ files:
222
+ - LICENSE
223
+ - README.md
224
+ - docs/ActiveQueryBuilderApi.md
225
+ - docs/Condition.md
226
+ - docs/ConditionGroup.md
227
+ - docs/HiddenColumn.md
228
+ - docs/Pagination.md
229
+ - docs/QueryColumn.md
230
+ - docs/Sorting.md
231
+ - docs/SqlQuery.md
232
+ - docs/Totals.md
233
+ - docs/Transform.md
234
+ - docs/TransformResult.md
235
+ - git_push.sh
236
+ - lib/webapi-active-query-builder.rb
237
+ - lib/webapi-active-query-builder/api/active_query_builder_api.rb
238
+ - lib/webapi-active-query-builder/api_client.rb
239
+ - lib/webapi-active-query-builder/api_error.rb
240
+ - lib/webapi-active-query-builder/configuration.rb
241
+ - lib/webapi-active-query-builder/models/condition.rb
242
+ - lib/webapi-active-query-builder/models/condition_group.rb
243
+ - lib/webapi-active-query-builder/models/hidden_column.rb
244
+ - lib/webapi-active-query-builder/models/pagination.rb
245
+ - lib/webapi-active-query-builder/models/query_column.rb
246
+ - lib/webapi-active-query-builder/models/sorting.rb
247
+ - lib/webapi-active-query-builder/models/sql_query.rb
248
+ - lib/webapi-active-query-builder/models/totals.rb
249
+ - lib/webapi-active-query-builder/models/transform.rb
250
+ - lib/webapi-active-query-builder/models/transform_result.rb
251
+ - lib/webapi-active-query-builder/version.rb
252
+ - spec/api/active_query_builder_api_spec.rb
253
+ - spec/api_client_spec.rb
254
+ - spec/configuration_spec.rb
255
+ - spec/models/condition_group_spec.rb
256
+ - spec/models/condition_spec.rb
257
+ - spec/models/hidden_column_spec.rb
258
+ - spec/models/pagination_spec.rb
259
+ - spec/models/query_column_spec.rb
260
+ - spec/models/sorting_spec.rb
261
+ - spec/models/sql_query_spec.rb
262
+ - spec/models/totals_spec.rb
263
+ - spec/models/transform_result_spec.rb
264
+ - spec/models/transform_spec.rb
265
+ - spec/spec_helper.rb
266
+ - webapi-active-query-builder.gemspec
267
+ homepage: https://rubygems.org/gems/webapi_activequerybuilder
268
+ licenses:
269
+ - Apache 2.0
270
+ post_install_message:
271
+ rdoc_options: []
272
+ require_paths:
273
+ - lib
274
+ required_ruby_version: !ruby/object:Gem::Requirement
275
+ none: false
276
+ requirements:
277
+ - - ! '>='
278
+ - !ruby/object:Gem::Version
279
+ version: '0'
280
+ required_rubygems_version: !ruby/object:Gem::Requirement
281
+ none: false
282
+ requirements:
283
+ - - ! '>='
284
+ - !ruby/object:Gem::Version
285
+ version: '0'
286
+ requirements: []
287
+ rubyforge_project:
288
+ rubygems_version: 1.8.23
289
+ signing_key:
290
+ specification_version: 3
291
+ summary: Active Query Builder Web API lets modify SQL queries for different database
292
+ servers using RESTful HTTP requests.
293
+ test_files:
294
+ - spec/api/active_query_builder_api_spec.rb
295
+ - spec/api_client_spec.rb
296
+ - spec/configuration_spec.rb
297
+ - spec/models/sorting_spec.rb
298
+ - spec/models/transform_result_spec.rb
299
+ - spec/models/sql_query_spec.rb
300
+ - spec/models/condition_group_spec.rb
301
+ - spec/models/transform_spec.rb
302
+ - spec/models/totals_spec.rb
303
+ - spec/models/hidden_column_spec.rb
304
+ - spec/models/query_column_spec.rb
305
+ - spec/models/pagination_spec.rb
306
+ - spec/models/condition_spec.rb
307
+ - spec/spec_helper.rb