system_executor 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/CHANGELOG.md +4 -0
- data/lib/system_executor/executor.rb +19 -0
- data/lib/system_executor/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YTc0OTU3N2Q5MjFhZDI0ZTQ0ZmJiMjU1YWQ5NWY3NjNmZWI0MWY3Mw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZTBlNWYwNzllMTZiZDQ3NGZmNTYwZjE2NTk2ZmVlNTZlOWFhZjYxMA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MDAwNWUxOTlmNDViMDJiOTEzMzk0MjQ1MzA5MTQ1Yjg1MDdlOTA0ODQwZDM4
|
10
|
+
YTBiMTllMGQ1MWU5M2NiN2E2OGNmOTMzNDU1ZDA5ZTA0M2Y3ZjZkMjY5Mjgy
|
11
|
+
NGE4NGUzOGMxMmY4M2MzZjFmYThkMDQwM2RmZWYxZDk1YzdkYmU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MmNhZWJiNjM3MDVmNmJhZWI2OTcxZjhjY2ZmZTMyOTFiN2IzOTkyZmJiNThh
|
14
|
+
NTNkYTVmOWEzZDhlZTg1MmNjYmEwMWQ3ZjFiYTgzYTI2MTc1OWRiODA4YjI5
|
15
|
+
ODlkOTYzM2E4OTU0ODgwOTM3OGI1ZjJkNGVkMTcwZTY5NDdjYzE=
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,22 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# Copyright (C) 2015 Szymon Kopciewski
|
4
|
+
#
|
5
|
+
# This file is part of SystemExecutor.
|
6
|
+
#
|
7
|
+
# This program is free software: you can redistribute it and/or modify
|
8
|
+
# it under the terms of the GNU General Public License as published by
|
9
|
+
# the Free Software Foundation, either version 3 of the License, or
|
10
|
+
# (at your option) any later version.
|
11
|
+
#
|
12
|
+
# This program is distributed in the hope that it will be useful,
|
13
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
# GNU General Public License for more details.
|
16
|
+
#
|
17
|
+
# You should have received a copy of the GNU General Public License
|
18
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
|
1
20
|
module SystemExecutor
|
2
21
|
class Executor
|
3
22
|
|