iscinc-hw 1.1.0 → 1.2.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/README.md +26 -0
- metadata +7 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2f93f324247a8a76d230f2d5b258c71fc03c56a2
|
|
4
|
+
data.tar.gz: 4fc8105cda8d046f7869b1e45a91300405472349
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 10bc967411559609dc506ad31ef0a9248ecec5bb7808c0dcc6ed617ac9be2f157a90467606bce5e189a979f9efe341f65d57876a81bde84c25729668851de394
|
|
7
|
+
data.tar.gz: 2ff41ceda95f3d61fd4b3ce00275fce41f0e31df5e14be9d8d3ede00192d90d1c793e70f40a2a0ea20ecaaca3ef7ba287ba71f2179c65f3b53df7c93739e59df
|
data/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# The "Hello World!" Ruby gem for iSC Inc. projects
|
|
2
|
+
|
|
3
|
+
> Include this Ruby gem in all Ruby-coding projects @iSCInc.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## Install Gem
|
|
7
|
+
*Add* this to your **`Gemfile`**:
|
|
8
|
+
|
|
9
|
+
```ruby
|
|
10
|
+
require 'iscinc-hw'
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Run **Bundler** *in the command line*:
|
|
14
|
+
|
|
15
|
+
```cl
|
|
16
|
+
bundle install
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
Run an iSC Inc. project in the command line:
|
|
21
|
+
|
|
22
|
+
```cl
|
|
23
|
+
ruby sampleproject.rb
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
An output with *"Hello World!"* will be printed!
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: iscinc-hw
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Suriyaa Kudo
|
|
@@ -10,19 +10,21 @@ bindir: bin
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2015-12-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
13
|
+
description: This Ruby gem tests the commands of a iSC Inc. Ruby project.
|
|
14
14
|
email: SuriyaaKudoIsc@users.noreply.github.com
|
|
15
15
|
executables: []
|
|
16
16
|
extensions: []
|
|
17
17
|
extra_rdoc_files: []
|
|
18
18
|
files:
|
|
19
|
+
- README.md
|
|
19
20
|
- Rakefile
|
|
20
21
|
- bin/iscinc-hw
|
|
21
22
|
- lib/iscinc-hw.rb
|
|
22
23
|
- lib/iscinc-hw/translator.rb
|
|
23
24
|
- test/test_iscinc-hw.rb
|
|
24
|
-
homepage:
|
|
25
|
-
licenses:
|
|
25
|
+
homepage: https://github.com/SuriyaaKudoIsc/iscinc-hw-gem
|
|
26
|
+
licenses:
|
|
27
|
+
- Apache-v2
|
|
26
28
|
metadata: {}
|
|
27
29
|
post_install_message:
|
|
28
30
|
rdoc_options: []
|
|
@@ -43,6 +45,6 @@ rubyforge_project:
|
|
|
43
45
|
rubygems_version: 2.2.2
|
|
44
46
|
signing_key:
|
|
45
47
|
specification_version: 3
|
|
46
|
-
summary:
|
|
48
|
+
summary: A hello world gem for iSC Inc. projects.
|
|
47
49
|
test_files:
|
|
48
50
|
- test/test_iscinc-hw.rb
|