search for: zenspid

Displaying 20 results from an estimated 21 matches for "zenspid".

Did you mean: senseid
2006 May 02
2
Autotest doesn''t work on WinXP?
When I try to run autotest (zenspider) (which looks VERY cool), I get this error: (run from within a Rails app directory) C:\ruby_home\analysis>autotest -rails # Testing updated files + c:/ruby/bin/ruby -Ilib:test -e ''["test/unit/user_test.rb", "test/unit/role_test.rb"].each { |f| load f }...
2006 Aug 11
9
I have boosted my productivity !
...a web browser for the first time of my life !! Now, I have reached 51 tests and 140 assertions and everything is smoother and smoother - The fear is gone ! Usage is as simple as : autotest -rails from the root of your app, then write your tests. Be nice with yourself, use zentest : http://www.zenspider.com/ZSS/Products/ZenTest/ And a big thank to the author : Ryan Davis - Can the zen be over his head for the rest of his life :-)) -- Posted via http://www.ruby-forum.com/.
2005 Oct 05
2
Seattle Railers gathering for a beer
This is a general invite to any/all Railers in the Seattle area who want to get together for beer/food. Nothing formal, just a "get to know ya" gathering. Details: Thursday, Oct 13 (next week), 7pm Bellevue Red Robin - *http://tinyurl.com/d678c* -- ~~~~~~~~~~~~~~~~~~~ D''Andrew "Dave" Thompson http://dathompson.blogspot.com
2008 Jan 31
4
RSpec-1.1.3
RSpec-1.1.3 has been released. If you''re using RSpec and autotest, you''ll have to upgrade to RSpec-1.1.3 and ZenTest-3.9.0 at the same time. == Version 1.1.3 Maintenance release. * Tightened up exceptions list in autotest/rails_spec. Closes #264. * Applied patch from Ryan Davis for ZenTest-3.9.0 compatibility * Applied patch from Kero to add step_upcoming to story listeners.
2006 May 23
4
Protecting the source code.
Hello guys. I need an opinion here. I need to make a mid-big size web project. Will be a project that my boss wants to sell, and he don''t think show the source code is a good idea and me neither, I love free software but on this case will be a software made for a company who wants to try to make some money with it. My question is: PHP have things like Zend Guard
2007 Apr 13
21
ZenTest autotest now handles RSpec, yay!
Josh Knowles http://joshknowles.com/ just let me know that ZenTest Autotest 3.50 now handles your RSpec specs. http://blog.zenspider.com/archives/2007/04/zentest_version_350_has_been_released.html That''s a great news. Josh also shared with me a quick hack to make autotest work with only the RSpec plugin installed. Add the following into your ~/.autotest file http://pastie.caboo.se/53535 Autotest.add_hook :initiali...
2006 Mar 17
0
Installed Gems on godaddy.com
...ww.tmtm.org/en/mysql/ruby/> MySQL/Ruby provides the same functions for Ruby programs that the MySQL C API provides for C programs. *PageTemplate 2.1.6* [www] <http://coolnamehere.com/products/pagetemplate> A simple templating system for Web sites. *ParseTree 1.3.7* [www] <http://www.zenspider.com/ZSS/Products/ParseTree/>- depends on RubyInline <http://www.situationman.com/_h_admin_/gems.html#RubyInline>. Extract and enumerate ruby parse trees. Executables are parse_tree_abc, parse_tree_deps, parse_tree_show. *payment 1.0.1* [www] <http://payment.rufy.com/> Payment is...
2006 Jul 10
2
How do I hide source when I distribute rails?
Hello! If I need to distribute rails projects to our customers, and I want to hide source codes, how can I accomplish it? My manager is worried about our competitors stealing our codes. I know this is kinda weird situation because normally you build a web site and sell the service. But we plan to sell the application itself. Thanks. Sam -- Posted via http://www.ruby-forum.com/.
2006 Apr 30
3
Ruby Reference
Hello all, What Ruby reference is everybodies favorite? When I''ve been looking around for documentation I haven''t found any that quite compares to php.net''s and cppreference.com''s function references. I''ve been using the one found on rubycentral, but I think that it is missing quite a bit and doesn''t have very good examples. ri is fine, but
2007 Feb 27
15
Ferret 0.11.1-rc2
Hey guys, Just released Ferret 0.11.1. Hopefully this will fix *most* of the problems people were having. Now that I know gcc hides stack overflows on Ubuntu because -fstack-protector is set, I won''t get caught by that one again. Anyone know any other gotchas I should be aware of on Ubuntu. Please try the new version and let me know if you are still having problems with it. I have until
2006 Mar 14
4
has_one
I''ve got an order model that stores order data. One piece of data is a credit card type, which is a digit 1,2 or 3. I have a cardType model that has an id, shortName and LongName for the credit card merchant (visa, mastercard, amex). I want to be able to say: order.cardType.shortName, but can''t seem to get has_one working. It works with has_many and a finder_sql statement on
2007 May 31
28
Another attempt for a succinct model validation DSL
...d also, a simpler multi-field version: http://pastie.caboo.se/66510 Notice how checking all three sides of each boundary is so simple and succinct that there is almost no excuse not to do so. Also, after noticing how similar the multi-field validation is to a fit-table or some of Brian Marick and zenspider''s recent blog entries, I decided that further simplification was necessary/desirable. :-) Consider this my request for comments on the syntax. Hopefully I''ll have time to put my code where my mouth is and create a rspec extension to do this in the near future. :-) -- Nick
2006 Feb 21
11
helper for models?
Is there such a thing? I have some duplicate methods in my models, can I place them somewhere and call them in to my models, thus keeping DRY? -- Posted via http://www.ruby-forum.com/.
2009 Mar 11
0
problem scrapping ATnT site (Matt White)
...aging Program. > > > > ------------------------------ > > Message: 5 > Date: Thu, 5 Mar 2009 09:54:43 -0800 > From: Aaron Patterson <aaron at tenderlovemaking.com> > Subject: [Mechanize-users] [ANN] mechanize 0.9.2 Released > To: Seattle Ruby Brigade! <ruby at zenspider.com>, > ruby-talk at ruby-lang.org, mechanize-users at rubyforge.org > Message-ID: <20090305175443.GA5166 at Jordan2.local> > Content-Type: text/plain; charset=us-ascii > > mechanize version 0.9.2 has been released! > > * <http://mechanize.rubyforge....
2007 Sep 02
17
A Proposal To Magically Remove ''params''
...roller def show(id) # GET /products/show?id=12 @product = Product.find(id) render end def index(page = 1) # GET /products?page=2 @products = Product.paginate_all(page) render end end Getting a parameter list for a method is rather difficult, but using zenspider''s ParseTree, it is possible. (Attached is a proof of concept. It is also viewable at http://pastie.caboo.se/93218 ) ParseTree is slow, but it only needs to be run once at load - we can cache the argument lists for each method. It is extremely magical, but the magic is limited in scope...
2006 Feb 14
22
Teaching Models to Render Themselves in the Controller
I am trying to teach my models how to render themselves, i.e. <%= my_model_object.render() %> Let me explain my reasoning and proposed method before this gets shot down as anti-MVC. Let''s say I am writing a contact-management application. I have a class Contact. I will need to display this class all over the application. My first choice is to use a partial. Now I can
2006 Aug 03
30
How to protect your code? Obfuscater?
I just made a rails application that I plan to sell and dsitribute. I want to distribute it without having to worry about someone stealing the code and selling their own version. How do I do this? Is there a ruby obfuscator or anything that can keep someone from seeing the code? Thanks for your help. -- Posted via http://www.ruby-forum.com/.
2008 Jan 23
13
DRYing up stories
I''m finding that I''m writing sets of very similar scenarios to check access permissions for each of my actions. Does anyone have suggestions on how to dry this up: Given an existing Account And a logged in Admin When the user visits account/manage Then he should get access Given an existing Account And a logged in Manager When the user visits account/manage Then he should get
2006 May 27
29
deploying R_o_R to local servers
Hi! I''m pretty amazed by the features of RoR so far. But, as I come from the desktop application development, my clients expect to run the magic on their domain rather on a foreign one. Also I feel uncomfortable giving away my RoR code to some hosting company, because I''m planning to do a large application. As I understand, RoR is designed to run on central web-servers and not
2007 Dec 11
54
1.9
Hey so, People are asking about Mongrel Ruby 1.9 compatibility. Isn''t the point of 1.9 for library developers to have time to get ready for 2.0? It''s not like 1.9 is a production release. Evan -- Evan Weaver Cloudburst, LLC