Class: Buildr::IntellijIdea::IdeaProject
- Defined in:
- lib/buildr/ide/idea.rb
Overview
IdeaModule represents an .ipr file
Constant Summary
Constants inherited from IdeaFile
Buildr::IntellijIdea::IdeaFile::DEFAULT_LOCAL_REPOSITORY_ENV_OVERRIDE, Buildr::IntellijIdea::IdeaFile::DEFAULT_PREFIX, Buildr::IntellijIdea::IdeaFile::DEFAULT_SUFFIX
Instance Attribute Summary collapse
-
#artifacts ⇒ Object
Returns the value of attribute artifacts.
-
#configurations ⇒ Object
Returns the value of attribute configurations.
-
#data_sources ⇒ Object
Returns the value of attribute data_sources.
-
#extra_modules ⇒ Object
Returns the value of attribute extra_modules.
- #jdk_version ⇒ Object
- #version ⇒ Object
Attributes inherited from IdeaFile
#buildr_project, #id, #local_repository_env_override, #prefix, #suffix, #template
Instance Method Summary collapse
- #add_artifact(name, type, build_on_make = false) ⇒ Object
- #add_configuration(name, type, factory_name, default = false, options = {}) ⇒ Object
- #add_data_source(name, options = {}) ⇒ Object
- #add_default_configuration(type, factory_name) ⇒ Object
- #add_default_testng_configuration(options = {}) ⇒ Object
- #add_exploded_ear_artifact(project, options = {}) ⇒ Object
- #add_exploded_ejb_artifact(project, options = {}) ⇒ Object
- #add_exploded_war_artifact(project, options = {}) ⇒ Object
- #add_glassfish_configuration(project, options = {}) ⇒ Object
- #add_glassfish_remote_configuration(project, options = {}) ⇒ Object
- #add_gwt_configuration(project, options = {}) ⇒ Object
- #add_jar_artifact(project, options = {}) ⇒ Object
- #add_java_configuration(project, classname, options = {}) ⇒ Object
- #add_postgres_data_source(name, options = {}) ⇒ Object
- #add_ruby_script_configuration(project, script, options = {}) ⇒ Object
- #add_sql_server_data_source(name, options = {}) ⇒ Object
-
#initialize(buildr_project) ⇒ IdeaProject
constructor
A new instance of IdeaProject.
- #mssql_dialect_mapping ⇒ Object
- #postgres_dialect_mapping ⇒ Object
- #sql_dialect_mappings(mappings) ⇒ Object
Methods inherited from IdeaFile
#add_component, #add_component_from_artifact, #add_component_from_file, #filename, #name, #write
Constructor Details
#initialize(buildr_project) ⇒ IdeaProject
Returns a new instance of IdeaProject.
698 699 700 701 702 703 704 705 |
# File 'lib/buildr/ide/idea.rb', line 698 def initialize(buildr_project) super() @buildr_project = buildr_project @extra_modules = [] @artifacts = [] @data_sources = [] @configurations = [] end |
Instance Attribute Details
#artifacts ⇒ Object
Returns the value of attribute artifacts.
692 693 694 |
# File 'lib/buildr/ide/idea.rb', line 692 def artifacts @artifacts end |
#configurations ⇒ Object
Returns the value of attribute configurations.
694 695 696 |
# File 'lib/buildr/ide/idea.rb', line 694 def configurations @configurations end |
#data_sources ⇒ Object
Returns the value of attribute data_sources.
693 694 695 |
# File 'lib/buildr/ide/idea.rb', line 693 def data_sources @data_sources end |
#extra_modules ⇒ Object
Returns the value of attribute extra_modules.
691 692 693 |
# File 'lib/buildr/ide/idea.rb', line 691 def extra_modules @extra_modules end |
#jdk_version ⇒ Object
711 712 713 |
# File 'lib/buildr/ide/idea.rb', line 711 def jdk_version @jdk_version ||= buildr_project.compile..source || '1.7' end |
Instance Method Details
#add_artifact(name, type, build_on_make = false) ⇒ Object
715 716 717 718 719 720 721 |
# File 'lib/buildr/ide/idea.rb', line 715 def add_artifact(name, type, build_on_make = false) add_to_composite_component(self.artifacts) do |xml| xml.artifact(:name => name, :type => type, 'build-on-make' => build_on_make) do |xml| yield xml if block_given? end end end |
#add_configuration(name, type, factory_name, default = false, options = {}) ⇒ Object
723 724 725 726 727 728 729 730 731 732 733 734 |
# File 'lib/buildr/ide/idea.rb', line 723 def add_configuration(name, type, factory_name, default = false, = {}) add_to_composite_component(self.configurations) do |xml| params = .dup params[:type] = type params[:factoryName] = factory_name params[:name] = name unless default params[:default] = true if default xml.configuration(params) do |xml| yield xml if block_given? end end end |
#add_data_source(name, options = {}) ⇒ Object
799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 |
# File 'lib/buildr/ide/idea.rb', line 799 def add_data_source(name, = {}) add_to_composite_component(self.data_sources) do |xml| = { :source => 'LOCAL', :name => name, :uuid => Buildr::Util.uuid } classpath = [:classpath] || [] xml.tag!('data-source', ) do |xml| xml.tag!('synchronize', ([:synchronize]||'true')) xml.tag!('jdbc-driver', [:driver]) if [:driver] xml.tag!('jdbc-url', [:url]) if [:url] xml.tag!('user-name', [:username]) if [:username] xml.tag!('user-password', encrypt([:password])) if [:password] xml.tag!('schema-pattern', [:schema_pattern]) if [:schema_pattern] xml.tag!('default-schemas', [:default_schemas]) if [:default_schemas] xml.tag!('table-pattern', [:table_pattern]) if [:table_pattern] xml.tag!('default-dialect', [:dialect]) if [:dialect] xml.libraries do |xml| classpath.each do |classpath_element| a = Buildr.artifact(classpath_element) a.invoke xml.library do |xml| xml.tag!('url', resolve_path(a.to_s)) end end end if classpath.size > 0 end end end |
#add_default_configuration(type, factory_name) ⇒ Object
736 737 738 739 740 |
# File 'lib/buildr/ide/idea.rb', line 736 def add_default_configuration(type, factory_name) add_configuration(nil, type, factory_name, true) do |xml| yield xml if block_given? end end |
#add_default_testng_configuration(options = {}) ⇒ Object
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 |
# File 'lib/buildr/ide/idea.rb', line 1157 def add_default_testng_configuration( = {}) jvm_args = [:jvm_args] || '-ea' dir = [:dir] || '$PROJECT_DIR$' add_default_configuration('TestNG', 'TestNG') do |xml| xml.extension(:name => 'coverage', :enabled => 'false', :merge => 'false', :sample_coverage => 'true', :runner => 'idea') xml.module(:name => '') xml.option(:name => 'ALTERNATIVE_JRE_PATH_ENABLED', :value => 'false') xml.option(:name => 'ALTERNATIVE_JRE_PATH') xml.option(:name => 'SUITE_NAME') xml.option(:name => 'PACKAGE_NAME') xml.option(:name => 'MAIN_CLASS_NAME') xml.option(:name => 'METHOD_NAME') xml.option(:name => 'GROUP_NAME') xml.option(:name => 'TEST_OBJECT', :value => 'CLASS') xml.option(:name => 'VM_PARAMETERS', :value => jvm_args) xml.option(:name => 'PARAMETERS') xml.option(:name => 'WORKING_DIRECTORY', :value => dir) xml.option(:name => 'OUTPUT_DIRECTORY') xml.option(:name => 'ANNOTATION_TYPE') xml.option(:name => 'ENV_VARIABLES') xml.option(:name => 'PASS_PARENT_ENVS', :value => 'true') xml.option(:name => 'TEST_SEARCH_SCOPE') do |opt| opt.value(:defaultName => 'moduleWithDependencies') end xml.option(:name => 'USE_DEFAULT_REPORTERS', :value => 'false') xml.option(:name => 'PROPERTIES_FILE') xml.envs xml.properties xml.listeners xml.method end end |
#add_exploded_ear_artifact(project, options = {}) ⇒ Object
870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 |
# File 'lib/buildr/ide/idea.rb', line 870 def add_exploded_ear_artifact(project, ={}) artifact_name = to_artifact_name(project, ) add_artifact(artifact_name, 'exploded-ear', build_on_make()) do |xml| dependencies = ([:dependencies] || ([project] + project.compile.dependencies)).flatten libraries, projects = partition_dependencies(dependencies) emit_output_path(xml, artifact_name, ) xml.root :id => 'root' do emit_module_output(xml, projects) xml.element :id => 'directory', :name => 'lib' do emit_libraries(xml, libraries) end end end end |
#add_exploded_ejb_artifact(project, options = {}) ⇒ Object
903 904 905 906 907 908 909 910 911 912 913 914 915 916 |
# File 'lib/buildr/ide/idea.rb', line 903 def add_exploded_ejb_artifact(project, = {}) artifact_name = to_artifact_name(project, ) add_artifact(artifact_name, 'exploded-ejb', build_on_make()) do |xml| dependencies = ([:dependencies] || [project]).flatten libraries, projects = partition_dependencies(dependencies) raise "Unable to add non-project dependencies (#{libraries.inspect}) to ejb artifact" if libraries.size > 0 emit_output_path(xml, artifact_name, ) xml.root :id => 'root' do artifact_content(xml, project, projects, ) end end end |
#add_exploded_war_artifact(project, options = {}) ⇒ Object
831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 |
# File 'lib/buildr/ide/idea.rb', line 831 def add_exploded_war_artifact(project, = {}) artifact_name = to_artifact_name(project, ) artifacts = [:artifacts] || [] add_artifact(artifact_name, 'exploded-war', build_on_make()) do |xml| dependencies = ([:dependencies] || ([project] + project.compile.dependencies)).flatten libraries, projects = partition_dependencies(dependencies) emit_output_path(xml, artifact_name, ) xml.root :id => 'root' do xml.element :id => 'directory', :name => 'WEB-INF' do xml.element :id => 'directory', :name => 'classes' do artifact_content(xml, project, projects, ) end xml.element :id => 'directory', :name => 'lib' do emit_libraries(xml, libraries) emit_jar_artifacts(xml, artifacts) end end if [:enable_war].nil? || [:enable_war] || ([:war_module_names] && [:war_module_names].size > 0) module_names = [:war_module_names] || [project.iml.name] module_names.each do |module_name| facet_name = [:war_facet_name] || 'Web' xml.element :id => 'javaee-facet-resources', :facet => "#{module_name}/web/#{facet_name}" end end if [:enable_gwt] || ([:gwt_module_names] && [:gwt_module_names].size > 0) module_names = [:gwt_module_names] || [project.iml.name] module_names.each do |module_name| facet_name = [:gwt_facet_name] || 'GWT' xml.element :id => 'gwt-compiler-output', :facet => "#{module_name}/gwt/#{facet_name}" end end end end end |
#add_glassfish_configuration(project, options = {}) ⇒ Object
1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 |
# File 'lib/buildr/ide/idea.rb', line 1019 def add_glassfish_configuration(project, = {}) artifact_name = [:name] || project.iml.id version = [:version] || '4.1.0' server_name = [:server_name] || "GlassFish #{version}" configuration_name = [:configuration_name] || server_name domain_name = [:domain] || project.iml.id domain_port = [:port] || '9009' packaged = [:packaged] || {} exploded = [:exploded] || {} add_to_composite_component(self.configurations) do |xml| xml.configuration(:name => configuration_name, :type => 'GlassfishConfiguration', :factoryName => 'Local', :default => false, :APPLICATION_SERVER_NAME => server_name) do |xml| xml.option(:name => 'OPEN_IN_BROWSER', :value => 'false') xml.option(:name => 'UPDATING_POLICY', :value => 'restart-server') xml.deployment do |deployment| packaged.each do |name, deployable| artifact = Buildr.artifact(deployable) artifact.invoke deployment.file(:path => resolve_path(artifact.to_s)) do |file| file.settings do |settings| settings.option(:name => 'contextRoot', :value => "/#{name}") settings.option(:name => 'defaultContextRoot', :value => 'false') end end end exploded.each do |deployable_name| deployment.artifact(:name => deployable_name) do |artifact| artifact.settings end end end xml.tag! 'server-settings' do |server_settings| server_settings.option(:name => 'VIRTUAL_SERVER') server_settings.option(:name => 'DOMAIN', :value => domain_name.to_s) server_settings.option(:name => 'PRESERVE', :value => 'false') server_settings.option(:name => 'USERNAME', :value => 'admin') server_settings.option(:name => 'PASSWORD', :value => '') end xml.predefined_log_file(:id => 'GlassFish', :enabled => 'true') xml.extension(:name => 'coverage', :enabled => 'false', :merge => 'false', :sample_coverage => 'true', :runner => 'idea') xml.RunnerSettings(:RunnerId => 'Cover') add_glassfish_runner_settings(xml, 'Cover') add_glassfish_configuration_wrapper(xml, 'Cover') add_glassfish_runner_settings(xml, 'Debug', { :DEBUG_PORT => domain_port.to_s, :TRANSPORT => '0', :LOCAL => 'true', }) add_glassfish_configuration_wrapper(xml, 'Debug') add_glassfish_runner_settings(xml, 'Run') add_glassfish_configuration_wrapper(xml, 'Run') xml.method do |method| method.option(:name => 'BuildArtifacts', :enabled => 'true') do |option| option.artifact(:name => artifact_name) end end end end end |
#add_glassfish_remote_configuration(project, options = {}) ⇒ Object
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 |
# File 'lib/buildr/ide/idea.rb', line 1088 def add_glassfish_remote_configuration(project, = {}) artifact_name = [:name] || project.iml.id version = [:version] || '4.1.0' server_name = [:server_name] || "GlassFish #{version}" configuration_name = [:configuration_name] || "Remote #{server_name}" domain_port = [:port] || '9009' packaged = [:packaged] || {} exploded = [:exploded] || {} add_to_composite_component(self.configurations) do |xml| xml.configuration(:name => configuration_name, :type => 'GlassfishConfiguration', :factoryName => 'Remote', :default => false, :APPLICATION_SERVER_NAME => server_name) do |xml| xml.option(:name => 'LOCAL', :value => 'false') xml.option(:name => 'OPEN_IN_BROWSER', :value => 'false') xml.option(:name => 'UPDATING_POLICY', :value => 'hot-swap-classes') xml.deployment do |deployment| packaged.each do |name, deployable| artifact = Buildr.artifact(deployable) artifact.invoke deployment.file(:path => resolve_path(artifact.to_s)) do |file| file.settings do |settings| settings.option(:name => 'contextRoot', :value => "/#{name}") settings.option(:name => 'defaultContextRoot', :value => 'false') end end end exploded.each do |deployable_name| deployment.artifact(:name => deployable_name) do |artifact| artifact.settings end end end xml.tag! 'server-settings' do |server_settings| server_settings.option(:name => 'VIRTUAL_SERVER') server_settings.data do |data| data.option(:name => 'adminServerHost', :value => '') data.option(:name => 'clusterName', :value => '') data.option(:name => 'stagingRemotePath', :value => '') data.option(:name => 'transportHostId') data.option(:name => 'transportStagingTarget') do |option| option.TransportTarget do |tt| tt.option(:name => 'id', :value => 'X') end end end end xml.predefined_log_file(:id => 'GlassFish', :enabled => 'true') add_glassfish_runner_settings(xml, 'Debug', { :DEBUG_PORT => domain_port.to_s, :TRANSPORT => '0', :LOCAL => 'false', }) add_glassfish_configuration_wrapper(xml, 'Debug') add_glassfish_runner_settings(xml, 'Run') add_glassfish_configuration_wrapper(xml, 'Run') xml.method do |method| method.option(:name => 'BuildArtifacts', :enabled => 'true') do |option| option.artifact(:name => artifact_name) end end end end end |
#add_gwt_configuration(project, options = {}) ⇒ Object
982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 |
# File 'lib/buildr/ide/idea.rb', line 982 def add_gwt_configuration(project, = {}) launch_page = [:launch_page] name = [:name] || (launch_page ? "Run #{launch_page}" : "Run #{project.name} DevMode") shell_parameters = [:shell_parameters] vm_parameters = [:vm_parameters] || '-Xmx512m' singleton = [:singleton].nil? ? true : !![:singleton] super_dev = [:super_dev].nil? ? true : !![:super_dev] gwt_module = [:gwt_module] start_javascript_debugger = [:start_javascript_debugger].nil? ? true : !![:start_javascript_debugger] add_configuration(name, 'GWT.ConfigurationType', 'GWT Configuration', false, :singleton => singleton) do |xml| xml.module(:name => [:iml_name] || project.iml.name) xml.option(:name => 'VM_PARAMETERS', :value => vm_parameters) xml.option(:name => 'RUN_PAGE', :value => launch_page) if launch_page xml.option(:name => 'GWT_MODULE', :value => gwt_module) if gwt_module # noinspection RubySimplifyBooleanInspection xml.option(:name => 'OPEN_IN_BROWSER', :value => false) if [:open_in_browser] == false xml.option(:name => 'START_JAVASCRIPT_DEBUGGER', :value => start_javascript_debugger) xml.option(:name => 'USE_SUPER_DEV_MODE', :value => super_dev) xml.option(:name => 'SHELL_PARAMETERS', :value => shell_parameters) if shell_parameters xml.RunnerSettings(:RunnerId => 'Debug') do xml.option(:name => 'DEBUG_PORT', :value => '') xml.option(:name => 'TRANSPORT', :value => 0) xml.option(:name => 'LOCAL', :value => true) end xml.RunnerSettings(:RunnerId => 'Run') xml.ConfigurationWrapper(:RunnerId => 'Run') xml.ConfigurationWrapper(:RunnerId => 'Debug') xml.method end end |
#add_jar_artifact(project, options = {}) ⇒ Object
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 |
# File 'lib/buildr/ide/idea.rb', line 887 def add_jar_artifact(project, = {}) artifact_name = to_artifact_name(project, ) dependencies = ([:dependencies] || [project]).flatten libraries, projects = partition_dependencies(dependencies) raise "Unable to add non-project dependencies (#{libraries.inspect}) to jar artifact" if libraries.size > 0 jar_name = "#{artifact_name}.jar" add_artifact(jar_name, 'jar', build_on_make()) do |xml| emit_output_path(xml, artifact_name, ) xml.root(:id => 'archive', :name => jar_name) do artifact_content(xml, project, projects, ) end end end |
#add_java_configuration(project, classname, options = {}) ⇒ Object
918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 |
# File 'lib/buildr/ide/idea.rb', line 918 def add_java_configuration(project, classname, = {}) args = [:args] || '' dir = [:dir] || 'file://$PROJECT_DIR$/' debug_port = [:debug_port] || 2599 module_name = [:module_name] || project.iml.name jvm_args = [:jvm_args] || '' name = [:name] || classname add_to_composite_component(self.configurations) do |xml| xml.configuration(:name => name, :type => 'Application', :factoryName => 'Application', :default => !![:default]) do |xml| xml.extension(:name => 'coverage', :enabled => 'false', :merge => 'false', :sample_coverage => 'true', :runner => 'idea') xml.option(:name => 'MAIN_CLASS_NAME', :value => classname) xml.option(:name => 'VM_PARAMETERS', :value => jvm_args) xml.option(:name => 'PROGRAM_PARAMETERS', :value => args) xml.option(:name => 'WORKING_DIRECTORY', :value => dir) xml.option(:name => 'ALTERNATIVE_JRE_PATH_ENABLED', :value => 'false') xml.option(:name => 'ALTERNATIVE_JRE_PATH', :value => '') xml.option(:name => 'ENABLE_SWING_INSPECTOR', :value => 'false') xml.option(:name => 'ENV_VARIABLES') xml.option(:name => 'PASS_PARENT_ENVS', :value => 'true') xml.module(:name => module_name) xml.envs xml.RunnerSettings(:RunnerId => 'Debug') do |xml| xml.option(:name => 'DEBUG_PORT', :value => debug_port.to_s) xml.option(:name => 'TRANSPORT', :value => '0') xml.option(:name => 'LOCAL', :value => 'true') end xml.RunnerSettings(:RunnerId => 'Run') xml.ConfigurationWrapper(:RunnerId => 'Debug') xml.ConfigurationWrapper(:RunnerId => 'Run') xml.method end end end |
#add_postgres_data_source(name, options = {}) ⇒ Object
759 760 761 762 763 764 765 766 767 768 769 770 771 772 |
# File 'lib/buildr/ide/idea.rb', line 759 def add_postgres_data_source(name, = {}) if [:url].nil? && [:database] default_url = "jdbc:postgresql://#{([:host] || '127.0.0.1')}:#{([:port] || '5432')}/#{[:database]}" end params = { :driver => 'org.postgresql.Driver', :url => default_url, :username => ENV['USER'], :dialect => 'PostgreSQL', :classpath => ['org.postgresql:postgresql:jar:9.2-1003-jdbc4'] }.merge() add_data_source(name, params) end |
#add_ruby_script_configuration(project, script, options = {}) ⇒ Object
953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 |
# File 'lib/buildr/ide/idea.rb', line 953 def add_ruby_script_configuration(project, script, = {}) args = [:args] || '' path = ::Buildr::Util.relative_path(File.(script), project.base_dir) name = [:name] || File.basename(script) dir = [:dir] || "$MODULE_DIR$/#{path}" sdk = [:sdk] || 'rbenv: ' + (IO.read(File.dirname(__FILE__) + '/../.ruby-version').trim rescue "jruby-#{RUBY_VERSION}") add_to_composite_component(self.configurations) do |xml| xml.configuration(:name => name, :type => 'RubyRunConfigurationType', :factoryName => 'Ruby', :default => !![:default]) do |xml| xml.module(:name => project.iml.name) xml.RUBY_RUN_CONFIG(:NAME => 'RUBY_ARGS', :VALUE => '-e STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)') xml.RUBY_RUN_CONFIG(:NAME => 'WORK DIR', :VALUE => dir) xml.RUBY_RUN_CONFIG(:NAME => 'SHOULD_USE_SDK', :VALUE => 'true') xml.RUBY_RUN_CONFIG(:NAME => 'ALTERN_SDK_NAME', :VALUE => sdk) xml.RUBY_RUN_CONFIG(:NAME => 'myPassParentEnvs', :VALUE => 'true') xml.envs xml.EXTENSION(:ID => 'BundlerRunConfigurationExtension', :bundleExecEnabled => 'false') xml.EXTENSION(:ID => 'JRubyRunConfigurationExtension') xml.RUBY_RUN_CONFIG(:NAME => 'SCRIPT_PATH', :VALUE => script) xml.RUBY_RUN_CONFIG(:NAME => 'SCRIPT_ARGS', :VALUE => args) xml.RunnerSettings(:RunnerId => 'RubyDebugRunner') xml.ConfigurationWrapper(:RunnerId => 'RubyDebugRunner') end end end |
#add_sql_server_data_source(name, options = {}) ⇒ Object
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 |
# File 'lib/buildr/ide/idea.rb', line 774 def add_sql_server_data_source(name, = {}) default_url = nil if [:url].nil? && [:database] default_url = "jdbc:jtds:sqlserver://#{([:host] || '127.0.0.1')}:#{([:port] || '1433')}/#{[:database]}" end params = { :driver => 'net.sourceforge.jtds.jdbc.Driver', :url => default_url, :username => ENV['USER'], :dialect => 'TSQL', :classpath => ['net.sourceforge.jtds:jtds:jar:1.2.7'] }.merge() if params[:url] if /jdbc\:jtds\:sqlserver\:\/\/[^:\\]+(\:\d+)?\/([^;]*)(\;.*)?/ =~ params[:url] database_name = $2 params[:schema_pattern] = "#{database_name}.*" params[:default_schemas] = "#{database_name}.*" end end add_data_source(name, params) end |
#mssql_dialect_mapping ⇒ Object
742 743 744 |
# File 'lib/buildr/ide/idea.rb', line 742 def mssql_dialect_mapping sql_dialect_mappings(buildr_project.base_dir => 'TSQL') end |
#postgres_dialect_mapping ⇒ Object
746 747 748 |
# File 'lib/buildr/ide/idea.rb', line 746 def postgres_dialect_mapping sql_dialect_mappings(buildr_project.base_dir => 'PostgreSQL') end |
#sql_dialect_mappings(mappings) ⇒ Object
750 751 752 753 754 755 756 757 |
# File 'lib/buildr/ide/idea.rb', line 750 def sql_dialect_mappings(mappings) add_component('SqlDialectMappings') do |component| mappings.each_pair do |path, dialect| file_path = file_path(path).gsub(/\/.$/, '') component.file :url => file_path, :dialect => dialect end end end |