javascript 0.0.1 → 0.0.2
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/README.md +5 -6
- data/javascript.gemspec +4 -4
- data/lib/javascript/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0af8711d86c041ab8cad64c4e6ba00018a4a8c64
|
4
|
+
data.tar.gz: a09bb05335d5b5abb69d49704da1be8a8c07877c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6244a60dfbd08cb24a99c38fd5d487de584451e958c385a69239dbb8b091f3ce508a0bc378297b3f3098c6a51e461bbb4a887df69ab5329f3e55e653f2a58a64
|
7
|
+
data.tar.gz: f51ac7b1c6a9462807110531081e3fa8b904cdb60b61c5bea1c287d6531957f3f85b366fcfdcf67bc7b6a34e527866b07f6878cde4e4330f940c279587a5dac9
|
data/README.md
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
As much as we love writing Ruby, when you need to *get closer to the metal*, you
|
4
4
|
have no choice but to use JavaScript. With this gem, Rubyists can finally
|
5
|
-
harness the raw power of their machines by
|
6
|
-
inside their Ruby applications*.
|
5
|
+
harness the raw power of their machines by programming in JavaScript syntax
|
6
|
+
*right inside their Ruby applications*.
|
7
7
|
|
8
8
|
## Installation
|
9
9
|
|
@@ -146,14 +146,13 @@ metal {
|
|
146
146
|
## Pros
|
147
147
|
|
148
148
|
* Gives you the illusion of programming in a *closer to the metal* syntax.
|
149
|
-
* The examples in this README actually work.
|
150
|
-
|
149
|
+
* The examples in this README [actually work](/test/javascript_test.rb).
|
150
|
+
* [](https://travis-ci.org/vanruby/javascript)
|
151
151
|
|
152
152
|
## Cons
|
153
153
|
|
154
154
|
* Things that aren't covered in the examples probably won't ever work.
|
155
|
-
|
156
|
-
* [Not enough jQuery](http://meta.stackexchange.com/questions/45176/when-is-use-jquery-not-a-valid-answer-to-a-javascript-question)
|
155
|
+
* [Not enough jQuery](http://meta.stackexchange.com/questions/45176/when-is-use-jquery-not-a-valid-answer-to-a-javascript-question).
|
157
156
|
|
158
157
|
## Contributing
|
159
158
|
|
data/javascript.gemspec
CHANGED
@@ -8,10 +8,10 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = JavaScript::VERSION
|
9
9
|
spec.authors = ["Godfrey Chan"]
|
10
10
|
spec.email = ["godfreykfc@gmail.com"]
|
11
|
-
spec.summary = "
|
12
|
-
spec.description = "With this gem
|
13
|
-
"
|
14
|
-
"
|
11
|
+
spec.summary = "Harness the raw power of your machine with JavaScript"
|
12
|
+
spec.description = "With this gem, Rubyists can finally get closer to the " \
|
13
|
+
"metal by programming in JavaScript syntax right within " \
|
14
|
+
"their Ruby applications."
|
15
15
|
spec.homepage = "https://github.com/vanruby/javascript"
|
16
16
|
spec.license = "MIT"
|
17
17
|
|
data/lib/javascript/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: javascript
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Godfrey Chan
|
@@ -80,8 +80,8 @@ dependencies:
|
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 4.1.0
|
83
|
-
description: With this gem
|
84
|
-
|
83
|
+
description: With this gem, Rubyists can finally get closer to the metal by programming
|
84
|
+
in JavaScript syntax right within their Ruby applications.
|
85
85
|
email:
|
86
86
|
- godfreykfc@gmail.com
|
87
87
|
executables: []
|
@@ -124,7 +124,7 @@ rubyforge_project:
|
|
124
124
|
rubygems_version: 2.2.2
|
125
125
|
signing_key:
|
126
126
|
specification_version: 4
|
127
|
-
summary:
|
127
|
+
summary: Harness the raw power of your machine with JavaScript
|
128
128
|
test_files:
|
129
129
|
- test/javascript_test.rb
|
130
130
|
- test/no_conflict_test.rb
|