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