Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
496 views

Control statements in Haskell?

I am just beginning Haskell, but from all the online tutorials I've found I can't seem to find if there is one accepted way to do a conditional control statement. I have seen if-else, guards, and ...
8
votes
2answers
260 views

guard desugaring

I often hear the phrase, guards are just syntactic sugar for if-then-else (or case statements). Can somebody please desugar the following instance: halfOf :: Int -> Int halfOf x | even x = div x ...
7
votes
3answers
157 views

Why do non-exhaustive guards cause irrefutable pattern match to fail?

I have this function in Haskell: test :: (Eq a) => a -> a -> Maybe a test a b | a == b = Just a test _ _ = Nothing This is what I got when I tried the function with different inputs: ...
7
votes
3answers
870 views

Where can I find a good Scope Guard implementation for my C++ projects?

I just recently learned about Scope Guard C++ idiom. Unfortunately I can't find any good implementation of it. Can anyone point me to some good and usable Scope Guard implementation in C++? Thanks, ...
7
votes
3answers
257 views

Why is “when” used in this function?

There is this index function in "Erlang Programming": index(0, [X|_]) -> X; index(N, [_|Xs]) when N>0 -> index(N-1, Xs) Isn't the guard "when N>0" superfluous because of the pattern ...
6
votes
5answers
277 views

Is it better to use guards than patterns for recursion functions in Haskell?

I'm just wondering about a recursion function I'm laying out in Haskell. Is it generally better to use guards than patterns for recursion functions? I'm just not sure on what the best layout is but ...
6
votes
2answers
178 views

Can a custom guard mechanism be defined in Haskell?

If you look at the example for catches: f = expr `catches` [Handler (\ (ex :: ArithException) -> handleArith ex), Handler (\ (ex :: IOException) -> handleIO ex)] ...
5
votes
2answers
512 views

Bundler error on deployment

I'm currently using guard i.e. guard-coffeescript gem to compile my javascript (and in the future I'll probably add some more guard tasks) on my OSX dev system. I added the rb-fsevent gem to my ...
5
votes
4answers
456 views

What is the difference between Pattern Matching and Guards?

I am very new to Haskell and to functional programming in general. My question is pretty basic. What is the difference between Pattern Matching and Guards? Function using pattern matching check :: ...
5
votes
5answers
2k views

.NET Guard Class Library?

I'm looking for a library or source code that provides guard methods such as checking for null arguments. Obviously this is rather simple to build, but I'm wondering if there are any out there for ...
4
votes
2answers
265 views

Rails 3.1.1 Guard-rspec cannot run due to Growl errors: OSERROR: -10000 MESSAGE: Apple event handler failed

I have been running Guard for RSPEC and using the growl_notify gem for a while now (2-3 months), but now I cannot get guard to run in any of my Rails 3.1.1 projects. I've done some research on the ...
4
votes
1answer
543 views

Guardfile for running single cucumber feature in subdirectory?

