opal 0.3.0 → 0.3.1
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.
- data/README.md +3 -0
- data/opal.gemspec +2 -1
- metadata +3 -3
data/README.md
CHANGED
|
@@ -49,6 +49,9 @@ already loaded into.
|
|
|
49
49
|
Changelog
|
|
50
50
|
---------
|
|
51
51
|
|
|
52
|
+
- **30 March 2011**: 0.3.1 Release
|
|
53
|
+
- Fix to make `opal` an executable
|
|
54
|
+
|
|
52
55
|
- **30 March 2011**: 0.3.0 Release
|
|
53
56
|
- Major redesign of build tools to use v8 for server side opal
|
|
54
57
|
- Split all opal packages into actual gems
|
data/opal.gemspec
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
|
|
2
2
|
Gem::Specification.new do |gem|
|
|
3
3
|
gem.name = "opal"
|
|
4
|
-
gem.version = "0.3.
|
|
4
|
+
gem.version = "0.3.1"
|
|
5
5
|
gem.authors = ["Adam Beynon"]
|
|
6
6
|
gem.email = ["adam@adambeynon.com"]
|
|
7
7
|
gem.homepage = "http://github.com/adambeynon/opal"
|
|
8
8
|
gem.summary = "Ruby implementation on top of javascript"
|
|
9
9
|
gem.description = "Ruby compiler and runtime for javascript"
|
|
10
10
|
|
|
11
|
+
gem.executables = %w[opal]
|
|
11
12
|
gem.files = `git ls-files`.split "\n"
|
|
12
13
|
gem.require_path = "lib"
|
|
13
14
|
end
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: opal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.3.
|
|
5
|
+
version: 0.3.1
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Adam Beynon
|
|
@@ -17,8 +17,8 @@ dependencies: []
|
|
|
17
17
|
description: Ruby compiler and runtime for javascript
|
|
18
18
|
email:
|
|
19
19
|
- adam@adambeynon.com
|
|
20
|
-
executables:
|
|
21
|
-
|
|
20
|
+
executables:
|
|
21
|
+
- opal
|
|
22
22
|
extensions: []
|
|
23
23
|
|
|
24
24
|
extra_rdoc_files: []
|