REmoved autotest, added notify libs for growl
This commit is contained in:
parent
a1ba470e4e
commit
8795f67f47
2 changed files with 21 additions and 9 deletions
16
Gemfile
16
Gemfile
|
@ -1,5 +1,13 @@
|
||||||
source "http://rubygems.org"
|
source "http://rubygems.org"
|
||||||
|
|
||||||
|
def darwin_only(require_as)
|
||||||
|
RUBY_PLATFORM.include?('darwin') && require_as
|
||||||
|
end
|
||||||
|
|
||||||
|
def linux_only(require_as)
|
||||||
|
RUBY_PLATFORM.include?('linux') && require_as
|
||||||
|
end
|
||||||
|
|
||||||
gem "rails", "3.2.8"
|
gem "rails", "3.2.8"
|
||||||
|
|
||||||
# Supported DBs
|
# Supported DBs
|
||||||
|
@ -102,16 +110,20 @@ group :development, :test do
|
||||||
gem "capybara"
|
gem "capybara"
|
||||||
gem "capybara-webkit"
|
gem "capybara-webkit"
|
||||||
gem "headless"
|
gem "headless"
|
||||||
gem "autotest"
|
|
||||||
gem "autotest-rails"
|
|
||||||
gem "pry"
|
gem "pry"
|
||||||
gem "awesome_print"
|
gem "awesome_print"
|
||||||
gem "database_cleaner"
|
gem "database_cleaner"
|
||||||
gem "launchy"
|
gem "launchy"
|
||||||
gem 'factory_girl_rails'
|
gem 'factory_girl_rails'
|
||||||
|
|
||||||
|
# Guard
|
||||||
gem 'guard-rspec'
|
gem 'guard-rspec'
|
||||||
gem 'guard-cucumber'
|
gem 'guard-cucumber'
|
||||||
|
|
||||||
|
# Notification
|
||||||
|
gem 'rb-fsevent', :require => darwin_only('growl')
|
||||||
|
gem 'growl', :require => darwin_only('growl')
|
||||||
|
gem 'rb-inotify', :require => linux_only('rb-fsevent')
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
|
|
14
Gemfile.lock
14
Gemfile.lock
|
@ -68,7 +68,6 @@ GIT
|
||||||
GEM
|
GEM
|
||||||
remote: http://rubygems.org/
|
remote: http://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
ZenTest (4.8.1)
|
|
||||||
actionmailer (3.2.8)
|
actionmailer (3.2.8)
|
||||||
actionpack (= 3.2.8)
|
actionpack (= 3.2.8)
|
||||||
mail (~> 2.4.4)
|
mail (~> 2.4.4)
|
||||||
|
@ -100,10 +99,6 @@ GEM
|
||||||
rails (~> 3.0)
|
rails (~> 3.0)
|
||||||
addressable (2.2.8)
|
addressable (2.2.8)
|
||||||
arel (3.0.2)
|
arel (3.0.2)
|
||||||
autotest (4.4.6)
|
|
||||||
ZenTest (>= 4.4.1)
|
|
||||||
autotest-rails (4.1.2)
|
|
||||||
ZenTest (~> 4.5)
|
|
||||||
awesome_print (1.0.2)
|
awesome_print (1.0.2)
|
||||||
bcrypt-ruby (3.0.1)
|
bcrypt-ruby (3.0.1)
|
||||||
blankslate (2.1.2.4)
|
blankslate (2.1.2.4)
|
||||||
|
@ -186,6 +181,7 @@ GEM
|
||||||
multi_xml
|
multi_xml
|
||||||
rack
|
rack
|
||||||
rack-mount
|
rack-mount
|
||||||
|
growl (1.0.3)
|
||||||
guard (1.3.2)
|
guard (1.3.2)
|
||||||
listen (>= 0.4.2)
|
listen (>= 0.4.2)
|
||||||
thor (>= 0.14.6)
|
thor (>= 0.14.6)
|
||||||
|
@ -283,6 +279,9 @@ GEM
|
||||||
raindrops (0.9.0)
|
raindrops (0.9.0)
|
||||||
rake (0.9.2.2)
|
rake (0.9.2.2)
|
||||||
raphael-rails (1.5.2)
|
raphael-rails (1.5.2)
|
||||||
|
rb-fsevent (0.9.1)
|
||||||
|
rb-inotify (0.8.8)
|
||||||
|
ffi (>= 0.5.0)
|
||||||
rdoc (3.12)
|
rdoc (3.12)
|
||||||
json (~> 1.4)
|
json (~> 1.4)
|
||||||
redcarpet (2.1.1)
|
redcarpet (2.1.1)
|
||||||
|
@ -386,8 +385,6 @@ PLATFORMS
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
acts-as-taggable-on (= 2.3.1)
|
acts-as-taggable-on (= 2.3.1)
|
||||||
annotate!
|
annotate!
|
||||||
autotest
|
|
||||||
autotest-rails
|
|
||||||
awesome_print
|
awesome_print
|
||||||
bootstrap-sass (= 2.0.4)
|
bootstrap-sass (= 2.0.4)
|
||||||
capybara
|
capybara
|
||||||
|
@ -412,6 +409,7 @@ DEPENDENCIES
|
||||||
grack!
|
grack!
|
||||||
grape (~> 0.2.1)
|
grape (~> 0.2.1)
|
||||||
grit!
|
grit!
|
||||||
|
growl
|
||||||
guard-cucumber
|
guard-cucumber
|
||||||
guard-rspec
|
guard-rspec
|
||||||
haml-rails
|
haml-rails
|
||||||
|
@ -431,6 +429,8 @@ DEPENDENCIES
|
||||||
rack-mini-profiler
|
rack-mini-profiler
|
||||||
rails (= 3.2.8)
|
rails (= 3.2.8)
|
||||||
raphael-rails (= 1.5.2)
|
raphael-rails (= 1.5.2)
|
||||||
|
rb-fsevent
|
||||||
|
rb-inotify
|
||||||
redcarpet (~> 2.1.1)
|
redcarpet (~> 2.1.1)
|
||||||
resque (~> 1.20.0)
|
resque (~> 1.20.0)
|
||||||
resque_mailer
|
resque_mailer
|
||||||
|
|
Loading…
Add table
Reference in a new issue