Commit 8795f67f47880f4ac4c88b627c22f1861cda2bc0

Authored by randx
1 parent a1ba470e

REmoved autotest, added notify libs for growl

Showing 2 changed files with 21 additions and 9 deletions   Show diff stats
Gemfile
1 1 source "http://rubygems.org"
2 2  
  3 +def darwin_only(require_as)
  4 + RUBY_PLATFORM.include?('darwin') && require_as
  5 +end
  6 +
  7 +def linux_only(require_as)
  8 + RUBY_PLATFORM.include?('linux') && require_as
  9 +end
  10 +
3 11 gem "rails", "3.2.8"
4 12  
5 13 # Supported DBs
... ... @@ -102,16 +110,20 @@ group :development, :test do
102 110 gem "capybara"
103 111 gem "capybara-webkit"
104 112 gem "headless"
105   - gem "autotest"
106   - gem "autotest-rails"
107 113 gem "pry"
108 114 gem "awesome_print"
109 115 gem "database_cleaner"
110 116 gem "launchy"
111 117 gem 'factory_girl_rails'
112 118  
  119 + # Guard
113 120 gem 'guard-rspec'
114 121 gem 'guard-cucumber'
  122 +
  123 + # Notification
  124 + gem 'rb-fsevent', :require => darwin_only('growl')
  125 + gem 'growl', :require => darwin_only('growl')
  126 + gem 'rb-inotify', :require => linux_only('rb-fsevent')
115 127 end
116 128  
117 129 group :test do
... ...
Gemfile.lock
... ... @@ -68,7 +68,6 @@ GIT
68 68 GEM
69 69 remote: http://rubygems.org/
70 70 specs:
71   - ZenTest (4.8.1)
72 71 actionmailer (3.2.8)
73 72 actionpack (= 3.2.8)
74 73 mail (~> 2.4.4)
... ... @@ -100,10 +99,6 @@ GEM
100 99 rails (~> 3.0)
101 100 addressable (2.2.8)
102 101 arel (3.0.2)
103   - autotest (4.4.6)
104   - ZenTest (>= 4.4.1)
105   - autotest-rails (4.1.2)
106   - ZenTest (~> 4.5)
107 102 awesome_print (1.0.2)
108 103 bcrypt-ruby (3.0.1)
109 104 blankslate (2.1.2.4)
... ... @@ -186,6 +181,7 @@ GEM
186 181 multi_xml
187 182 rack
188 183 rack-mount
  184 + growl (1.0.3)
189 185 guard (1.3.2)
190 186 listen (>= 0.4.2)
191 187 thor (>= 0.14.6)
... ... @@ -283,6 +279,9 @@ GEM
283 279 raindrops (0.9.0)
284 280 rake (0.9.2.2)
285 281 raphael-rails (1.5.2)
  282 + rb-fsevent (0.9.1)
  283 + rb-inotify (0.8.8)
  284 + ffi (>= 0.5.0)
286 285 rdoc (3.12)
287 286 json (~> 1.4)
288 287 redcarpet (2.1.1)
... ... @@ -386,8 +385,6 @@ PLATFORMS
386 385 DEPENDENCIES
387 386 acts-as-taggable-on (= 2.3.1)
388 387 annotate!
389   - autotest
390   - autotest-rails
391 388 awesome_print
392 389 bootstrap-sass (= 2.0.4)
393 390 capybara
... ... @@ -412,6 +409,7 @@ DEPENDENCIES
412 409 grack!
413 410 grape (~> 0.2.1)
414 411 grit!
  412 + growl
415 413 guard-cucumber
416 414 guard-rspec
417 415 haml-rails
... ... @@ -431,6 +429,8 @@ DEPENDENCIES
431 429 rack-mini-profiler
432 430 rails (= 3.2.8)
433 431 raphael-rails (= 1.5.2)
  432 + rb-fsevent
  433 + rb-inotify
434 434 redcarpet (~> 2.1.1)
435 435 resque (~> 1.20.0)
436 436 resque_mailer
... ...