Class: Environment

Inherits:
Hash
  • Object
show all
Defined in:
lib/base/environment.rb

Constant Summary collapse

@@default =
nil

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Hash

#execute, #to_html

Constructor Details

#initialize(env = nil) ⇒ Environment

Returns a new instance of Environment.



13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/base/environment.rb', line 13

def initialize env=nil
  @output=''

  @env=Hash.new
  @env_aliases={'HOME' => ['USERPROFILE'],
                'DEV_ROOT' => ['DEV_HOME','HOME','USERPROFILE'],
                'USERNAME' => ['USER','USR']
  }
  env.each{|k,v| @env[k.to_s]=v} if !env.nil?
  @@default=self if @@default.nil?

  @publish_dir="#{root_dir}/publish"
  FileUtils.mkdir_p @publish_dir if !File.exists? @publish_dir
end

Instance Attribute Details

#outputObject

Returns the value of attribute output.



6
7
8
# File 'lib/base/environment.rb', line 6

def output
  @output
end

#publish_dirObject

Returns the value of attribute publish_dir.



6
7
8
# File 'lib/base/environment.rb', line 6

def publish_dir
  @publish_dir
end

Class Method Details

.checkObject

def self.remove directory

if(File.exists?(directory))
  begin
    FileUtils.rm_rf directory
    FileUtils.rm_r directory
  rescue
  end
end

end



190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# File 'lib/base/environment.rb', line 190

def self.check
  puts 'checking commands...'
  missing_command=false
  ['ruby --version','svn --version --quiet','git --version','msbuild /version','nunit-console','nuget','candle','light','gem --version'].each{|cmd|
    command=Command.new(cmd)
    command[:quiet]=true
    command[:ignore_failure]=true
    command.execute
    if(command[:exit_code] == 0)
      puts "#{cmd.split(' ')[0]} #{get_version(command[:output])}"
    else
      puts "#{cmd.split(' ')[0]} not found."
        missing_command=true
    end
    
  }
  puts "missing commands may be resolved by making sure that are installed and in PATH environment variable." if missing_command
end

.defaultObject



8
9
10
11
# File 'lib/base/environment.rb', line 8

def self.default
  @@default=Environment.new if @@default.nil?
  @@default
end

.dev_rootObject

Begin LEGACY support



29
30
31
# File 'lib/base/environment.rb', line 29

def self.dev_root
  default.root_dir
end

.get_version(text) ⇒ Object



209
210
211
# File 'lib/base/environment.rb', line 209

def self.get_version text
  text.match(/(\d+\.\d+\.[\d\w]+)/)
end

.linux?Boolean

Returns:

  • (Boolean)


167
168
169
# File 'lib/base/environment.rb', line 167

def self.linux?
  unix? and not mac?
end

.mac?Boolean

Returns:

  • (Boolean)


159
160
161
# File 'lib/base/environment.rb', line 159

def self.mac?
 (/darwin/ =~ RUBY_PLATFORM) != nil
end

.OSObject



139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# File 'lib/base/environment.rb', line 139

def self.OS
  if windows?
    return "windows"
  else
    if mac?
      return "mac"
    else
      if linux?
        return "linux"
      else
        return "unix"
      end
    end
  end
end

.unix?Boolean

Returns:

  • (Boolean)


163
164
165
# File 'lib/base/environment.rb', line 163

def self.unix?
  !windows?
end

.windows?Boolean

Returns:

  • (Boolean)


155
156
157
# File 'lib/base/environment.rb', line 155

def self.windows?
  Gem.win_platform?
end

Instance Method Details

#colorize?Boolean

Returns:

  • (Boolean)


109
110
111
112
113
114
115
116
117
118
119
# File 'lib/base/environment.rb', line 109

def colorize?
  colorize=true
  if Environment.windows?
    if(`gem list win32console`.include?('win32console'))
      require 'ansi/code'
    else
      colorize=false
    end
  end
  colorize
end

#debug?Boolean

Returns:

  • (Boolean)


104
105
106
107
# File 'lib/base/environment.rb', line 104

def debug?
  return true if get_env('DEBUG')=='true'
  false
end

#get_env(key) ⇒ Object



85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/base/environment.rb', line 85

