trogdoro / xiki

A shell console with GUI features
http://xiki.org
Other
3.76k stars 207 forks source link

Gemspec dependency tweaks #42

Closed mkb closed 11 years ago

mkb commented 11 years ago

Updated RSpec and made it a development dependency instead of full-on dependency.

Added rake to the dev dependencies too since it is necessary to run tests. I only notice this because I normally run Bundler with BUNDLE_DISABLE_SHARED_GEMS: '1' to prevent leakage.

keithtom commented 11 years ago

:+1:

trogdoro commented 11 years ago

For the time being there's no "development" mode for Xiki. It's nice for specs to be available at any time. For example, you can type this and run it (via do+ruby (Ctrl-d Ctrl-r)):

def hey 1 end

hey.should == 2

mkb commented 11 years ago

Ah, OK. I'll undo that part of the change then.

mkb commented 11 years ago

Any further thoughts on this?