blockly_interpreter 0.2.1 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f47aa0f0e4ab86901c79c22a6c61cf3d6f17802
|
4
|
+
data.tar.gz: e3e9634c563759e34f0259fa2a1834ea746e5c12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d72721a18ef832f424c4553095b724cdac01b6f2e15679c4d5b7beb579d7cef5a591a2cbca73882eca6d9a6556ddc07866022c6d546514809dc678ae96951ecc
|
7
|
+
data.tar.gz: 6e3e00c333b19a2f27f3a6ca25c63bf022af2c977b5154004de7d6d62ae09fd0ec6ed22240a0e0ad9529c3708a0629dfe5fc383ea96678d61771bf48acaeb72a
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
## Version 0.3.0 - October 18, 2017
|
2
|
+
|
3
|
+
* Rename 'blockly_interpreter/test_helper' to 'blockly_interpreter/blockly_interpreter_test_helper' to avoid potential naming conflicts with apps that have a test_helper and put blockly_interpreter in the load path (thanks, @stuartmg!)
|
4
|
+
|
1
5
|
## Version 0.2.1 - August 31, 2017
|
2
6
|
|
3
7
|
* Rails 5 compatibility fix (thanks, @mdeutsch!)
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
blockly_interpreter (0.
|
4
|
+
blockly_interpreter (0.3.0)
|
5
5
|
activesupport
|
6
6
|
nokogiri
|
7
7
|
|
@@ -38,7 +38,7 @@ GEM
|
|
38
38
|
rb-inotify (>= 0.9.7)
|
39
39
|
lumberjack (1.0.10)
|
40
40
|
method_source (0.8.2)
|
41
|
-
mini_portile2 (2.
|
41
|
+
mini_portile2 (2.3.0)
|
42
42
|
minitest (5.8.4)
|
43
43
|
minitest-reporters (1.1.8)
|
44
44
|
ansi
|
@@ -46,8 +46,8 @@ GEM
|
|
46
46
|
minitest (>= 5.0)
|
47
47
|
ruby-progressbar
|
48
48
|
nenv (0.3.0)
|
49
|
-
nokogiri (1.8.
|
50
|
-
mini_portile2 (~> 2.
|
49
|
+
nokogiri (1.8.1)
|
50
|
+
mini_portile2 (~> 2.3.0)
|
51
51
|
notiffany (0.0.8)
|
52
52
|
nenv (~> 0.1)
|
53
53
|
shellany (~> 0.0)
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blockly_interpreter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nat Budin
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|
@@ -200,6 +200,7 @@ files:
|
|
200
200
|
- lib/blockly_interpreter.rb
|
201
201
|
- lib/blockly_interpreter/block.rb
|
202
202
|
- lib/blockly_interpreter/block_library.rb
|
203
|
+
- lib/blockly_interpreter/blockly_interpreter_test_helper.rb
|
203
204
|
- lib/blockly_interpreter/console_interpreter.rb
|
204
205
|
- lib/blockly_interpreter/core_blocks.rb
|
205
206
|
- lib/blockly_interpreter/core_blocks/arithmetic_operator_block.rb
|
@@ -244,7 +245,6 @@ files:
|
|
244
245
|
- lib/blockly_interpreter/parser.rb
|
245
246
|
- lib/blockly_interpreter/program.rb
|
246
247
|
- lib/blockly_interpreter/program_cache.rb
|
247
|
-
- lib/blockly_interpreter/test_helper.rb
|
248
248
|
- lib/blockly_interpreter/version.rb
|
249
249
|
homepage: https://github.com/patientslikeme/blockly_interpreter
|
250
250
|
licenses: []
|