def get_env key
  if(!@env.nil? && @env.has_key?(key))
    return @env[key] 
    end
  value = ENV[key]
  if(value.nil?)
    if(@env_aliases.has_key?(key))
      @env_aliases[key].each{|akey|
        value=get_env(akey) if value.nil?
      }
    end
  end
  value
end

#has_work?Boolean

Returns:

  • (Boolean)


126
127
128
# File 'lib/base/environment.rb', line 126

def has_work?
  true
end

#home_dirObject



38
39
40
# File 'lib/base/environment.rb', line 38

def home_dir
  get_env('HOME').gsub('\\','/')
end

#infoObject



213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# File 'lib/base/environment.rb', line 213

def info 
  puts "Environment"
  puts "  ruby version: #{`ruby --version`}"
  puts " ruby platform: #{RUBY_PLATFORM}"
  puts "      dev_root: #{self.root_dir}"
  puts "       machine: #{self.machine}"
  puts "          user: #{self.user}"
  #puts " configuration: #{self.configuration}"
  puts "         debug: #{self.debug?}"
  puts "git user.email: #{Git.user_email}" 
  puts " "
  puts "Path Commands"
  ['svn --version --quiet','git --version','msbuild /version','nuget','candle','light','gem --version'].each{|cmd|
    command=Command.new(cmd)
    command[:quiet]=true
    command[:ignore_failure]=true
    command.execute
    if(command[:exit_code] == 0)
      puts "#{cmd.split(' ')[0].fix(14)} #{Environment.get_version(command[:output])}"
    else
      puts "#{cmd.split(' ')[0].fix(14)} not found."
        missing_command=true
    end
  }
end

#log_dirObject



42
43
44
45
46
# File 'lib/base/environment.rb', line 42

def log_dir
  dir="#{root_dir}/log/#{user}@#{machine}"
  FileUtils.mkdir_p dir if !File.exists? dir
  dir
end

#machineObject



72
73
74
75
76
77
# File 'lib/base/environment.rb', line 72

def machine
  return ENV['COMPUTERNAME'] if !ENV['COMPUTERNAME'].nil? 
  machine = `hostname`
  machine = machine.split('.')[0] if machine.include?('.')
  return machine.strip
end

#make_dirObject



54
55
56
57
58
# File 'lib/base/environment.rb', line 54

def make_dir
  dir="#{root_dir}/make"
  FileUtils.mkdir_p dir if !File.exists? dir
  dir
end

#out(message) ⇒ Object



130
131
132
133
# File 'lib/base/environment.rb', line 130

def out message
    puts message if !get_env('SUPPRESS_CONSOLE_OUTPUT')
    @output=@output+message+'\n'
end

#root_dirObject

End LEGACY support



34
35
36
# File 'lib/base/environment.rb', line 34

def root_dir
  get_env('DEV_ROOT').gsub('\\','/')
end

#set_env(key, value) ⇒ Object



100
101
102
# File 'lib/base/environment.rb', line 100

def set_env key,value
  @env[key]=value
end

#show_success?Boolean

Returns:

  • (Boolean)


135
136
137
# File 'lib/base/environment.rb', line 135

def show_success?
  true
end

#tmp_dirObject



48
49
50
51
52
# File 'lib/base/environment.rb', line 48

def tmp_dir
  dir="#{root_dir}/tmp"
  FileUtils.mkdir_p dir if !File.exists? dir
  dir
end

#userObject



79
80
81
82
83
# File 'lib/base/environment.rb', line 79

def user
  get_env('USERNAME')
  #return ENV['USER'] if !ENV['USER'].nil?  #on Unix
  #ENV['USERNAME']
end

#working?Boolean

Returns:

  • (Boolean)


121
122
123
124
# File 'lib/base/environment.rb', line 121

def working?
  return true if Rake.application.original_dir.include? wrk_dir
  false
end

#wrk_dirObject

def publish_dir

dir="#{root_dir}/publish"
FileUtils.mkdir_p dir if !File.exists? dir
dir

end



66
67
68
69
70
# File 'lib/base/environment.rb', line 66

def wrk_dir
  dir="#{root_dir}/wrk"
  FileUtils.mkdir_p dir if !File.exists? dir
  dir
end