repla 0.5.3 → 0.6.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/lib/repla/logger/test/tc_logger.rb +1 -1
- data/lib/repla/test/bundles/{Cat.wcplugin → Cat.replabundle}/Contents/Info.plist +0 -0
- data/lib/repla/test/bundles/{Cat.wcplugin → Cat.replabundle}/Contents/Resources/cat.sh +0 -0
- data/lib/repla/test/bundles/{HelloWorld.wcplugin → HelloWorld.replabundle}/Contents/Info.plist +0 -0
- data/lib/repla/test/bundles/{HelloWorld.wcplugin → HelloWorld.replabundle}/Contents/Resources/hello_world.rb +0 -0
- data/lib/repla/test/bundles/{Invalid.wcplugin → Invalid.replabundle}/Contents/Info.plist +0 -0
- data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Info.plist +0 -0
- data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/html/css/style.css +0 -0
- data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/html/index.html +0 -0
- data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/html/js/wcprint.js +0 -0
- data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/lib/controller.rb +0 -0
- data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/lib/view.rb +0 -0
- data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/print.rb +0 -0
- data/lib/repla/test/bundles/{TestEnvironment.wcplugin → TestEnvironment.replabundle}/Contents/Info.plist +0 -0
- data/lib/repla/test/bundles/{TestEnvironment.wcplugin → TestEnvironment.replabundle}/Contents/Resources/constants.rb +0 -0
- data/lib/repla/test/bundles/{TestEnvironment.wcplugin → TestEnvironment.replabundle}/Contents/Resources/test_environment.rb +0 -0
- data/lib/repla/test/bundles/{TestLog.wcplugin → TestLog.replabundle}/Contents/Info.plist +0 -0
- data/lib/repla/test/bundles/{TestLog.wcplugin → TestLog.replabundle}/Contents/Resources/test_log.rb +0 -0
- data/lib/repla/test.rb +6 -4
- metadata +18 -18
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c2dc9f461e6638a509f122e2824c66b72a7cddf
|
|
4
|
+
data.tar.gz: 24eb12b83008de6aa55e093f4b287f0ad8aff720
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a588e850c89b662a473d3436f39413033ee608080de589c56564eeac89cad4ea8c02a517e5711dba65c46089feed87e9d366b8950c61b833614a342e8b9c4867
|
|
7
|
+
data.tar.gz: 2f708ba46b0380daa54f188fcd299c9118c3e2ad415d3a575793e4628cf2a80a623a81b63b7a4027e049a33dff43a82fe8d4890377a7bf1c6ac404dfc4b8dd01
|
|
@@ -128,7 +128,7 @@ class TestLogger < Test::Unit::TestCase
|
|
|
128
128
|
test_class = @test_view_helper.last_log_class
|
|
129
129
|
assert_equal('message', test_class)
|
|
130
130
|
|
|
131
|
-
# TODO: Also add the following tests the `Log.
|
|
131
|
+
# TODO: Also add the following tests the `Log.replabundle`
|
|
132
132
|
|
|
133
133
|
# Test Whitespace
|
|
134
134
|
# White space to the left should be preserved, whitespace to the right
|
|
File without changes
|
|
File without changes
|
data/lib/repla/test/bundles/{HelloWorld.wcplugin → HelloWorld.replabundle}/Contents/Info.plist
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/html/index.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/lib/view.rb
RENAMED
|
File without changes
|
data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/print.rb
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/repla/test/bundles/{TestLog.wcplugin → TestLog.replabundle}/Contents/Resources/test_log.rb
RENAMED
|
File without changes
|
data/lib/repla/test.rb
CHANGED
|
@@ -14,13 +14,15 @@ module Repla
|
|
|
14
14
|
# Plugins
|
|
15
15
|
TEST_PLUGIN_DIRECTORY = File.join(TEST_DIRECTORY, 'bundles')
|
|
16
16
|
HELLOWORLD_PLUGIN_FILE = File.join(TEST_PLUGIN_DIRECTORY,
|
|
17
|
-
'HelloWorld.
|
|
17
|
+
'HelloWorld.replabundle')
|
|
18
18
|
HELLOWORLD_PLUGIN_NAME = 'HelloWorld'.freeze
|
|
19
|
-
PRINT_PLUGIN_FILE = File.join(TEST_PLUGIN_DIRECTORY, 'Print.
|
|
19
|
+
PRINT_PLUGIN_FILE = File.join(TEST_PLUGIN_DIRECTORY, 'Print.replabundle')
|
|
20
20
|
PRINT_PLUGIN_NAME = 'Print'.freeze
|
|
21
|
-
TESTLOG_PLUGIN_FILE = File.join(TEST_PLUGIN_DIRECTORY,
|
|
21
|
+
TESTLOG_PLUGIN_FILE = File.join(TEST_PLUGIN_DIRECTORY,
|
|
22
|
+
'TestLog.replabundle')
|
|
22
23
|
TESTLOG_PLUGIN_NAME = 'TestLog'.freeze
|
|
23
|
-
INVALID_PLUGIN_FILE = File.join(TEST_PLUGIN_DIRECTORY,
|
|
24
|
+
INVALID_PLUGIN_FILE = File.join(TEST_PLUGIN_DIRECTORY,
|
|
25
|
+
'Invalid.replabundle')
|
|
24
26
|
INVALID_PLUGIN_NAME = 'Invalid'.freeze
|
|
25
27
|
|
|
26
28
|
# HTML
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: repla
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Roben Kleene
|
|
@@ -104,23 +104,23 @@ files:
|
|
|
104
104
|
- lib/repla/test/applescript/switch_windows.applescript
|
|
105
105
|
- lib/repla/test/applescript/window_bounds.applescript
|
|
106
106
|
- lib/repla/test/applescript/window_id.applescript
|
|
107
|
-
- lib/repla/test/bundles/Cat.
|
|
108
|
-
- lib/repla/test/bundles/Cat.
|
|
109
|
-
- lib/repla/test/bundles/HelloWorld.
|
|
110
|
-
- lib/repla/test/bundles/HelloWorld.
|
|
111
|
-
- lib/repla/test/bundles/Invalid.
|
|
112
|
-
- lib/repla/test/bundles/Print.
|
|
113
|
-
- lib/repla/test/bundles/Print.
|
|
114
|
-
- lib/repla/test/bundles/Print.
|
|
115
|
-
- lib/repla/test/bundles/Print.
|
|
116
|
-
- lib/repla/test/bundles/Print.
|
|
117
|
-
- lib/repla/test/bundles/Print.
|
|
118
|
-
- lib/repla/test/bundles/Print.
|
|
119
|
-
- lib/repla/test/bundles/TestEnvironment.
|
|
120
|
-
- lib/repla/test/bundles/TestEnvironment.
|
|
121
|
-
- lib/repla/test/bundles/TestEnvironment.
|
|
122
|
-
- lib/repla/test/bundles/TestLog.
|
|
123
|
-
- lib/repla/test/bundles/TestLog.
|
|
107
|
+
- lib/repla/test/bundles/Cat.replabundle/Contents/Info.plist
|
|
108
|
+
- lib/repla/test/bundles/Cat.replabundle/Contents/Resources/cat.sh
|
|
109
|
+
- lib/repla/test/bundles/HelloWorld.replabundle/Contents/Info.plist
|
|
110
|
+
- lib/repla/test/bundles/HelloWorld.replabundle/Contents/Resources/hello_world.rb
|
|
111
|
+
- lib/repla/test/bundles/Invalid.replabundle/Contents/Info.plist
|
|
112
|
+
- lib/repla/test/bundles/Print.replabundle/Contents/Info.plist
|
|
113
|
+
- lib/repla/test/bundles/Print.replabundle/Contents/Resources/html/css/style.css
|
|
114
|
+
- lib/repla/test/bundles/Print.replabundle/Contents/Resources/html/index.html
|
|
115
|
+
- lib/repla/test/bundles/Print.replabundle/Contents/Resources/html/js/wcprint.js
|
|
116
|
+
- lib/repla/test/bundles/Print.replabundle/Contents/Resources/lib/controller.rb
|
|
117
|
+
- lib/repla/test/bundles/Print.replabundle/Contents/Resources/lib/view.rb
|
|
118
|
+
- lib/repla/test/bundles/Print.replabundle/Contents/Resources/print.rb
|
|
119
|
+
- lib/repla/test/bundles/TestEnvironment.replabundle/Contents/Info.plist
|
|
120
|
+
- lib/repla/test/bundles/TestEnvironment.replabundle/Contents/Resources/constants.rb
|
|
121
|
+
- lib/repla/test/bundles/TestEnvironment.replabundle/Contents/Resources/test_environment.rb
|
|
122
|
+
- lib/repla/test/bundles/TestLog.replabundle/Contents/Info.plist
|
|
123
|
+
- lib/repla/test/bundles/TestLog.replabundle/Contents/Resources/test_log.rb
|
|
124
124
|
- lib/repla/test/html/index.html
|
|
125
125
|
- lib/repla/test/html/indexjquery.html
|
|
126
126
|
- lib/repla/test/html/js/zepto.js
|