twingly / twingly-amqp

:bus: Ruby gem for RabbitMQ subscribing and publishing
0 stars 0 forks source link

Split specs into integration and unit directories #38

Closed dentarg closed 8 years ago

dentarg commented 8 years ago

Makes it eaiser to understand what is going on.

jage commented 8 years ago

LGTM except that we don't describe our spec tasks:

$ rake -T
rake build    # Build twingly-amqp-4.1.0.gem into the pkg directory
rake install  # Build and install twingly-amqp-4.1.0.gem into system gems
rake release  # Create tag v4.1.0 and build and push twingly-amqp-4.1.0.gem to Rubygems

:+1:

dentarg commented 8 years ago

we don't describe our spec tasks

We use RSpec::Core::RakeTask to create the tasks, and I have actually looked at setting the description before, but IIRC it isn't possible.

dentarg commented 8 years ago

We use RSpec::Core::RakeTask to create the tasks, and I have actually looked at setting the description before, but IIRC it isn't possible.

Oops :) You just use desc as usually

I can fix.