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.
Files changed (21) hide show
  1. checksums.yaml +4 -4
  2. data/lib/repla/logger/test/tc_logger.rb +1 -1
  3. data/lib/repla/test/bundles/{Cat.wcplugin → Cat.replabundle}/Contents/Info.plist +0 -0
  4. data/lib/repla/test/bundles/{Cat.wcplugin → Cat.replabundle}/Contents/Resources/cat.sh +0 -0
  5. data/lib/repla/test/bundles/{HelloWorld.wcplugin → HelloWorld.replabundle}/Contents/Info.plist +0 -0
  6. data/lib/repla/test/bundles/{HelloWorld.wcplugin → HelloWorld.replabundle}/Contents/Resources/hello_world.rb +0 -0
  7. data/lib/repla/test/bundles/{Invalid.wcplugin → Invalid.replabundle}/Contents/Info.plist +0 -0
  8. data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Info.plist +0 -0
  9. data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/html/css/style.css +0 -0
  10. data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/html/index.html +0 -0
  11. data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/html/js/wcprint.js +0 -0
  12. data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/lib/controller.rb +0 -0
  13. data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/lib/view.rb +0 -0
  14. data/lib/repla/test/bundles/{Print.wcplugin → Print.replabundle}/Contents/Resources/print.rb +0 -0
  15. data/lib/repla/test/bundles/{TestEnvironment.wcplugin → TestEnvironment.replabundle}/Contents/Info.plist +0 -0
  16. data/lib/repla/test/bundles/{TestEnvironment.wcplugin → TestEnvironment.replabundle}/Contents/Resources/constants.rb +0 -0
  17. data/lib/repla/test/bundles/{TestEnvironment.wcplugin → TestEnvironment.replabundle}/Contents/Resources/test_environment.rb +0 -0
  18. data/lib/repla/test/bundles/{TestLog.wcplugin → TestLog.replabundle}/Contents/Info.plist +0 -0
  19. data/lib/repla/test/bundles/{TestLog.wcplugin → TestLog.replabundle}/Contents/Resources/test_log.rb +0 -0
  20. data/lib/repla/test.rb +6 -4
  21. metadata +18 -18
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a1ac050b69b5ac0a389d55366947857892851e87
4
- data.tar.gz: ccd633bb48af7e3100da72aeb567f7d14e90b01c
3
+ metadata.gz: 6c2dc9f461e6638a509f122e2824c66b72a7cddf
4
+ data.tar.gz: 24eb12b83008de6aa55e093f4b287f0ad8aff720
5
5
  SHA512:
6
- metadata.gz: 326637f60cdee716c288e96afe72a3794a86307b86bec8c83498d1e4a13db804b48426fdc3e5c6f08b9745860efece0886d8e37bc144fbc3e0c79a0f5db832dc
7
- data.tar.gz: 2ac6e794f86622719f65375e14f38a9ade05b29109099b578864086669560fc2752cb2045fbd670b3b0cf57759a7d8f983715a0bfb7af4ec3c9f924ea49bef37
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.wcplugin`
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
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.wcplugin')
17
+ 'HelloWorld.replabundle')
18
18
  HELLOWORLD_PLUGIN_NAME = 'HelloWorld'.freeze
19
- PRINT_PLUGIN_FILE = File.join(TEST_PLUGIN_DIRECTORY, 'Print.wcplugin')
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, 'TestLog.wcplugin')
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, 'Invalid.wcplugin')
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.5.3
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.wcplugin/Contents/Info.plist
108
- - lib/repla/test/bundles/Cat.wcplugin/Contents/Resources/cat.sh
109
- - lib/repla/test/bundles/HelloWorld.wcplugin/Contents/Info.plist
110
- - lib/repla/test/bundles/HelloWorld.wcplugin/Contents/Resources/hello_world.rb
111
- - lib/repla/test/bundles/Invalid.wcplugin/Contents/Info.plist
112
- - lib/repla/test/bundles/Print.wcplugin/Contents/Info.plist
113
- - lib/repla/test/bundles/Print.wcplugin/Contents/Resources/html/css/style.css
114
- - lib/repla/test/bundles/Print.wcplugin/Contents/Resources/html/index.html
115
- - lib/repla/test/bundles/Print.wcplugin/Contents/Resources/html/js/wcprint.js
116
- - lib/repla/test/bundles/Print.wcplugin/Contents/Resources/lib/controller.rb
117
- - lib/repla/test/bundles/Print.wcplugin/Contents/Resources/lib/view.rb
118
- - lib/repla/test/bundles/Print.wcplugin/Contents/Resources/print.rb
119
- - lib/repla/test/bundles/TestEnvironment.wcplugin/Contents/Info.plist
120
- - lib/repla/test/bundles/TestEnvironment.wcplugin/Contents/Resources/constants.rb
121
- - lib/repla/test/bundles/TestEnvironment.wcplugin/Contents/Resources/test_environment.rb
122
- - lib/repla/test/bundles/TestLog.wcplugin/Contents/Info.plist
123
- - lib/repla/test/bundles/TestLog.wcplugin/Contents/Resources/test_log.rb
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