rails_apps_testing 0.0.1 → 0.2.0
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.
- checksums.yaml +4 -4
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.textile +4 -0
- data/README.textile +8 -0
- data/lib/generators/testing/configure/configure_generator.rb +2 -0
- data/lib/rails_apps_testing/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1597e4bf187a8caa77e0eef06370ff0c9df2ab9b
|
|
4
|
+
data.tar.gz: 1a2186112ab9ee5fd8c1c92fbf707609c6d191a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77c19e98d907de614a959cef6ba0ebfb46ec15e50166f598bf565adaa05c8567d544ce7d07c0e83f1bfa2e9759602d3acb3b0773d57fbb4158d6fce1dfa27477
|
|
7
|
+
data.tar.gz: e25c445dc7d55048b2b1f17be9a092e099e462ec92fd9c1104313b3700f837f2147781d8d02a6a237ce04d10903e0cb381e14a9120959d1ca787e439b29cb2db
|
data/.ruby-gemset
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
rails_apps_testing
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ruby-2.1.1
|
data/CHANGELOG.textile
CHANGED
data/README.textile
CHANGED
|
@@ -172,6 +172,14 @@ RSpec.configure do |config|
|
|
|
172
172
|
end
|
|
173
173
|
</pre>
|
|
174
174
|
|
|
175
|
+
If you want to install the file *spec/support/devise.rb* independently of the other changes, you can run:
|
|
176
|
+
|
|
177
|
+
<pre>
|
|
178
|
+
$ rails generate testing:configure devise
|
|
179
|
+
</pre>
|
|
180
|
+
|
|
181
|
+
This is helpful for application templates that install RSpec before installing Devise, allowing you to run the generator again to install support for Devise after Devise is installed.
|
|
182
|
+
|
|
175
183
|
h2. Issues
|
|
176
184
|
|
|
177
185
|
Any issues? Please create an "issue":http://github.com/RailsApps/rails_apps_testing/issues on GitHub. Reporting issues (and patching!) helps everyone.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_apps_testing
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Kehoe
|
|
@@ -46,6 +46,8 @@ extensions: []
|
|
|
46
46
|
extra_rdoc_files: []
|
|
47
47
|
files:
|
|
48
48
|
- ".gitignore"
|
|
49
|
+
- ".ruby-gemset"
|
|
50
|
+
- ".ruby-version"
|
|
49
51
|
- CHANGELOG.textile
|
|
50
52
|
- Gemfile
|
|
51
53
|
- LICENSE.txt
|