mgem 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/bin/mgem +5 -4
  2. data/lib/mgem.rb +1 -1
  3. 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' => 'mrbgems/mruby-math',
83
- 'Struct' => 'mrbgems/mruby-struct',
84
- 'Time' => 'mrbgems/mruby-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 '#{g}'"
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
@@ -2,7 +2,7 @@ require 'yaml'
2
2
  require 'fileutils'
3
3
  require "stringio"
4
4
 
5
- MGEM_VERSION = '0.1.6'
5
+ MGEM_VERSION = '0.1.7'
6
6
 
7
7
  MGEM_DIR = '.mgem'
8
8
  GEMS_ACTIVE = 'GEMS_ACTIVE.lst'
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.6
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-01 00:00:00.000000000 Z
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.