├── .coveralls.yml ├── .gitignore ├── .rspec ├── .simplecov ├── .travis.yml ├── .yardopts ├── CHANGELOG.md ├── Gemfile ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── config └── cucumber.yml ├── features ├── basic_auth.feature ├── batch_request.feature ├── cassettes │ ├── basic_auth_protected_resource.yml │ ├── batch_request_additions.yml │ ├── batch_request_deletes.yml │ ├── batch_request_updates.yml │ ├── clean_database_for_testing.yml │ ├── cucumber_tags │ │ ├── basic_auth.yml │ │ ├── batch_request.yml │ │ ├── complex_types.yml │ │ ├── error_handling.yml │ │ ├── query_builder.yml │ │ ├── service_manage.yml │ │ ├── service_methods.yml │ │ ├── ssl.yml │ │ └── type_conversion.yml │ ├── service_manage_additions.yml │ ├── service_manage_deletions.yml │ ├── service_manage_deletions_2.yml │ └── unsecured_metadata.yml ├── complex_types.feature ├── error_handling.feature ├── query_builder.feature ├── service.feature ├── service_manage.feature ├── service_methods.feature ├── ssl.feature ├── step_definitions │ ├── pickle_steps.rb │ └── service_steps.rb ├── support │ ├── constants.rb │ ├── custom_helpers.rb │ ├── env.rb │ ├── hooks.rb │ ├── pickle.rb │ └── vcr.rb └── type_conversion.feature ├── gemfiles └── Gemfile.ruby187 ├── lib ├── ruby_odata.rb └── ruby_odata │ ├── association.rb │ ├── class_builder.rb │ ├── exceptions.rb │ ├── helpers.rb │ ├── operation.rb │ ├── property_metadata.rb │ ├── query_builder.rb │ ├── resource.rb │ ├── service.rb │ └── version.rb ├── ruby_odata.gemspec ├── spec ├── association_spec.rb ├── class_builder_spec.rb ├── fixtures │ ├── decimal │ │ └── metadata.xml │ ├── edmx_empty.xml │ ├── edmx_lowercase.xml │ ├── error_without_message.xml │ ├── feed_customization │ │ ├── edmx_feed_customization.xml │ │ ├── result_feed_customization_categories_expand.xml │ │ └── result_feed_customization_products_expand.xml │ ├── inheritance │ │ ├── edmx_pluralsight.xml │ │ └── result_pluralsight_courses.xml │ ├── int64_ids │ │ ├── edmx_boat_service.xml │ │ ├── edmx_car_service.xml │ │ ├── result_boats.xml │ │ └── result_cars.xml │ ├── links │ │ └── result_links_query.xml │ ├── ms_system_center │ │ ├── edmx_ms_system_center.xml │ │ ├── edmx_ms_system_center_v2.xml │ │ ├── hardware_profiles.xml │ │ ├── virtual_machines.xml │ │ └── vm_templates.xml │ ├── nested_expands │ │ ├── edmx_northwind.xml │ │ └── northwind_products_category_expands.xml │ ├── partial │ │ ├── partial_feed_metadata.xml │ │ ├── partial_feed_part_1.xml │ │ ├── partial_feed_part_2.xml │ │ └── partial_feed_part_3.xml │ ├── sample_service │ │ ├── edmx_categories_products.xml │ │ ├── result_category_names.xml │ │ ├── result_entity_category_web_get.xml │ │ ├── result_entity_single_category_web_get.xml │ │ ├── result_first_category_id.xml │ │ ├── result_multiple_category_products.xml │ │ ├── result_select_categories_expand.xml │ │ ├── result_select_categories_no_property.xml │ │ ├── result_select_categories_travsing_no_expand.xml │ │ ├── result_select_products_name_price.xml │ │ ├── result_single_category.xml │ │ ├── result_single_product.xml │ │ └── result_single_product_not_found.xml │ ├── sap │ │ ├── edmx_sap_demo_flight.xml │ │ └── result_sap_demo_flight_missing_category.xml │ └── v4 │ │ ├── edmx_metadata.xml │ │ └── result_categories.xml ├── property_metadata_spec.rb ├── query_builder_spec.rb ├── revised_service_spec.rb ├── service_spec.rb ├── service_v4_spec.rb ├── spec_helper.rb └── support │ ├── describe_private.rb │ ├── element_helpers.rb │ └── sample_service_matcher.rb └── test ├── RubyODataService ├── RubyODataService.sln ├── RubyODataService │ ├── App_Data │ │ └── .gitkeep │ ├── App_Start │ │ └── EntityFramework.SqlServerCompact.cs │ ├── BasicAuth │ │ ├── RubyOData.svc │ │ └── RubyOData.svc.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ │ ├── AuditFields.cs │ │ ├── Category.cs │ │ └── Product.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RubyOData.svc │ ├── RubyOData.svc.cs │ ├── RubyODataContext.cs │ ├── RubyODataService.csproj │ ├── RubyODataService.csproj.user │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── bin │ │ ├── EntityFramework.dll │ │ ├── Microsoft.Data.Edm.dll │ │ ├── Microsoft.Data.OData.dll │ │ ├── Microsoft.Data.Services.Client.dll │ │ ├── Microsoft.Data.Services.dll │ │ ├── Microsoft.Data.Spatial.dll │ │ ├── RubyODataService.dll │ │ ├── System.Data.SqlServerCe.Entity.dll │ │ ├── System.Data.SqlServerCe.dll │ │ ├── System.Spatial.dll │ │ ├── WebActivator.dll │ │ ├── amd64 │ │ │ ├── Microsoft.VC90.CRT │ │ │ │ ├── Microsoft.VC90.CRT.manifest │ │ │ │ ├── README_ENU.txt │ │ │ │ └── msvcr90.dll │ │ │ ├── sqlcecompact40.dll │ │ │ ├── sqlceer40EN.dll │ │ │ ├── sqlceme40.dll │ │ │ ├── sqlceqp40.dll │ │ │ └── sqlcese40.dll │ │ └── x86 │ │ │ ├── Microsoft.VC90.CRT │ │ │ ├── Microsoft.VC90.CRT.manifest │ │ │ ├── README_ENU.txt │ │ │ └── msvcr90.dll │ │ │ ├── sqlcecompact40.dll │ │ │ ├── sqlceer40EN.dll │ │ │ ├── sqlceme40.dll │ │ │ ├── sqlceqp40.dll │ │ │ └── sqlcese40.dll │ └── packages.config └── packages │ ├── EntityFramework.4.2.0.0 │ ├── EntityFramework.4.2.0.0.nupkg │ └── lib │ │ └── net40 │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml │ ├── EntityFramework.SqlServerCompact.4.1.8482.2 │ ├── Content │ │ └── App_Start │ │ │ └── EntityFramework.SqlServerCompact.cs.pp │ ├── EULA_ENU.rtf │ ├── EntityFramework.SqlServerCompact.4.1.8482.2.nupkg │ ├── lib │ │ └── System.Data.SqlServerCe.Entity.dll │ └── tools │ │ └── install.ps1 │ ├── SqlServerCompact.4.0.8482.1 │ ├── Content │ │ └── web.config.transform │ ├── NativeBinaries │ │ ├── amd64 │ │ │ ├── Microsoft.VC90.CRT │ │ │ │ ├── Microsoft.VC90.CRT.manifest │ │ │ │ ├── README_ENU.txt │ │ │ │ └── msvcr90.dll │ │ │ ├── sqlcecompact40.dll │ │ │ ├── sqlceer40EN.dll │ │ │ ├── sqlceme40.dll │ │ │ ├── sqlceqp40.dll │ │ │ └── sqlcese40.dll │ │ └── x86 │ │ │ ├── Microsoft.VC90.CRT │ │ │ ├── Microsoft.VC90.CRT.manifest │ │ │ ├── README_ENU.txt │ │ │ └── msvcr90.dll │ │ │ ├── sqlcecompact40.dll │ │ │ ├── sqlceer40EN.dll │ │ │ ├── sqlceme40.dll │ │ │ ├── sqlceqp40.dll │ │ │ └── sqlcese40.dll │ ├── SQLCE_EULA_ENU.rtf │ ├── SqlServerCompact.4.0.8482.1.nupkg │ ├── Tools │ │ ├── GetSqlCEPostBuildCmd.ps1 │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ └── lib │ │ └── System.Data.SqlServerCe.dll │ ├── WCF DataServices October 2011 CTP │ ├── DataSvcUtil.exe │ ├── License.rtf │ ├── Microsoft.Data.Edm.dll │ ├── Microsoft.Data.Edm.xml │ ├── Microsoft.Data.OData.dll │ ├── Microsoft.Data.OData.xml │ ├── Microsoft.Data.Services.Client.dll │ ├── Microsoft.Data.Services.Client.xml │ ├── Microsoft.Data.Services.Design.dll │ ├── Microsoft.Data.Services.Design.xml │ ├── Microsoft.Data.Services.dll │ ├── Microsoft.Data.Services.xml │ ├── Microsoft.Data.Spatial.dll │ ├── Microsoft.Data.Spatial.xml │ ├── Microsoft.VsDesigner.DataServices.Adapter.dll │ ├── README.txt │ ├── System.Spatial.dll │ └── System.Spatial.xml │ ├── WebActivator.1.0.0.0 │ ├── WebActivator.1.0.0.0.nupkg │ └── lib │ │ ├── WebActivator.dll │ │ └── WebActivator.pdb │ └── repositories.config ├── applicationhost.config.template ├── blueprints.rb ├── iisExpress x64.bat ├── iisExpress x86.bat ├── setpath.rb └── usage_samples ├── querying.rb ├── reflection.rb └── sample_data.rb /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color -------------------------------------------------------------------------------- /.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/.simplecov -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/Rakefile -------------------------------------------------------------------------------- /config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/config/cucumber.yml -------------------------------------------------------------------------------- /features/basic_auth.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/basic_auth.feature -------------------------------------------------------------------------------- /features/batch_request.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/batch_request.feature -------------------------------------------------------------------------------- /features/cassettes/basic_auth_protected_resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/basic_auth_protected_resource.yml -------------------------------------------------------------------------------- /features/cassettes/batch_request_additions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/batch_request_additions.yml -------------------------------------------------------------------------------- /features/cassettes/batch_request_deletes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/batch_request_deletes.yml -------------------------------------------------------------------------------- /features/cassettes/batch_request_updates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/batch_request_updates.yml -------------------------------------------------------------------------------- /features/cassettes/clean_database_for_testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/clean_database_for_testing.yml -------------------------------------------------------------------------------- /features/cassettes/cucumber_tags/basic_auth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/cucumber_tags/basic_auth.yml -------------------------------------------------------------------------------- /features/cassettes/cucumber_tags/batch_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/cucumber_tags/batch_request.yml -------------------------------------------------------------------------------- /features/cassettes/cucumber_tags/complex_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/cucumber_tags/complex_types.yml -------------------------------------------------------------------------------- /features/cassettes/cucumber_tags/error_handling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/cucumber_tags/error_handling.yml -------------------------------------------------------------------------------- /features/cassettes/cucumber_tags/query_builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/cucumber_tags/query_builder.yml -------------------------------------------------------------------------------- /features/cassettes/cucumber_tags/service_manage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/cucumber_tags/service_manage.yml -------------------------------------------------------------------------------- /features/cassettes/cucumber_tags/service_methods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/cucumber_tags/service_methods.yml -------------------------------------------------------------------------------- /features/cassettes/cucumber_tags/ssl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/cucumber_tags/ssl.yml -------------------------------------------------------------------------------- /features/cassettes/cucumber_tags/type_conversion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/cucumber_tags/type_conversion.yml -------------------------------------------------------------------------------- /features/cassettes/service_manage_additions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/service_manage_additions.yml -------------------------------------------------------------------------------- /features/cassettes/service_manage_deletions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/service_manage_deletions.yml -------------------------------------------------------------------------------- /features/cassettes/service_manage_deletions_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/service_manage_deletions_2.yml -------------------------------------------------------------------------------- /features/cassettes/unsecured_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/cassettes/unsecured_metadata.yml -------------------------------------------------------------------------------- /features/complex_types.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/complex_types.feature -------------------------------------------------------------------------------- /features/error_handling.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/error_handling.feature -------------------------------------------------------------------------------- /features/query_builder.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/query_builder.feature -------------------------------------------------------------------------------- /features/service.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/service.feature -------------------------------------------------------------------------------- /features/service_manage.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/service_manage.feature -------------------------------------------------------------------------------- /features/service_methods.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/service_methods.feature -------------------------------------------------------------------------------- /features/ssl.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/ssl.feature -------------------------------------------------------------------------------- /features/step_definitions/pickle_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/step_definitions/pickle_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/service_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/step_definitions/service_steps.rb -------------------------------------------------------------------------------- /features/support/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/support/constants.rb -------------------------------------------------------------------------------- /features/support/custom_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/support/custom_helpers.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/support/hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/support/hooks.rb -------------------------------------------------------------------------------- /features/support/pickle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/support/pickle.rb -------------------------------------------------------------------------------- /features/support/vcr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/support/vcr.rb -------------------------------------------------------------------------------- /features/type_conversion.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/features/type_conversion.feature -------------------------------------------------------------------------------- /gemfiles/Gemfile.ruby187: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/gemfiles/Gemfile.ruby187 -------------------------------------------------------------------------------- /lib/ruby_odata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/lib/ruby_odata.rb -------------------------------------------------------------------------------- /lib/ruby_odata/association.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/lib/ruby_odata/association.rb -------------------------------------------------------------------------------- /lib/ruby_odata/class_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/lib/ruby_odata/class_builder.rb -------------------------------------------------------------------------------- /lib/ruby_odata/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/lib/ruby_odata/exceptions.rb -------------------------------------------------------------------------------- /lib/ruby_odata/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/lib/ruby_odata/helpers.rb -------------------------------------------------------------------------------- /lib/ruby_odata/operation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/lib/ruby_odata/operation.rb -------------------------------------------------------------------------------- /lib/ruby_odata/property_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/lib/ruby_odata/property_metadata.rb -------------------------------------------------------------------------------- /lib/ruby_odata/query_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/lib/ruby_odata/query_builder.rb -------------------------------------------------------------------------------- /lib/ruby_odata/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/lib/ruby_odata/resource.rb -------------------------------------------------------------------------------- /lib/ruby_odata/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/lib/ruby_odata/service.rb -------------------------------------------------------------------------------- /lib/ruby_odata/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/lib/ruby_odata/version.rb -------------------------------------------------------------------------------- /ruby_odata.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/ruby_odata.gemspec -------------------------------------------------------------------------------- /spec/association_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/association_spec.rb -------------------------------------------------------------------------------- /spec/class_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/class_builder_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/decimal/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/decimal/metadata.xml -------------------------------------------------------------------------------- /spec/fixtures/edmx_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/edmx_empty.xml -------------------------------------------------------------------------------- /spec/fixtures/edmx_lowercase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/edmx_lowercase.xml -------------------------------------------------------------------------------- /spec/fixtures/error_without_message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/error_without_message.xml -------------------------------------------------------------------------------- /spec/fixtures/feed_customization/edmx_feed_customization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/feed_customization/edmx_feed_customization.xml -------------------------------------------------------------------------------- /spec/fixtures/feed_customization/result_feed_customization_categories_expand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/feed_customization/result_feed_customization_categories_expand.xml -------------------------------------------------------------------------------- /spec/fixtures/feed_customization/result_feed_customization_products_expand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/feed_customization/result_feed_customization_products_expand.xml -------------------------------------------------------------------------------- /spec/fixtures/inheritance/edmx_pluralsight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/inheritance/edmx_pluralsight.xml -------------------------------------------------------------------------------- /spec/fixtures/inheritance/result_pluralsight_courses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/inheritance/result_pluralsight_courses.xml -------------------------------------------------------------------------------- /spec/fixtures/int64_ids/edmx_boat_service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/int64_ids/edmx_boat_service.xml -------------------------------------------------------------------------------- /spec/fixtures/int64_ids/edmx_car_service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/int64_ids/edmx_car_service.xml -------------------------------------------------------------------------------- /spec/fixtures/int64_ids/result_boats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/int64_ids/result_boats.xml -------------------------------------------------------------------------------- /spec/fixtures/int64_ids/result_cars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/int64_ids/result_cars.xml -------------------------------------------------------------------------------- /spec/fixtures/links/result_links_query.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/links/result_links_query.xml -------------------------------------------------------------------------------- /spec/fixtures/ms_system_center/edmx_ms_system_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/ms_system_center/edmx_ms_system_center.xml -------------------------------------------------------------------------------- /spec/fixtures/ms_system_center/edmx_ms_system_center_v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/ms_system_center/edmx_ms_system_center_v2.xml -------------------------------------------------------------------------------- /spec/fixtures/ms_system_center/hardware_profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/ms_system_center/hardware_profiles.xml -------------------------------------------------------------------------------- /spec/fixtures/ms_system_center/virtual_machines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/ms_system_center/virtual_machines.xml -------------------------------------------------------------------------------- /spec/fixtures/ms_system_center/vm_templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/ms_system_center/vm_templates.xml -------------------------------------------------------------------------------- /spec/fixtures/nested_expands/edmx_northwind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/nested_expands/edmx_northwind.xml -------------------------------------------------------------------------------- /spec/fixtures/nested_expands/northwind_products_category_expands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/nested_expands/northwind_products_category_expands.xml -------------------------------------------------------------------------------- /spec/fixtures/partial/partial_feed_metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/partial/partial_feed_metadata.xml -------------------------------------------------------------------------------- /spec/fixtures/partial/partial_feed_part_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/partial/partial_feed_part_1.xml -------------------------------------------------------------------------------- /spec/fixtures/partial/partial_feed_part_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/partial/partial_feed_part_2.xml -------------------------------------------------------------------------------- /spec/fixtures/partial/partial_feed_part_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/partial/partial_feed_part_3.xml -------------------------------------------------------------------------------- /spec/fixtures/sample_service/edmx_categories_products.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sample_service/edmx_categories_products.xml -------------------------------------------------------------------------------- /spec/fixtures/sample_service/result_category_names.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sample_service/result_category_names.xml -------------------------------------------------------------------------------- /spec/fixtures/sample_service/result_entity_category_web_get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sample_service/result_entity_category_web_get.xml -------------------------------------------------------------------------------- /spec/fixtures/sample_service/result_entity_single_category_web_get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sample_service/result_entity_single_category_web_get.xml -------------------------------------------------------------------------------- /spec/fixtures/sample_service/result_first_category_id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sample_service/result_first_category_id.xml -------------------------------------------------------------------------------- /spec/fixtures/sample_service/result_multiple_category_products.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sample_service/result_multiple_category_products.xml -------------------------------------------------------------------------------- /spec/fixtures/sample_service/result_select_categories_expand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sample_service/result_select_categories_expand.xml -------------------------------------------------------------------------------- /spec/fixtures/sample_service/result_select_categories_no_property.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sample_service/result_select_categories_no_property.xml -------------------------------------------------------------------------------- /spec/fixtures/sample_service/result_select_categories_travsing_no_expand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sample_service/result_select_categories_travsing_no_expand.xml -------------------------------------------------------------------------------- /spec/fixtures/sample_service/result_select_products_name_price.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sample_service/result_select_products_name_price.xml -------------------------------------------------------------------------------- /spec/fixtures/sample_service/result_single_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sample_service/result_single_category.xml -------------------------------------------------------------------------------- /spec/fixtures/sample_service/result_single_product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sample_service/result_single_product.xml -------------------------------------------------------------------------------- /spec/fixtures/sample_service/result_single_product_not_found.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sample_service/result_single_product_not_found.xml -------------------------------------------------------------------------------- /spec/fixtures/sap/edmx_sap_demo_flight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sap/edmx_sap_demo_flight.xml -------------------------------------------------------------------------------- /spec/fixtures/sap/result_sap_demo_flight_missing_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/sap/result_sap_demo_flight_missing_category.xml -------------------------------------------------------------------------------- /spec/fixtures/v4/edmx_metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/fixtures/v4/edmx_metadata.xml -------------------------------------------------------------------------------- /spec/fixtures/v4/result_categories.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/property_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/property_metadata_spec.rb -------------------------------------------------------------------------------- /spec/query_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/query_builder_spec.rb -------------------------------------------------------------------------------- /spec/revised_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/revised_service_spec.rb -------------------------------------------------------------------------------- /spec/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/service_spec.rb -------------------------------------------------------------------------------- /spec/service_v4_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/service_v4_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/describe_private.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/support/describe_private.rb -------------------------------------------------------------------------------- /spec/support/element_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/support/element_helpers.rb -------------------------------------------------------------------------------- /spec/support/sample_service_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/spec/support/sample_service_matcher.rb -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService.sln -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/App_Data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/App_Start/EntityFramework.SqlServerCompact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/App_Start/EntityFramework.SqlServerCompact.cs -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/BasicAuth/RubyOData.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/BasicAuth/RubyOData.svc -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/BasicAuth/RubyOData.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/BasicAuth/RubyOData.svc.cs -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/Global.asax -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/Global.asax.cs -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/Models/AuditFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/Models/AuditFields.cs -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/Models/Category.cs -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/Models/Product.cs -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/RubyOData.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/RubyOData.svc -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/RubyOData.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/RubyOData.svc.cs -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/RubyODataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/RubyODataContext.cs -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/RubyODataService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/RubyODataService.csproj -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/RubyODataService.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/RubyODataService.csproj.user -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/Web.Debug.config -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/Web.Release.config -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/Web.config -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/EntityFramework.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/Microsoft.Data.Edm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Edm.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/Microsoft.Data.OData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/Microsoft.Data.OData.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/Microsoft.Data.Services.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Services.Client.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/Microsoft.Data.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Services.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/Microsoft.Data.Spatial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Spatial.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/RubyODataService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/RubyODataService.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/System.Data.SqlServerCe.Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/System.Data.SqlServerCe.Entity.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/System.Data.SqlServerCe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/System.Data.SqlServerCe.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/System.Spatial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/System.Spatial.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/WebActivator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/WebActivator.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/README_ENU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/README_ENU.txt -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/msvcr90.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/amd64/sqlcecompact40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/amd64/sqlcecompact40.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/amd64/sqlceer40EN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/amd64/sqlceer40EN.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/amd64/sqlceme40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/amd64/sqlceme40.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/amd64/sqlceqp40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/amd64/sqlceqp40.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/amd64/sqlcese40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/amd64/sqlcese40.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/README_ENU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/README_ENU.txt -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/msvcr90.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/x86/sqlcecompact40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/x86/sqlcecompact40.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/x86/sqlceer40EN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/x86/sqlceer40EN.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/x86/sqlceme40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/x86/sqlceme40.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/x86/sqlceqp40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/x86/sqlceqp40.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/bin/x86/sqlcese40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/bin/x86/sqlcese40.dll -------------------------------------------------------------------------------- /test/RubyODataService/RubyODataService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/RubyODataService/packages.config -------------------------------------------------------------------------------- /test/RubyODataService/packages/EntityFramework.4.2.0.0/EntityFramework.4.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/EntityFramework.4.2.0.0/EntityFramework.4.2.0.0.nupkg -------------------------------------------------------------------------------- /test/RubyODataService/packages/EntityFramework.4.2.0.0/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/EntityFramework.4.2.0.0/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/EntityFramework.4.2.0.0/lib/net40/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/EntityFramework.4.2.0.0/lib/net40/EntityFramework.xml -------------------------------------------------------------------------------- /test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/Content/App_Start/EntityFramework.SqlServerCompact.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/Content/App_Start/EntityFramework.SqlServerCompact.cs.pp -------------------------------------------------------------------------------- /test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/EULA_ENU.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/EULA_ENU.rtf -------------------------------------------------------------------------------- /test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/EntityFramework.SqlServerCompact.4.1.8482.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/EntityFramework.SqlServerCompact.4.1.8482.2.nupkg -------------------------------------------------------------------------------- /test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/lib/System.Data.SqlServerCe.Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/lib/System.Data.SqlServerCe.Entity.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/tools/install.ps1 -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Content/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Content/web.config.transform -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/README_ENU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/README_ENU.txt -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/msvcr90.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlcecompact40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlcecompact40.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceer40EN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceer40EN.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceme40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceme40.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceqp40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceqp40.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlcese40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlcese40.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/README_ENU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/README_ENU.txt -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/msvcr90.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlcecompact40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlcecompact40.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceer40EN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceer40EN.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceme40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceme40.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceqp40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceqp40.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlcese40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlcese40.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/SQLCE_EULA_ENU.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/SQLCE_EULA_ENU.rtf -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/SqlServerCompact.4.0.8482.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/SqlServerCompact.4.0.8482.1.nupkg -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/GetSqlCEPostBuildCmd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/GetSqlCEPostBuildCmd.ps1 -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/install.ps1 -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/lib/System.Data.SqlServerCe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/lib/System.Data.SqlServerCe.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/DataSvcUtil.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/DataSvcUtil.exe -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/License.rtf -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Edm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Edm.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Edm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Edm.xml -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.OData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.OData.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.OData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.OData.xml -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Client.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Client.xml -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Design.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Design.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Design.xml -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.xml -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Spatial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Spatial.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Spatial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Spatial.xml -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.VsDesigner.DataServices.Adapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.VsDesigner.DataServices.Adapter.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/README.txt -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/System.Spatial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/System.Spatial.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/WCF DataServices October 2011 CTP/System.Spatial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WCF DataServices October 2011 CTP/System.Spatial.xml -------------------------------------------------------------------------------- /test/RubyODataService/packages/WebActivator.1.0.0.0/WebActivator.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WebActivator.1.0.0.0/WebActivator.1.0.0.0.nupkg -------------------------------------------------------------------------------- /test/RubyODataService/packages/WebActivator.1.0.0.0/lib/WebActivator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WebActivator.1.0.0.0/lib/WebActivator.dll -------------------------------------------------------------------------------- /test/RubyODataService/packages/WebActivator.1.0.0.0/lib/WebActivator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/WebActivator.1.0.0.0/lib/WebActivator.pdb -------------------------------------------------------------------------------- /test/RubyODataService/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/RubyODataService/packages/repositories.config -------------------------------------------------------------------------------- /test/applicationhost.config.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/applicationhost.config.template -------------------------------------------------------------------------------- /test/blueprints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/blueprints.rb -------------------------------------------------------------------------------- /test/iisExpress x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/iisExpress x64.bat -------------------------------------------------------------------------------- /test/iisExpress x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/iisExpress x86.bat -------------------------------------------------------------------------------- /test/setpath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/setpath.rb -------------------------------------------------------------------------------- /test/usage_samples/querying.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/usage_samples/querying.rb -------------------------------------------------------------------------------- /test/usage_samples/reflection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/usage_samples/reflection.rb -------------------------------------------------------------------------------- /test/usage_samples/sample_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visoft/ruby_odata/HEAD/test/usage_samples/sample_data.rb --------------------------------------------------------------------------------