Sha256: 9f33607874bd3ef81fbdc23e8c01c022bcf5a0fdf3178f0509223f03af253bf3

Contents?: true

Size: 453 Bytes

Versions: 14

Compression:

Stored size: 453 Bytes

Contents

#!/usr/bin/env ruby 

require_relative 'helper.rb'
require_relative 'generate.rb'
require 'Ifd_Mobile/version'

@features_dir = File.join(FileUtils.pwd, "project")
@source_dir = File.join(File.dirname(__FILE__), '..', 'project')

if (ARGV.length == 0)
  print_usage
else
	cmd = ARGV.shift

	if cmd == "help"
  		print_help
	elsif cmd == "gen"
  		ifd_mobile_scaffold
	elsif cmd == "version"
		puts Ifd::Mobile::VERSION
  	else
  		print_usage
	end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
Ifd_Mobile-1.5.0 bin/Ifd_Mobile
Ifd_Mobile-1.3.0 bin/Ifd_Mobile
Ifd_Mobile-1.2.0 bin/Ifd_Mobile
Ifd_Mobile-1.1.0 bin/Ifd_Mobile
Ifd_Mobile-1.0.0 bin/Ifd_Mobile
Ifd_Mobile-0.1.8 bin/Ifd_Mobile
Ifd_Mobile-0.1.7 bin/Ifd_Mobile
Ifd_Mobile-0.1.6 bin/Ifd_Mobile
Ifd_Mobile-0.1.5 bin/Ifd_Mobile
Ifd_Mobile-0.1.4 bin/Ifd_Mobile
Ifd_Mobile-0.1.3 bin/Ifd_Mobile
Ifd_Mobile-0.1.2 bin/Ifd_Mobile
Ifd_Mobile-0.1.1 bin/Ifd_Mobile
Ifd_Mobile-0.1.0 bin/Ifd_Mobile