dummier 0.2.3 → 0.2.4
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/README.md +9 -4
- data/lib/dummier/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
# Dummier [](http://travis-ci.org/citrus/dummier)
|
|
2
|
-
|
|
1
|
+
# Dummier [](http://travis-ci.org/citrus/dummier)
|
|
3
2
|
|
|
4
3
|
A smart gem with a dumb name; Dummier is a rails generator for automating the creation of rails testing applications.
|
|
5
4
|
|
|
@@ -21,11 +20,11 @@ To install from RubyGems:
|
|
|
21
20
|
|
|
22
21
|
To install with bundler:
|
|
23
22
|
|
|
24
|
-
gem 'dummier', '>= 0.2.
|
|
23
|
+
gem 'dummier', '>= 0.2.4'
|
|
25
24
|
|
|
26
25
|
To package for development in your gemspec:
|
|
27
26
|
|
|
28
|
-
s.add_development_dependency('dummier', '>= 0.2.
|
|
27
|
+
s.add_development_dependency('dummier', '>= 0.2.4')
|
|
29
28
|
|
|
30
29
|
|
|
31
30
|
Usage
|
|
@@ -104,6 +103,11 @@ Change Log
|
|
|
104
103
|
----------
|
|
105
104
|
|
|
106
105
|
|
|
106
|
+
**0.2.4 - 2011/9/7**
|
|
107
|
+
|
|
108
|
+
* fixed travis ci build image path (thanks @fritzek)
|
|
109
|
+
|
|
110
|
+
|
|
107
111
|
**0.2.3 - 2011/9/6**
|
|
108
112
|
|
|
109
113
|
* refactored AppGenerator#run!
|
|
@@ -152,6 +156,7 @@ Contributors
|
|
|
152
156
|
------------
|
|
153
157
|
|
|
154
158
|
- Spencer Steffen ([@citrus](https://github.com/citrus))
|
|
159
|
+
- Fritz Thielemann ([@fritzek](https://github.com/fritzek))
|
|
155
160
|
- [@holdensmagicalunicorn](https://github.com/holdensmagicalunicorn)
|
|
156
161
|
|
|
157
162
|
|
data/lib/dummier/version.rb
CHANGED