activeagent 0.5.0rc1 → 0.5.0rc2
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d2af71e1d2c2bc28b9a7d2301efe45ec7252f7f749ec3e3e0385f813becff1f
|
4
|
+
data.tar.gz: d5bc0672d10326144407d3f1c8554768c84fc61206541dde8f15e366cb21ae2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2f176f61abb5ab67321d70b56e858bd0ffb435636ebdad77c310c8656a43ae2086bc27a7d4b721b67061d5ac1530a7672ee23d7a3cfc104504c7a7666bbb998
|
7
|
+
data.tar.gz: 1398927382c0e9c73c17eb0c275e1696e49ea835537877f927f9f6ccc31cc8a7e7fdfb93ef4478b617e02a99221419b6e4a03bda2973e2b0efdf1293c4ed119f
|
data/lib/active_agent/version.rb
CHANGED
@@ -8,6 +8,7 @@ module Erb # :nodoc:
|
|
8
8
|
source_root File.expand_path("templates", __dir__)
|
9
9
|
|
10
10
|
def create_agent_layouts
|
11
|
+
template "layout.html.erb.tt", "app/views/layouts/agent.html.erb"
|
11
12
|
template "layout.text.erb.tt", "app/views/layouts/agent.text.erb"
|
12
13
|
template "layout.json.erb.tt", "app/views/layouts/agent.json.erb"
|
13
14
|
end
|
@@ -4,7 +4,7 @@ require "rails/generators/test_unit"
|
|
4
4
|
|
5
5
|
module TestUnit # :nodoc:
|
6
6
|
module Generators # :nodoc:
|
7
|
-
class InstallGenerator <
|
7
|
+
class InstallGenerator < Base # :nodoc:
|
8
8
|
# TestUnit install generator for ActiveAgent
|
9
9
|
# This can be used to create additional test-specific files during installation
|
10
10
|
# Currently no additional files are needed for TestUnit setup
|