mulang 3.6.1 → 3.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 9295ef73bfc4bf2ef0389297e3bc241c17d0b0cc
4
- data.tar.gz: 43e17f94bb16e1b1c199ffe98f267170d9a62e80
2
+ SHA256:
3
+ metadata.gz: 1c0f249e544ca1db02f0374dbebfcb6490deb7ed85f6a4b74a9ce1fc2d6c1cd8
4
+ data.tar.gz: 53d1b81c5c611f6b6d5246f04b88cd438992fc358c2bb3d7db38759a1b667bfd
5
5
  SHA512:
6
- metadata.gz: 8aa101d73f23e0e66b4801d3c65d570d149aece2c073b2280001ef9cb9d6891437f6f6946dd6b0e67e8c1d849154e6ec0e2608a876df4cf338497d167e4b276a
7
- data.tar.gz: b0301e33e14dc3d6bebdeee18ae1fcba513d21d80e51557fd2105f77937c41ee08805729df71197c8653d9b041d079f7d200c8e39d8fcdedc95c1a894a406680
6
+ metadata.gz: ae80fdbb4ccbf0916bf3b64b086153869868f3ecc68e45ce5772dfaab25cd57614162db1b9081a49af90708293c02eedff4a164fe739eda4fbe48695c3ae4d2a
7
+ data.tar.gz: 6c562c88356593a75ea8cb0c149e642ea2074370f466a51d25d633e609710d41055e5970b8689ae224022e1f58606d96f7b1db28579332753b9c08cf41c2fc5b
data/bin/mulang CHANGED
Binary file
data/bin/setup CHANGED
@@ -4,5 +4,4 @@ IFS=$'\n\t'
4
4
  set -vx
5
5
 
6
6
  bundle install
7
-
8
- ./bin/pull_mulang.sh
7
+ bundle exec rake wrapper:wrap
@@ -1,4 +1,4 @@
1
1
  module Mulang
2
- VERSION = "3.6.1"
3
- MULANG_VERSION = "3.6.1"
2
+ VERSION = "3.7.0"
3
+ MULANG_VERSION = "3.7.0"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mulang
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.6.1
4
+ version: 3.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Franco Bulgarelli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-04 00:00:00.000000000 Z
11
+ date: 2018-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -75,7 +75,6 @@ extra_rdoc_files: []
75
75
  files:
76
76
  - bin/console
77
77
  - bin/mulang
78
- - bin/pull_mulang.sh
79
78
  - bin/setup
80
79
  - lib/mulang.rb
81
80
  - lib/mulang/code.rb
@@ -102,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
102
101
  version: '0'
103
102
  requirements: []
104
103
  rubyforge_project:
105
- rubygems_version: 2.5.1
104
+ rubygems_version: 2.7.6
106
105
  signing_key:
107
106
  specification_version: 4
108
107
  summary: Gem wrapper for mulang tool
@@ -1,11 +0,0 @@
1
- #!/bin/bash
2
-
3
- set -e
4
-
5
- MULANG_VERSION=`grep -e '[0-9]*\.[0-9]*\.[0-9]' lib/mulang/version.rb -o | tail -n 1`
6
-
7
- echo "Pulling Mulang $MULANG_VERSION..."
8
- wget https://github.com/mumuki/mulang/releases/download/v$MULANG_VERSION/mulang -O bin/mulang
9
-
10
- chmod +x bin/mulang
11
- echo "Mulang pulled. Placed in bin/mulang"