Displaying 20 results from an estimated 10000 matches similar to: "Coffeebeans - smart to use?"
2012 Oct 24
0
RoR Developer (Full Time, Salary)
We are an established and profitable technology company, making software
in the fast-growing medical marijuana industry. Although it would help,
you do not need to be involved in the medical marijuana industry to
apply. We work out of an office near the Denver Tech Center (Hampden &
Yosemite). Day to day, we use Rails 3.2, Ruby 1.9.3/1.9.2, JavaScript
(CoffeeScript), MySQL, and Git (Github).
2011 Jul 23
6
Rails 3.1 CoffeeScript not working
I convert my old JS files into CoffeeScript, In my public controller I
used this functions
$(''#events a'').lightBox()
$(document).ready ->
$("#slider").easySlider
auto: true,
continuous: true
they load inside application.js like this
(function() {
$(''#events a'').lightBox();
$(document).ready(function() {
2014 Apr 14
0
Foundation & Authlogic
Seems I can get either Foundation or Authlogic to work but not both -
After bundle install when I do a rails g foundation:install I get the
following:
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-4.1.0/lib/acti
ve_record/dynamic_matchers.rb:26:in `method_missing': undefined local
variable o
r method `inheritable_attributes' for ActiveRecord::Base:Class
(NameError)
2011 May 06
2
Rails 3.1(beta1) + SASS + variables
Hello all,
in Rails 3.1, is it possible to define global SASS variables (and mixins)
that are shared across all *.css.scss files?
I am able to define SASS variables, yet they seemed to be scoped only within
each individual file …
On a side note -- is there a way to pass variables from my Rails app to the
SASS + JS (or CoffeeScript) files?
Thanks for your help.
Best,
Tomas
--
You received
2013 Jan 22
1
rails datatables refresh javascript
Hi
I followed a railscast episode and got datatables up and running,
beautifully along with the nice jquery-ui as in the front page.
The main issue I''m having though is that I suck at CoffeeScript/JS ~_~
I''m trying get the datatables to reload every 1 second but I don’t see any
request coming into my webserver for refreshes and hence, no refreshes on
the web page itself.
2014 Feb 27
0
[JOBS] Calling out smart and young entrepreneurial RoR devs to join Stylopa
Hey folks,
Stylopa is a young startup based in Mumbai. We're open to internships and
full time positions. So, please reach out to us at careers-CizJ0UCmWANBDgjK7y7TUQ@public.gmane.org with
your resume and github/website links. Below is the profile (
https://hasjob.co/view/c2svz)
*We?*
Stylopa - Everyone's personal stylist. (http://bit.ly/1hLKoaZ<http://www.stylopa.com/>
)
2012 Apr 09
0
Autocomplete text-field version of dynamic select menu?
I have a form for submission of brand, model, and style. Style
belongs_to model, and model belongs_to brand. The form is actually a
style submission form, but allows users to create new brands or models
as well, should they not exist.
What I want is for the autocomplete for ''model'' to populate when an
object for ''brand'' is selected in the first text field..
2011 Aug 02
1
Rails 3.1 jasmine testing
Anybody know what to put in the jasmine.yml to desginate where jasmine
should look for the files?
I am using jasmine-headless-webkit so I can write CoffeeScript (and run the
tests in the cli), and my test work fine written in it, though when I put
app/assets/javascripts/**/*.js.coffee in the jasmine.yml, I keep getting
ReferenceErrors.
--
You received this message because you are subscribed
2012 May 07
1
Sprockets, JST, Eco and escaping
While it was a good move from Rails part to escape ERB <%= %> tags by
default, it doesn''t seem to happen to Sprockets as well.
The strange bit is that according to Sprockets documentation, it would
be just a matter of naming your template as .jst.eco to enable Eco:
https://github.com/sstephenson/sprockets#javascript-templating-with-ejs-and-eco
Then, extracted from Eco
2012 Sep 20
7
jQueryUI autocomplete (Rails 3.1): can't get source as url to work
Hey,
I''m able to duplicate everything in Ryan Bates'' screencast on jQueryUI
autocomplete (#102<http://railscasts.com/episodes/102-auto-complete-association-revised>),
except for the piece that calls the server for completion data.
Here is my view html:
<input data-autocomplete-source="/searches" id="search-markets"
2009 May 27
1
[PATCH server] Bug 478729 - Cannot add vm to smart pool after select one vm
There were two javascript functions with the same name, and the wrong one was being called. I renamed one to avoid conflicts.
Signed-off-by: Scott Seago <sseago at redhat.com>
---
src/app/views/vm/add_to_smart_pool.rhtml | 3 ++-
src/public/javascripts/ovirt.js | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/app/views/vm/add_to_smart_pool.rhtml
2011 Jun 04
2
Weird paramterized issue
Im using a parameterized class in my site.pp:
class development($user) {
class{"basenode": user => $user}
class{"nodejs": user => $user}
include "coffeescript"
include "ruby"
}
This class defines nodejs class that epects a user as input:
class nodejs($user) {
class {"nodejs::npm": user => $user}
$node_ver =
2012 Apr 17
0
[JOB] Director of Technology - Full Time - Boston, MA
CareerEncore (www.careerencore.com) has been exclusively engaged to
help our client, a Boston VC backed start-up, to conduct a search for
a Director of Technology. This is a unique opportunity for a RoR
Developer to step into a hands-on leadership role. The envisioned
hire is currently a Senior Engineer who is looking to make the jump
into a hands-on leadership role. Our client is only
2007 May 14
2
Monit apache2 and fastcgi
I''ve installed monit to stop my server hanging (don''t know why, it''s
an dual-core processor and 2gb memory, wich should be plenty for our
needs).
I should like to also monitor the fastcgi processes, but I can''t find
any pidfile. How can I monitor that?
- Henrik
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are
2014 Apr 23
0
Select fields, Coffeescript and Cocoon
Hello,
I have select field which after a choice happened, feeds another select
field.
Using the gem Cocoon to duplicate this set of select fields.
My problem now is to find a solution that the coffee script supplies values
for each select field-set separately.
My code:
form
<%= render 'usergroup_fields', :f => usergroup %>
<%= link_to_add_association "Add
2011 Aug 21
0
creating rubygem from assets
I have a few coffeescript and sass files. I want to create a rubygem so I
can easily use these files in every project.
How can I do this? Where I must put these files in my gem folder?
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To view this discussion on the web visit
2012 Jun 19
0
passing data
Hello.
I need some help with this:
I have a link to open a modal window:
<%= link_to instruct.instruction.name, "#myModal", :data => {:toggle =>
"modal", :id => instruct.id}, :class=> "openModal"%>
and a coffeescript
$(".modal-body #result").html $(this).data("id")
Shows me the result in the html: <span
2011 Aug 11
0
Call for speakers DevDays 2011 Sydney
DevDays Sydney - the Stack Overflow sponsored conference is near
approaching http://devdays.stackoverflow.com/sydney/
The idea behind DevDays is a fast, high-bandwidth, fire hose tutorial
on at least ten interesting concepts. You can read more about it here:
http://blog.stackoverflow.com/2011/06/devdays-is-back/
We have already picked quite a few interesting talks but have a few
slots left open!
2013 Feb 19
0
knitr version 1.1
Hi,
I released knitr 1.1 to CRAN a few days ago:
http://cran.r-project.org/package=knitr See all new features and
changes at https://github.com/yihui/knitr/blob/master/NEWS.md#changes-in-knitr-version-11
The version 1.0 does not imply perfect stability or maturity. The
major version number was bumped from 0.x to 1.x due to a number of
important features and the breaking of compatibility with
2013 Feb 19
0
knitr version 1.1
Hi,
I released knitr 1.1 to CRAN a few days ago:
http://cran.r-project.org/package=knitr See all new features and
changes at https://github.com/yihui/knitr/blob/master/NEWS.md#changes-in-knitr-version-11
The version 1.0 does not imply perfect stability or maturity. The
major version number was bumped from 0.x to 1.x due to a number of
important features and the breaking of compatibility with