User Josh Moore - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T23:45:20Zhttp://stackoverflow.com/feeds/user/5004http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/131020/migrations-for-java9Migrations for JavaJosh Moore2008-09-25T01:37:22Z2009-10-20T19:36:28Z
<p>I use both ruby on rails and Java. I really enjoy using migrations when I am working on a rails project. so I am wondering is there a migrations like tool for Java? If there is no such tool is it a good idea to use migrations as a tool to control a database used by a Java project? </p>
http://stackoverflow.com/questions/228441/how-do-i-log-the-entire-trace-back-of-a-ruby-exception-using-the-default-rails-lo3How do I log the entire trace back of a Ruby exception using the default Rails logger?Josh Moore2008-10-23T03:31:34Z2009-10-06T18:57:35Z
<p>I am working on rails project and I am trying to get exceptions to be logged to the rails log files. I know I can call <code>logger.error $!</code> to get the first line of the exception logged to the file. But, I want to get the entire trace stack logged as well. How do I log the entire trace back of an exception using the default rails logger?</p>
http://stackoverflow.com/questions/80091/diff-a-ruby-string-or-array5diff a ruby string or arrayJosh Moore2008-09-17T04:47:35Z2009-10-02T21:27:06Z
<p>Is there a ruby library that will take two strings or two arrays and return the difference between the two strings/arrays?</p>
http://stackoverflow.com/questions/1463849/querying-across-schemas-in-postgres0Querying across schemas in PostgresJosh Moore2009-09-23T03:43:53Z2009-09-23T04:14:14Z
<p>Hi, I am using Postgres and I have multiple schemas (i.e. S1 and S2). I would like to run a query that uses tables in S1 and S2. is it possible to do something like this:</p>
<pre><code>select * from S1.table1, S2.table2
</code></pre>
<p>Thanks for all replies.</p>
http://stackoverflow.com/questions/383058/rails-schema-creation-problem2Rails Schema creation problemJosh Moore2008-12-20T07:26:15Z2009-09-21T16:23:15Z
<p>I am using Jruby and rails 2.2.2. My problem is I have a migration that is not being correctly written to the database schema.</p>
<p>Here is my migration: </p>
<pre><code>class CreateNotes < ActiveRecord::Migration
def self.up
create_table(:notes, :options => 'ENGINE=MyISAM') do |t|
t.string :title
t.text :body
t.timestamps
end
execute "alter table notes ADD FULLTEXT(title, body)"
end
</code></pre>
<p>Here is what it produces on in schema.rb</p>
<pre><code>create_table "notes", :force => true do |t|
t.string "title"
t.text "body"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "notes", ["title", "body"], :name => "title"
</code></pre>
<p>I have two question:</p>
<ul>
<li>How do I get <code>'ENGINE=MyISAM'</code> into the schema?</li>
<li>Why did my execute statement become <code>add_index "notes", ["title", "body"], :name => "title"</code>? and how do I force migrations to leave it as an execute statement?</li>
</ul>
<p>Thanks to Christian Lescuyer for the answer. However, when I tried this nothing changed. I uncommented the config.active_record... line but, my schema has not changed. I have tried this in jruby and on ruby 1.8.6 with rails 2.2.2 and edge rails and there is not changes in the schema. Can anybody tell me what I am doing wrong?</p>
http://stackoverflow.com/questions/51002/java-desktop-application-framework10Java Desktop application frameworkJosh Moore2008-09-09T00:11:34Z2009-08-20T22:25:41Z
<p>Hi,</p>
<p>I am working on designing and building a desktop application. I am thinking about using eclipse or netbeans for the base of this application. However, I have never built on either of these platforms. I am personally leaning to using netbeans because it seams like that platform is an easer learning curve. But, I wanted to ask people that have actually build on these platforms before which one is easier to use?</p>
<p>My personal definition of easer is as follows:</p>
<ul>
<li><p>Easy to get started with</p></li>
<li><p>Consistent and logical API</p></li>
<li><p>Good documentation</p></li>
<li><p>Easy to build and deploy</p></li>
</ul>
<p>Thanks very much,</p>
<p>Josh</p>
http://stackoverflow.com/questions/60368/continuous-integration-web-service1continuous integration web service Josh Moore2008-09-13T06:42:46Z2009-08-07T08:14:49Z
<p>I am in a position where I could become a team leader of a team distributed over two countries. This team would be the tech. team for a start up company that we plan to bootstrap on limited funds. So I am trying to find out ways to minimize upfront expenses. Right now we are planning to use Java and will have a lot of junit tests. I am planing on using github for VCS and lighthouse for a bug tracker. In addition I want to add a continuous integration server but I do not know of any continuous integration servers that are offered as a web service.</p>
<p>Does anybody know if there are continuous integration servers available in a <em>software as a service</em> model?</p>
<p>P.S. if anybody knows were I can get these three services at one location that would be great to know to.</p>
http://stackoverflow.com/questions/130448/really-young-software-architect-question4Really Young Software Architect QuestionJosh Moore2008-09-24T22:54:36Z2009-07-29T18:53:43Z
<p>Hi,</p>
<p>I am a really young software engineer/QA Team leader. I have been developing software for about 2 years and for 1 of those years I have also been the head of the QA team at a software development company. Currently I am still working as the QA team leader/software engineer for QA tools. Recently I have been invited to join a group of friends and associates who would like to start a software company. They want me to be the architect/tech lead of the software (a special chat client written in Java is all I can say about it). I am very good at learning under fire and I learn a great deal by doing. However, I worry that my lack of experience will cause the project to fail (or at least be developed poorly). So I am wondering would you suggest I take the position, do my best and learn as I go? Or would you suggest I refuse? </p>
<p>If you would suggest I take the position would you please provide one or to resources that would be good for a beginning Java Architect?</p>
<p>Thanks, In advanced.</p>
http://stackoverflow.com/questions/1131679/which-is-the-most-reliable-web-server-to-work-with-ror-in-production-or-developme/1131685#11316850Answer by Josh Moore for Which is the most reliable web server to work with RoR in production or development?Josh Moore2009-07-15T14:18:09Z2009-07-15T14:18:09Z<p>For straight Ruby on Rails try Apache + Passanger</p>
http://stackoverflow.com/questions/161315/ruby-ruby-on-rails-memory-leak-detection5ruby/ruby on rails memory leak detectionJosh Moore2008-10-02T08:15:27Z2009-07-12T14:30:25Z
<p>I wrote a small web app using ruby on rails, its main purpose is to upload, store, and display results from xml(files can be up to several MB) files. After running for about 2 months I noticed that the mongrel process was using about 4GB of memory. I did some research on debugging ruby memory leaks and could not find much. So I have two questions.</p>
<ul>
<li>Are there any good tools that can be used to find memory leaks in Ruby/rails?</li>
<li>What type of coding patterns cause memory leaks in ruby?</li>
</ul>
http://stackoverflow.com/questions/1107168/raise-nullpointerexception-in-ruby1raise "NullPointerException" in RubyJosh Moore2009-07-10T00:42:49Z2009-07-10T01:58:36Z
<p>I previously worked a lot with Java and now I am working more with Ruby. One thing I cannot figure out though is what is the ruby equivalent to the Java "NullPointerException"? I want to test variables when I enter a function and if they are nil I want to raise this type of exception. Is there a specific ruby error class to raise this type of exception?</p>
http://stackoverflow.com/questions/1033320/does-using-jruby-mean-a-duplicate-of-ruby-on-all-applications/1036120#10361203Answer by Josh Moore for Does using JRuby mean a duplicate of Ruby on all applications?Josh Moore2009-06-24T02:06:23Z2009-06-24T02:06:23Z<p>The simple answer is yes. JRuby represents a separate installation of Ruby on your system so Gems must be installed on both JRuby and Ruby separately.</p>
http://stackoverflow.com/questions/999482/what-practical-effect-will-different-ruby-threading-models-ruby-vs-jruby-have-o/999491#9994910Answer by Josh Moore for What practical effect will different Ruby threading models (Ruby vs JRuby) have on your code as a developer?Josh Moore2009-06-16T03:50:33Z2009-06-16T03:50:33Z<p>I am a regular JRuby user and the biggest difference is that JRuby threads are truly concurrent. They are actually system level threads so they can be executed concurrently on multiple cores. I do not know of any place where MRI Ruby 1.8 code runs slower on JRuby. You might consider checking out this question <a href="http://stackoverflow.com/questions/56087/does-ruby-have-real-multithreading/56094#56094">http://stackoverflow.com/questions/56087/does-ruby-have-real-multithreading/56094#56094</a>.</p>
http://stackoverflow.com/questions/984245/saving-dynamic-ruby-classes4Saving Dynamic Ruby ClassesJosh Moore2009-06-11T23:08:03Z2009-06-12T00:42:02Z
<p>Hi,</p>
<p>I have a curiosity question. If I have a ruby class and then I dynamically add class methods, class variables, etc. to it during execution is there anyway for me to save the altered class definition so that next time I start my application I can use it again?</p>
http://stackoverflow.com/questions/224379/what-does-file-mean-in-ruby7What does __FILE__ mean in Ruby?Josh Moore2008-10-22T03:28:19Z2009-05-21T17:37:55Z
<p>I see this all the time in ruby:</p>
<pre><code>require File.dirname(__FILE__) + "/../../config/environment"
</code></pre>
<p>What I am wondering is what does the __FILE__ mean?</p>
http://stackoverflow.com/questions/261190/conditional-formating-in-rails-partials1conditional formating in rails partialsJosh Moore2008-11-04T07:48:19Z2009-05-12T19:27:13Z
<p>I am rendering a rails partial and I want to alternate the background color when it renders the partial. I know that is not super clear so here is an example of what I want to do:</p>
Row One grey Background
Row Two yellow background
Row Three grey Background
Row Four yellow background
<ul>
<li>sorry stackoverflow seams to prevent the background colors from being shown but I think this makes my idea clear</li>
</ul>
<p>This is the view code that I am using </p>
<pre><code><table>
<%= render :partial => 'row' :collection => @rows %>
</table>
</code></pre>
<p>the _row.html.erb partial looks like this</p>
<pre><code><tr bgcolor="#AAAAAA">
<td><%= row.name %></td>
</tr>
</code></pre>
<p>The problem is I do not know how to change the background color for every other row. Is there away to do this?</p>
http://stackoverflow.com/questions/775976/how-to-create-activerecord-style-validations-outside-of-activerecord0How to create activerecord style validations outside of activerecord?Josh Moore2009-04-22T06:51:00Z2009-04-24T18:08:20Z
<p>Hi, I am working on a testing framework for the software that my company writes. Our product is web based and After I run a RESTful request I want to process the results. I want to be able to have activerecord type validations in each command class so that after it is run the results are automatically tested against all the "validations". However, I am not sure how to do this. My code looks like this (simplified to show the important parts).</p>
<pre><code>class CodesecureCommand
def execute
result = RestClient.post("http://#{codesecure.host_name_port}#{path}", post_data)
return parse(result) #parse simple returns a Hpricot document
end
end
class RunScan < CodesecureCommand
#What I have now
#I have to override the execute function so that it calls the local success method
#to see if it failed or not.
def execute()
result = super()
if success(result)
return true
else
end
end
def success(result)
result.search('div.transaction-message') do |message|
if message.innerHTML.scan(/Configure abuse setting for domain users successfully\./).length == 1
return true
end
end
end
#What I would like is to be able to call execute (without having to override it).
#then after it runs it calls back to this class to check
#if the regex matches the command was successful and returns true
test_success /regex/
#if test_success fails then these are called
#the idea being that I can use the regex to identify errors that happened then
#report them to the user
identify_error /regex/, "message"
identify_error /regex/, "message"
end
end
</code></pre>
<p>What I want is that after the execute method is called the test_success and identify_error are automatically called like the validations in activerecord. Can anybody tell me how to do this? Thanks</p>
http://stackoverflow.com/questions/754494/reading-the-last-n-lines-of-a-file-in-ruby3Reading the last n lines of a file in Ruby?Josh Moore2009-04-16T02:06:02Z2009-04-16T09:44:24Z
<p>I need to read the last 25 lines from a file (for displaying the most recent log entries). Is there anyway in Ruby to start at the end of a file and read it backwards?</p>
http://stackoverflow.com/questions/750930/how-much-code-in-a-rails-view-is-ok4How much code in a rails view is ok?Josh Moore2009-04-15T09:32:03Z2009-04-15T17:04:40Z
<p>I know that it is best to keep code out of the presentation layer. But, I am wondering how much is considered "acceptable". For example I populate an html select box with this line of code. </p>
<pre><code>CodesecureProject.find(:all,:order => 'name').collect {|project| [project.name, project.id] }
</code></pre>
<p>Right now I have this line of code embedded in the form. What I am wondering if the community thinks if this is to much code and it should be first stored in an instance variable on the controller then the variable used in the form.</p>
http://stackoverflow.com/questions/167080/language-agnostic-skills23Language agnostic skillsJosh Moore2008-10-03T14:16:09Z2009-03-14T10:01:12Z
<p>I am trying to diversify my programming knowledge. I learned Java in College and worked with it a little at work. Now I am working with ruby. I am finding that working with different languages can mean very big shifts in my mindset. I have probably spent more time changing my mind set then actually learning the new syntax. What I am wondering is what skills can I learn/develop that will make the transition to different languages easier?</p>
<ul>
<li>Please provide one skill and allow the community to vote which on is best.</li>
</ul>
http://stackoverflow.com/questions/588466/returning-mock-objects-from-factory-girl0Returning mock objects from factory girlJosh Moore2009-02-25T23:50:00Z2009-03-03T09:28:15Z
<p>I am using Mocha and Factory_girl in a JRuby rails application. When I call the factory I would like to return the objects with some mocking already done. Here is a code snippet of what I am trying to do.</p>
<pre><code>Factory.define :tweet_feed_with_tweets, :parent => :tweet_feed do |t|
t.expects(:pull_tweets).returns([Factory.build(:status),Factory.build(:status)])
end
</code></pre>
<p>Because I do not want my unit and functional test to actually pull from the twitter API i want to stub the method so it returns what I want. But, this is not working. The object comes back without any stubbing done. Is there a way to actually have stubbing performed on an object created with factory girl before it gets returned to you?</p>
http://stackoverflow.com/questions/595103/problem-with-non-activerecord-associations-in-factory-girl1Problem with non activerecord associations in factory girlJosh Moore2009-02-27T14:57:20Z2009-02-28T00:43:23Z
<p>I just started to use factory girl to replace fixtures when I am testing. I am working on a twitter client and I am trying to use factory girl to create the twitter objects for testing. When I create them individually it is fine. But, if I try to associate them I get the error below.</p>
<pre><code>Factory.define :status, :class => Twitter::Status, :default_strategy => :build do |t|
t.text 'Test Twitter Status message'
t.association :user, :factory => :twitter_user #this line causes the problems
end
Factory.define :twitter_user, :class => Twitter::User, :default_strategy => :stub do |u|
u.profile_image_url "#{RAILS_ROOT}/public/images/rails.png"
end
</code></pre>
<p>The <code>t.association :user, :factory => :twitter_user</code> causes the problems because when it is there this exception is thrown. Is there anyway to fix this? Or is factory girl just designed for activerecord objects? Thanks</p>
<pre><code> NoMethodError: undefined method `save!' for #<Twitter::User:0x4af3de46>
/usr/local/share/jruby-1.1.6/lib/ruby/gems/1.8/gems/thoughtbot-factory_girl-1.2.0/lib/factory_girl/proxy/create.rb:5:in `result'
/usr/local/share/jruby-1.1.6/lib/ruby/gems/1.8/gems/thoughtbot-factory_girl-1.2.0/lib/factory_girl/factory.rb:293:in `run'
/usr/local/share/jruby-1.1.6/lib/ruby/gems/1.8/gems/thoughtbot-factory_girl-1.2.0/lib/factory_girl/factory.rb:237:in `create'
/usr/local/share/jruby-1.1.6/lib/ruby/gems/1.8/gems/thoughtbot-factory_girl-1.2.0/lib/factory_girl/proxy/build.rb:17:in `associate'
/usr/local/share/jruby-1.1.6/lib/ruby/gems/1.8/gems/thoughtbot-factory_girl-1.2.0/lib/factory_girl/attribute/association.rb:13:in `add_to'
/usr/local/share/jruby-1.1.6/lib/ruby/gems/1.8/gems/thoughtbot-factory_girl-1.2.0/lib/factory_girl/factory.rb:290:in `run'
/usr/local/share/jruby-1.1.6/lib/ruby/gems/1.8/gems/thoughtbot-factory_girl-1.2.0/lib/factory_girl/factory.rb:288:in `each'
/usr/local/share/jruby-1.1.6/lib/ruby/gems/1.8/gems/thoughtbot-factory_girl-1.2.0/lib/factory_girl/factory.rb:288:in `run'
/usr/local/share/jruby-1.1.6/lib/ruby/gems/1.8/gems/thoughtbot-factory_girl-1.2.0/lib/factory_girl/factory.rb:217:in `build'
test/functional/tweet_feeds_controller_test.rb:12:in `test_Display_friends_timeline_for_the_'amber'_user'
/usr/local/share/jruby-1.1.6/lib/ruby/gems/1.8/gems/activesupport-2.2.2/lib/active_support/testing/setup_and_teardown.rb:94:in `run_with_callbacks_and_mocha'
</code></pre>
http://stackoverflow.com/questions/48310/becoming-a-programmer-while-working-in-quality-assurance9Becoming a programmer while working in Quality AssuranceJosh Moore2008-09-07T10:55:48Z2009-02-14T06:24:08Z
<p>Hi All,</p>
<p>I am currently working as a Quality Assurance manager for a software development company. However, I am finding that what I really enjoy is programming. Unfortunately, I feel I do not have enough experience to actually be hired as a programmer. I have the opportunity to do some programming in my job (for example I am writing a system in ruby rails that will execute, record, and display the results of our software's stress tests). In addition, I am trying to improve my programming abilities (for example I new nothing about web development 6 months ago so I started to teach myself rails).</p>
<p>So that is the background now here is my questions: What can I do that <i>I can put on my resume</i> to show my future employer my skills in programming?. </p>
<p>If everybody could please respond with the top/best thing they think I can do that would be great. Then we can all vote on the responses to find the best answer. Thanks for all responses in advance!</p>
<p>Josh</p>
http://stackoverflow.com/questions/449665/using-activerecord-and-rails-to-insert-data-into-postgresql-database-get-this-err2Using ActiveRecord and Rails to insert Data into postgresql database get this error: RuntimeError: ERROR C22003 Minteger oJosh Moore2009-01-16T06:22:41Z2009-01-16T08:17:38Z
<p>I am using Ruby 1.8.6 and rails 2.1.1 (I have tested rails 2.2.2 as well). I have been using Sqlite3 and I recently migrated to Postgresql 8.2.6 for production use. Now this error shows up. The interesting thing is that when I copy the insert statment and use psql to directly insert it into postgres it works fine. I guess the problem is somewhere on the rails level. But, I have no idea what it is. So if anybody knows what the problem is or how to fix it please let me know.</p>
<pre><code>RuntimeError: ERROR C22003 Minteger out of range Fint8.c L1008 Rint84: INSERT INTO "resource_usages" ("measurement_type", "updated_at", "time", "max", "min", "average", "tst_data_id", "created_at") VALUES(E'jmxMemHeapMax', '2009-01-16 12:54:56.600105', 1, 5726666752, 5726666752, 5726666752, 2, '2009-01-16 12:54:56.600105') RETURNING "id"
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/connection_adapters/abstract_adapter.rb:147:in `log'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/connection_adapters/postgresql_adapter.rb:484:in `execute'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/connection_adapters/postgresql_adapter.rb:929:in `select_raw'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/connection_adapters/postgresql_adapter.rb:916:in `select'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/connection_adapters/abstract/database_statements.rb:7:in `select_all_without_query_cache'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/connection_adapters/abstract/query_cache.rb:61:in `select_all'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/connection_adapters/abstract /database_statements.rb:13:in `select_one'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/connection_adapters/abstract /database_statements.rb:19:in `select_value'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/connection_adapters /postgresql_adapter.rb:433:in `insert'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/base.rb:2517:in `create_without_callbacks'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/callbacks.rb:220:in `create_without_timestamps'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/timestamp.rb:29:in `create'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/base.rb:2483:in `create_or_update_without_callbacks'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/callbacks.rb:207:in `create_or_update'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/base.rb:2211:in `save_without_validation'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/validations.rb:911:in `save_without_dirty'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/dirty.rb:75:in `save_without_transactions'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/transactions.rb:106:in `save'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/connection_adapters/abstract/database_statements.rb:66:in `transaction'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/transactions.rb:79:in `transaction'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/transactions.rb:98:in `transaction'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/transactions.rb:106:in `save'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/transactions.rb:118:in `rollback_active_record_state!'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/transactions.rb:106:in `save'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/associations/has_many_association.rb:62:in `insert_record'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/associations/association_collection.rb:102:in `<<'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/associations/association_collection.rb:339:in `add_record_to_target_with_callbacks'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/associations/association_collection.rb:101:in `<<'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/associations/association_collection.rb:99:in `each'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/associations/association_collection.rb:99:in `<<'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/connection_adapters/abstract /database_statements.rb:66:in `transaction'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/transactions.rb:79:in `transaction'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/transactions.rb:98:in `transaction'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/associations/association_collection.rb:98:in `<<'
/srv/www/vhosts/performanceTesting/app/models/tst_data.rb:80:in `add_resource_usage_data'
/srv/www/vhosts/performanceTesting/app/models/tst_data.rb:68:in `each'
/srv/www/vhosts/performanceTesting/app/models/tst_data.rb:68:in `add_resource_usage_data'
/srv/www/vhosts/performanceTesting/app/models/tst_definition.rb:196:in `run'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/associations/association_proxy.rb:173:in `send'
/usr/lib64/ruby/gems/1.8/gems/activerecord-2.1.1/lib/active_record/associations/association_proxy.rb:173:in `method_missing'
/srv/www/vhosts/performanceTesting/app/models/job.rb:54:in `send'
/srv/www/vhosts/performanceTesting/app/models/job.rb:54:in `start'
/srv/www/vhosts/performanceTesting/lib/daemons/queue_runner.rb:34
/srv/www/vhosts/performanceTesting/lib/daemons/queue_runner.rb:29:in `initialize'
/srv/www/vhosts/performanceTesting/lib/daemons/queue_runner.rb:29:in `new'
/srv/www/vhosts/performanceTesting/lib/daemons/queue_runner.rb:29
/usr/lib64/ruby/gems/1.8/gems/activesupport-2.1.1/lib/active_support/dependencies.rb:503:in `load'
/usr/lib64/ruby/gems/1.8/gems/activesupport-2.1.1/lib/active_support/dependencies.rb:503:in `load'
/usr/lib64/ruby/gems/1.8/gems/activesupport-2.1.1/lib/active_support/dependencies.rb:355:in `new_constants_in'
/usr/lib64/ruby/gems/1.8/gems/activesupport-2.1.1/lib/active_support/dependencies.rb:503:in `load'
/usr/lib64/ruby/gems/1.8/gems/daemons-1.0.10/lib/daemons/application.rb:176:in `start_load'
/usr/lib64/ruby/gems/1.8/gems/daemons-1.0.10/lib/daemons/application.rb:257:in `start'
/usr/lib64/ruby/gems/1.8/gems/daemons-1.0.10/lib/daemons/controller.rb:69:in `run'
/usr/lib64/ruby/gems/1.8/gems/daemons-1.0.10/lib/daemons.rb:139:in `run'
/usr/lib64/ruby/gems/1.8/gems/daemons-1.0.10/lib/daemons/cmdline.rb:105:in `call'
/usr/lib64/ruby/gems/1.8/gems/daemons-1.0.10/lib/daemons/cmdline.rb:105:in `catch_exceptions'
/usr/lib64/ruby/gems/1.8/gems/daemons-1.0.10/lib/daemons.rb:138:in `run'
./lib/daemons/queue_runner_ctl:26
</code></pre>
http://stackoverflow.com/questions/390993/uploading-a-file-to-a-website-with-ruby-rails1uploading a file to a website with ruby/railsJosh Moore2008-12-24T07:58:56Z2008-12-25T10:27:06Z
<p>I am building a rails app to test our flagship product (also web based). The problem is that part of the testing requires using the production app's web interface to upload files. So what i need to do is have the rails app upload these files to the production application (not rails). Is there a way to have rails post the file to the production application (like the browser posts the file to the production app)?</p>
http://stackoverflow.com/questions/389028/are-fixtures-loaded-when-using-the-sql-dump-to-create-a-test-database1are fixtures loaded when using the sql dump to create a test databaseJosh Moore2008-12-23T14:42:37Z2008-12-23T16:26:12Z
<p>Because of some non standard table creation options I am forced to use the sql dump instead of the standard schema.rb (i.e. I have uncommented this line in the environment.rb <code>config.active_record.schema_format = :sql</code>). I have noticed that when I use the sql dump that my fixtures do not seem to be loaded into the database. Some data is loaded into it but, I am not sure where it is coming from. Is this normal? and if it is normal can anybody tell me where this other data is coming from?</p>
http://stackoverflow.com/questions/371372/mysql-full-text-search-is-empty0mysql full text search is emptyJosh Moore2008-12-16T14:00:21Z2008-12-19T16:35:19Z
<p>I am using ruby on rails with a MySQL backend. I have a table called notes and here is the migration I use to create it:</p>
<pre><code>def self.up
create_table(:notes, :options => 'ENGINE=MyISAM') do |t|
t.string :title
t.text :body
t.timestamps
end
execute "alter table notes ADD FULLTEXT(title, body)"
end
</code></pre>
<p>I want to do full text searches on the title and body fields. The problem is that the full text searches always come back empty. For example if I add this row into the database: <code>Title: test, Body: test</code>. Then I run this query <code>SELECT * FROM notes WHERE MATCH(title, body) AGAINST('test')</code>. It returns a nil set. Can anybody tell me what I am doing wrong and how to get full text search working?</p>
http://stackoverflow.com/questions/200689/how-do-i-set-the-byte-order-marker-for-unicode-files1How do I set the byte order marker for Unicode files?Josh Moore2008-10-14T10:41:50Z2008-12-16T05:43:35Z
<p>I know this is not a "real" programming question. But, it relates to programming so I am going to set it anyway. I have a program that I need to test that reads the Byte Order Marker of the file to see if it is utf-8 or utf-16. My problem is I cannot find a program/text editor that will allow me to set the byte order marker. Can anybody tell me how to set this in a text file?</p>
http://stackoverflow.com/questions/258128/activerecode-habtm-primary-key-problem0Activerecode HABTM primary key problemJosh Moore2008-11-03T08:28:08Z2008-12-15T16:12:55Z
<p>I have to tables that have a many to many relationship. I have created the correct table codesecure_project_tst_definition and it works. I can join rows together by calling the codesecure_projects << method on a TstDefinition object. The problem is that for some reason active record wants to use Codesecure_project_id as the id value for the codesecure_project_tst_definition table. What am I doing wrong? How do I fix it so that when I call the codesecure_projects << method it does not try to set the id of the codesecure_project_tst_definition table?</p>
<p>I have posted the migrations below</p>
<pre><code>class CreateCodesecureProjects < ActiveRecord::Migration
def self.up
create_table :codesecure_projects do |t|
t.string :name
t.string :lang
t.timestamps
end
end
def self.down
drop_table :codesecure_projects
end
end
class CreateTstDefinitions < ActiveRecord::Migration
def self.up
create_table :tst_definitions do |t|
t.string :test_name
t.timestamps
end
end
def self.down
drop_table :tst_definitions
end
end
class CreateCodesecureProjectsTstDefinitions < ActiveRecord::Migration
def self.up
create_table :codesecure_projects_tst_definitions do |t|
t.references :codesecure_project
t.references :tst_definition
t.timestamps
end
end
def self.down
drop_table :codesecure_projects_tst_definitions
end
end
</code></pre>
<p>The relevant parts of the models: </p>
<pre><code>class TstDefinition < ActiveRecord::Base
has_and_belongs_to_many :codesecure_projects
has_many :tst_datas
class CodesecureProject < ActiveRecord::Base
has_many :input_abstractions
has_and_belongs_to_many :tst_definitions
</code></pre>
http://stackoverflow.com/questions/224845/ruby-daemons-will-not-start0Ruby Daemons will not startJosh Moore2008-10-22T08:20:09Z2008-12-14T06:48:29Z
<p>I am using the ruby daemons gem to create a custom daemon for my rails project. The only problem is that when I try to start the daemons <code>ruby lib/daemons/test_ctl start</code> that it fails and will not start. The log file has this output.</p>
<p># Logfile created on Wed Oct 22 16:14:23 +0000 2008 by /<br />
*** below you find the most recent exception thrown, this will be likely (but not certainly) the exception that made the application exit abnormally ***<br />
# MissingSourceFile: no such file to load -- utf8proc_native<br />
*** below you find all exception objects found in memory, some of them may have been thrown in your application, others may just be in memory because they are standard exceptions ***<br />
# NoMemoryError: failed to allocate memory><br />
# SystemStackError: stack level too deep><br />
# fatal: exception reentered><br />
# LoadError: no such file to load -- daemons><br />
# LoadError: no such file to load -- active_support><br />
# MissingSourceFile: no such file to load -- lib/string><br />
# MissingSourceFile: no such file to load -- utf8proc_native> </p>
<p>It even happens when I generate a daemon (from the rails plugin) and try to run it. Does anybody know how to fix this problem? </p>
http://stackoverflow.com/questions/775976/how-to-create-activerecord-style-validations-outside-of-activerecord/776220#776220Comment by Josh Moore on How to create activerecord style validations outside of activerecord?Josh Moore2009-04-23T04:57:25Z2009-04-23T04:57:25ZThanks for the answer that is what I am looking for thanks. One question, what does it require ActiveSupport? thanks.http://stackoverflow.com/questions/267841/getting-rendered-images-to-the-browsers-in-rails/268036#268036Comment by Josh Moore on Getting rendered images to the browsers in RailsJosh Moore2008-11-06T09:22:18Z2008-11-06T09:22:18ZMatt, how do I reference this file in the view?