mgem 0.1.6 → 0.1.7
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/bin/mgem +5 -4
- data/lib/mgem.rb +1 -1
- metadata +2 -2
data/bin/mgem
CHANGED
|
@@ -79,9 +79,10 @@ def get_binaries
|
|
|
79
79
|
end
|
|
80
80
|
|
|
81
81
|
DEFAULT_GEMS = {
|
|
82
|
-
'Math' => '
|
|
83
|
-
'Struct' => '
|
|
84
|
-
'Time' => '
|
|
82
|
+
'Math' => 'math',
|
|
83
|
+
'Struct' => 'struct',
|
|
84
|
+
'Time' => 'time',
|
|
85
|
+
'sprintf' => 'sprintf'
|
|
85
86
|
}
|
|
86
87
|
|
|
87
88
|
def get_default_gems
|
|
@@ -145,7 +146,7 @@ elsif ARGV[0] == 'config'
|
|
|
145
146
|
end
|
|
146
147
|
|
|
147
148
|
default_gem_command = default_gems.map do |g|
|
|
148
|
-
" conf.gem '
|
|
149
|
+
" conf.gem 'mrbgems/mruby-#{g}'"
|
|
149
150
|
end.join("\n")
|
|
150
151
|
if default_gem_command == ''
|
|
151
152
|
default_gem_command = ' # No GEMs activated'
|
data/lib/mgem.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mgem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-03-
|
|
12
|
+
date: 2013-03-04 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: mgem helps you search and find GEMs specifically written for mruby. It
|
|
15
15
|
also supports by creating a mruby build configuration.
|