search for: capfile

Displaying 10 results from an estimated 10 matches for "capfile".

Did you mean: cafile
2008 Jan 11
5
changes in rspec''s trunk and autotest
This applies to anyone using rspec''s trunk from >= 3220 with ZenTest <= 3.7.2. Anyone else, feel free to move on.... The next release of ZenTest, coming soon, includes some changes that improve the relationship between Autotest, it''s subclasses (like those in rspec) and .autotest, the file that you can use to plug into autotest''s hooks to extend/modify
2006 Mar 06
46
Capistrano 1.1
...on. If you want it to be less verbose, you can specify the -v or -vv flags explicitly. * The cap utility uses more rake-like command-line semantics. Instead of needing to do "cap -r config/deploy -a deploy", you can just do "cap deploy". It will look for config/deploy.rb, capfile, or Capfile automatically, and will treat raw parameters as action names. Upgrading/switching from SwitchTower to Capistrano is a little inconvenient. Here''s what you''ll need to do: * gem uninstall switchtower (remove all versions) * gem install capistrano * For each of your...
2007 Sep 22
3
merb_sequel raketasks not working?
I''m trying to run on trunk. When I run "rake -T" I get an error: undefined local variable or method `full_config'' for Merb::Orms::Sequel:Module I''m not 100% sure that I haven''t messed something up, so I hesitate to cry "bug" without checking with everyone. Is anyone else seeing this? P.S. I''m running merb trunk installed as a gem,
2009 Apr 07
5
mongrel server core dump on Sun Solaris
...i86pc # pwd /opt/coolstack/apache2/htdocs/Jtooltest # ls -al total 78234 drwxr-xr-x 14 root root 512 Apr 6 18:48 . drwxr-xr-x 9 root root 512 Apr 7 04:55 .. drwxr-xr-x 7 root root 512 Apr 6 18:40 app -rw-r--r-- 1 root root 153 Apr 6 18:41 Capfile drwxr-xr-x 5 root root 512 Apr 6 18:41 config -rw------- 1 root root 39992793 Apr 6 18:48 core drwxr-xr-x 4 root root 512 Apr 6 18:40 db drwxr-xr-x 3 root root 512 Apr 6 18:41 doc drwxr-xr-x 4 root root 512 Apr 6 18:41 lib -rw-r...
2011 Nov 09
4
Starting out with puppet and capistrano
Hey guys. I am starting out with puppet and am in the process of writing a bootstrap script for the clients and a capistrano recipe for the server. I have the client bootstrap done which installs ruby, puppet, sets a host name, and then points the client at the puppet server and now I am in the process of setting up the puppet server. My first attempt was to set up a git project for puppet, an
2012 Aug 29
7
custom js in rails project
Hello, I have a rails project with one controller and one action, as simple as posible. And I''m trying to put some custom css and js to my own index.html.erb (not public/index.html.erb), I inluded this on the layout file: layout file: <!DOCTYPE html> <html> <head> <title>Volei</title> <%= stylesheet_link_tag "application", :media =>
2013 Mar 06
0
CSS not compiling in server
Hello everyone, I am using rails 3.2.8 In local my site working well with css file. But In staging my css file not getting compiling but my js and images are compiling but not css. and I am just importing css file in application.css In my Capfile, i having following code, load ''deploy'' load ''deploy/assets'' I don''t know why. Any idea? Please advise! -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this g...
2011 Dec 26
1
Learning Ruby on Rails 3.1 - deployment - Error (cs.jpg isn't precompiled)
Hi guys, I''ve followed the Agile Web Development with Rails book and I''m up to deployment. I started a Ubuntu 10.1 LTS server on Amazon EC2 for testing, got Apache 2, mysql, rvm, ruby 1.9.2, rails 3.1 and phusion passenger up and running as per the book. When I come to running the actual site, it says "We''re sorry, but something went wrong." In
2011 Aug 31
4
Issue with asset pipeline helper with Rails 3.1 final release.
Hi, I''ve just updated my app to the final 3.1 release and deployed it to the staging server after running tests but there is a problem with the precompiled assets. The precompiled assets are all in the public directory, like they were before, Capistrano doesn''t throw any error and running `rake assets:precompile` in the current directory work as expected. But the asset
2011 Sep 18
12
3.1 asset pipeline + Capistrano troubles
...re are: app/assets/stylesheets/application.css.scss # Contains ''require_self'' and ''require_tree .'' as usual vendor/assets/stylesheets/bootstrap.css I''m using Capistrano''s asset pipeline support (load ''deploy/assets'') in my Capfile. When I''m deploying the app using `cap deploy` it''s precompiling the assets correctly and copying them into the shared/assets directory for the app on the server. The problem seems to be that the bootstrap.css file is plain old CSS so it doesn''t get compiled (obviousl...