I have my features organized in subfolders, like this: app/ features/ users/ feature1.feature feature2.feature But everytime I save a feature, Guard runs all my features (not ...
4
votes
2answers
368 views

MonadPlus definition for Haskell IO

I was just writing a quick bit of code, and I wanted to use the guard function in the IO Monad. However, there is no definition of MonadPlus for IO which means that we cannot use guard in IO land. I ...
3
votes
1answer
63 views

Why is running Guard outside of bundler dangerous?

When I run bundle exec guard everything is kosher, but if I try to run guard I get this: WARNING: You are using Guard outside of Bundler, this is dangerous and could not work. Using `bundle exec ...
3
votes
2answers
267 views

Unable to run growl notifications and gem growl_notify throws errors

I am unable to get growl notifications when i run $guard Do i need any particular version for growl_notify? Growl version = 1.2 Here is my gem file. gem 'rails', '3.1.3' gem 'sqlite3' group ...
3
votes
1answer
318 views

Problems with Guard, Spork, Rspec & Rails 3

I've followed the spork railscast video and it gives me the following error when I try to run guard: Guard is now watching at '/Users/m/work/' Starting Spork for Test::Unit & RSpec Couldn't find ...
3
votes
4answers
118 views

Automatic git commit between Red, Green and Refactor steps?

I'm always interested in trying new things with my workflow, and I thought it might be an interesting experiment to automatically commit between red, green and refactor steps, but then manually squash ...
3
votes
3answers
157 views

Checking for membership in an Erlang guard

What is the simplest way to write an if statement in Erlang, where a part of the guard is member(E, L), i.e., testing if E is a member of the list L? The naive approach is: if ... andalso ...
3
votes
1answer
364 views

Can't get Growl notifications working with growl-rspec gem

I have the "guard-rspec" gem installed in my gemfile: group :development do gem "guard-rspec" gem "growl" end When I run guard, it executes my rspec unit tests and outputs this message at the ...
3
votes
6answers
278 views

Haskell - The Craft of Functional Programming (exercise 4.3)

I have the following question (Haskell - The Craft of Functional Programming): Give a definition of the function howManyEqua1 :: Int -> Int -> Int -> Int which returns how many of ...
3
votes
3answers
253 views

Shall I use guard clause, and try to avoid else clause?

I've read (e.g. from Martin Fowler) that we should use guard clause instead of single return in a (short) method in OOP. I've also read (from somewhere I don't remember) that else clause should be ...
3
votes
4answers
368 views

In Haskell, is there a way to do IO in a function guard?

For example: newfile :: FilePath -> IO Bool newfile x | length x <= 0 = return False | doesFileExist x == True = return False | otherwise = return True Can this be made to ...
2
votes
0answers
64 views

guard-process optipng watch folder for new images

Hi guys can't get my guard-process right, i'm trying to watch a folder for new images and then use optipng to compress them and another command to move them. # Compress png guard 'process', :name ...
2
votes
1answer
221 views

Guard crashing Spork when using guard-spork

I've followd the "How I Test" screencast at RailsCasts, however I ran into a problem with spork $ guard Guard is now watching at '/Users/darth/projects/auth-before' Starting Spork for Test::Unit ...
2
votes
1answer
241 views

Xcode 4: Can't use Enable Guard Malloc due to dylib error for iPad simulator

In Xcode 4.x I've edited my Run scheme to 'Enable Guard Malloc' since I have a nondescript malloc error I need to track down. I'm aware I need to run in the simulator to use this feature. However, ...
2
votes
2answers
248 views

Guard + cucumber => custom guard file

I'm trying to correctly setup my guard file in order to normally only run cucumber features that are in progress. Then, once they have completed, I want to run all of my features (manually). I have ...
2
votes
1answer
93 views

Is there a way to automatically have a “rake db:migrate RAILS_ENV=test” after “rake db:migrate” in development environment?

Is there a way to automatically do a rake db:migrate RAILS_ENV=test after each rake db:migrate when in development environment? I have guard and guard-rspec running, and I am really annoyed about the ...
2
votes
2answers
148 views

How to make Spork load locales and factories?

So on a Rails 3.0.9 app I'm using Spork/Guard/RSpec/FactoryGirl on 1.9.2. I would like to know how can I get Spork/Guard to automatically update my factories and locales.
2
votes
4answers
172 views

How do I return the middle number in Haskell

I have the following beginning of a function, and am unsure as to how I should return Middle Number (i.e. the number that is neither the largest nor smallest): middleNumber :: Int -> Int -> Int ...
2
votes
3answers
525 views

Guard Malloc found EXC_BAD_ACCESS error instantly. Why not use all the time?

I have been debugging the infamous EXC_BAD_ACCESS error for a few days now. NSZombieEnabled = YES did not offer anything. The call stack was different everytime I received the error, which was once ...
2
votes
1answer
381 views

How do I ruby-debug in a spec or feature if I am using Guard and Spork?

I managed to get Cucumber, RSpec, Guard, and Spork play nicely with each other in a Rails 3 app, but now I am stuck with the above problem. Currently I require 'spork/ext/ruby-debug' in the prefork ...
2
votes
5answers
409 views

C++ - header guards

At: http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/ Under Header guards, there are those code snippets: add.h: #include "mymath.h" int add(int x, int y); subtract.h: ...
2
votes
2answers
181 views

Haskell guards not being met

test :: [String] -> [String] test = foldr step [] where step x ys | elem x ys = x : ys | otherwise = ys I am trying to build a new list consisting of all the distinct ...
2
votes
7answers
280 views

Scope Guard in C

I would like to use scope guard in C in order to do profiling. I would like to know how much time I spend in a function. Here is what I do: int function() { tic(); ... do stuff ... if ...
2
votes
3answers
238 views

What are guard methods/classes?

i just noticed the guard method/class mentioned in this question and i don't really get the concept from the answers. And alas, Jon Skeet's link to an MS site never loaded. A few quick Google searches ...
2
votes
8answers
366 views

Function Call Guard

Suppose I have a free function called InitFoo. I'd like to protect this function from being called multiple times by accident. Without much thought I wrote the following: void InitFoo() { { ...
1
vote
0answers
97 views

How to use Rspec + Guard+Glow+Spork on multiple test folder(spec and capybara)

I am trying to set up Rspec + guard+glow+spork on my ruby on rails testing on mac. They works just fine on my 'spec' directory. But I have a different folder with separated helper to store capybara ...
1
vote
1answer
181 views

Rails, Spork and debugger

I use spork with Guard + Rspec but the debugger doesn't work as expected: I added require 'spork/ext/ruby-debug' just after the require 'spork' it properly stops on debugger breakpoints... ... but I ...
1
vote
2answers
220 views

Growl with guard and spork fails silently on OS 10.6.6

I get no Growl notifications when tests pass or fail. I've gone through all the setup guides I can find. Details I run guard and it starts Spork fine: Using RSpec Preloading Rails environment ...
1
vote
0answers
18 views

How do I make guard gem fail non-fatally from a syntax error?

Rails 3.1, guard 0.8.8, Fedora 13 I have guard configured to watch changes to the jquery templates and recompile javascript assets using sprockets. Whenever I work on the templates and generate a ...
1
vote
0answers
56 views

Specs Pass when run directly, but crash when run in Guard

I have a strange situation I can't quite understand. When I run my specs with rspec spec they all pass. However, as of today, when I run guard and it calls the specs, it crashes with the following ...
1
vote
2answers
98 views

guard gem run all triggers on start

Hi this is driving me crazy. I couldn't find a solution after a long time. How do I trigger a "run_all" for all guards in the Guardfile. When i run "guard" in the shell, I want it to sort off ...
1
vote
2answers
275 views

Guard doesn't see file updates

I'm developing a custom engine using this setup. I've created the engine with rails plugin new MyEngine --full Then I've added rspec-rails and guard-rspec as development dependencies with ...
1
vote
1answer
317 views

Compare Pros and Cons of Autofeature/autotest vs Guard?

Does anyone have any concrete reasoning for using one autotesting runner over another? I've used both Autofeature+autotest, I really like the built-in process that this sets up in that it runs my ...
1
vote
2answers
269 views

Haskell - wildcard use on right side of guard in patterns

Lets say i have a piece of code like this: test pattern | pattern == (_,NOT (WIRE _)) = 1 | pattern == (_,AND (WIRE _) (WIRE _)) = 2 | otherwise = 0 Where i am trying to match it against ...
1
vote
1answer
416 views

enabling guard malloc for Iphone device or for store kit api?

I am using store kit api for an application on iphone. I would like to know if it is possible to enable Malloc Guard while running on the device and see if there are any memory leaks. Could someone ...
0
votes
1answer
28 views

ruby on rails: Spork and Guard: no reaction

I followed the rails tutorial to install Spork and Guard: http://ruby.railstutorial.org/chapters/static-pages?version=3.2#sec:first_tests Guard and Spork work when started separately, but when using ...
0
votes
0answers
35 views

How to get my guard/rspec test to run faster

I am running the following gems in a rails 3.1 app ontop of ruby 1.9.2: group :test, :development do gem 'turn', '<0.8.3' gem 'rspec-rails' gem 'capybara' gem 'guard-rspec' gem 'minitest' gem ...
0
votes
0answers
31 views

Guard w/ RSpec2, Ruby1.9.3, Rails 3.1.3

I am running Guard successfully with notifications provided by Libnotify. funkdified@funkdified-laptop:~/railsprojects/sample_app$ guard Guard uses Libnotify to send notifications. Guard is now ...
0
votes
2answers
82 views

How do i get my console to display test results in color(red/green)

Im building a ruby on rails aplication, and trying to get my TDD on. I have the following gems installed under my testing environment. turn <0.8.3 rspec-rails capybara guard-rspec minitest ...

1 2