agilib 0.1.2.beta5 → 0.1.2.beta6
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62dffa841b8c191e19592059514999066b90af5a
|
|
4
|
+
data.tar.gz: 5f362351c2297483d88a25db1c7f90b1113177e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b048c1c96b95b9b8bcf1f544da4b1ece6f0cc870a63a2fa160c95bb459ff929f0ee475fb265dabb198067309a09021d2a60d69a3bd9f1403e0da5493b13bc0d9
|
|
7
|
+
data.tar.gz: 272f1743fe82b90e3414a024edbd3d006875b1dbc17fe501ef317f1a1fc1e538fdb28d050cb004f816f4f8537fd8f9c86296fa8f5f947ec81939f51b5e660974
|
|
@@ -27,15 +27,13 @@ templater.post_bundler do
|
|
|
27
27
|
|
|
28
28
|
generators_config = <<-RUBY
|
|
29
29
|
|
|
30
|
-
|
|
31
30
|
config.generators do |g|
|
|
32
|
-
g.test_framework :rspec, fixture:
|
|
31
|
+
g.test_framework :rspec, :fixture => true, :view_specs => false, :request_specs => false, :routing_specs => false, :controller_specs => false, :helper_specs => false
|
|
33
32
|
g.fixture_replacement :factory_girl, dir: 'spec/factories'
|
|
34
33
|
g.view_specs false
|
|
35
34
|
g.helper_specs false
|
|
36
35
|
g.controller_specs false
|
|
37
36
|
end
|
|
38
|
-
|
|
39
37
|
|
|
40
38
|
RUBY
|
|
41
39
|
|
data/lib/agilib/version.rb
CHANGED