autotest-growl 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.txt +5 -0
- data/README.rdoc +10 -3
- metadata +4 -6
data/CHANGELOG.txt
CHANGED
data/README.rdoc
CHANGED
|
@@ -49,13 +49,20 @@ http://workingwithrails.com/recommendation/new/person/11706-sven-schwyn
|
|
|
49
49
|
|
|
50
50
|
== UPDATE FROM 0.1.X
|
|
51
51
|
|
|
52
|
-
As of version 0.2.0 autotest-
|
|
52
|
+
As of version 0.2.0 autotest-fsevent no longer requires the ZenTest gem but
|
|
53
53
|
the lighter and improved autotest gem. To update do the following:
|
|
54
54
|
|
|
55
55
|
sudo gem uninstall ZenTest
|
|
56
|
-
sudo gem update autotest-
|
|
56
|
+
sudo gem update autotest-fsevent
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
To use autotest with Rails, install the autotest-rails-pure gem instead of
|
|
59
|
+
the famous autotest-rails gem which requires ZenTest:
|
|
60
|
+
|
|
61
|
+
sudo gem uninstall autotest-rails
|
|
62
|
+
sudo gem install autotest-rails-pure
|
|
63
|
+
|
|
64
|
+
And in case one day you need the more advanced features of ZenTest, install
|
|
65
|
+
the zentest-without-autotest gem alongside autotest:
|
|
59
66
|
|
|
60
67
|
sudo gem install zentest-without-autotest
|
|
61
68
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autotest-growl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sven Schwyn
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2010-02-
|
|
12
|
+
date: 2010-02-27 00:00:00 +01:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -79,10 +79,8 @@ post_install_message: "\n\
|
|
|
79
79
|
Rails, thank you!\n\n\
|
|
80
80
|
http://workingwithrails.com/recommendation/new/person/11706-sven-schwyn\n\n\
|
|
81
81
|
+-------------------------------------------------------------------------+\n\
|
|
82
|
-
|
|
|
83
|
-
|
|
|
84
|
-
| but the more lightweight autotest gem. You MUST uninstall ZenTest now! |\n\
|
|
85
|
-
| Please refer to the README in case you need more ZenTest functionality. |\n\
|
|
82
|
+
| UPGRADING USERS please take a look at the README now for important news |\n\
|
|
83
|
+
| related to modified dependencies since 0.1.x and Rails compatibility. |\n\
|
|
86
84
|
+-------------------------------------------------------------------------+\n\
|
|
87
85
|
\e[0m\n"
|
|
88
86
|
rdoc_options:
|