Class: Vamper

Inherits:
Object
  • Object
show all
Defined in:
lib/vamper.rb

Instance Method Summary collapse

Constructor Details

#initializeVamper

Returns a new instance of Vamper.



11
12
13
14
# File 'lib/vamper.rb', line 11

def initialize
  @do_update = false;
  @version_file_name = ''
end

Instance Method Details

#error(msg) ⇒ Object



190
191
192
# File 'lib/vamper.rb', line 190

def error(msg)
  puts "error: ".red + "#{msg}"
end

#executeObject



42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# File 'lib/vamper.rb', line 42

def execute
  self.parse(ARGV)

  if @version_file_name.length == 0
    find_version_file
  end

  @version_file_name = File.expand_path(@version_file_name)

  project_name = File.basename(@version_file_name, '.version')
  version_config_file_name = "#{File.dirname(@version_file_name)}/#{project_name}.version.config"

  puts "Version file is '#{@version_file_name}'"
  puts "Version config is '#{version_config_file_name}'"
  puts "Project name is '#{project_name}'"

  if File.exists?(@version_file_name)
    version_file = VersionFile.new(File.open(@version_file_name))
  else
    verson_file = VersionFile.new
  end

  now = TZInfo::Timezone.get(version_file.time_zone).now

  case version_file.build_value_type
    when :JDate
      build = get_jdate(now, version_file.start_year)

      if version_file.build != build
        version_file.revision = 0
        version_file.build = build
      else
        version_file.revision += 1
      end
    when :FullDate
      build = get_full_date(now)

      if version_file.build != build
        version_file.revision = 0
        version_file.build = build
      else
        version_file.revision += 1
      end
    when :Incremental
      version_file.build += 1
      version_file.revision = 0
  end

  puts 'Version data is:'
  tags = version_file.tags
  tags.each { |key, value|
    puts "  #{key}=#{value}"
  }

  if @do_update
    puts 'Updating version information:'
  end

  unless File.exists?(version_config_file_name)
    FileUtils.cp(File.join(File.dirname(__FILE__), 'default.version.config'), version_config_file_name)
  end

  version_config_file = VersionConfigFile.new(File.open(version_config_file_name), tags)
  file_list = version_file.files.map { |file_name| file_name.replace_tags!(tags) }

  file_list.each do |file_name|
    path = File.expand_path(File.join(File.dirname(@version_file_name), file_name))
    path_file_name = File.basename(path)
    match = false

    for file_type in version_config_file.file_types do
      match = file_type.file_specs.any? { |file_spec| file_spec.match(path_file_name) }
      unless match
        next
      end

      if file_type.write
        dir = File.dirname(path)
        unless Dir.exists?(dir)
          error "Directory '#{dir}' does not exist to write file ''#{path_file_name}''"
          exit(1)
        end

        if @do_update
          IO.write(path, file_type.write)
        end
      else # !file_type.write
        if File.exists?(path)
          if @do_update
            file_type.updates.each do |update|
              content = IO.read(path)
              content.gsub!(%r(#{update.search})m, update.replace.gsub(/\${(\w+)}/,'\\\\k<\\1>'))
              IO.write(path, content)
            end
          end
        else
          error "File #{path} does not exist to update"
          exit(1)
        end
      end

      break
    end

    unless match
      error "File '#{path}' has no matching file type in the .version.config"
      exit(1)
    end

    puts path

    if @do_update
      version_file.write_to(File.open(@version_file_name, 'w'))
    end
  end
end

#find_version_fileObject



159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# File 'lib/vamper.rb', line 159

def find_version_file
  dir = Dir.pwd

  while dir.length != 0
    files = Dir.glob('*.version')
    if files.length > 0
      @version_file_name = files[0]
      break
    else
      if dir == '/'
        dir = ''
      else
        dir = File.expand_path('..', dir)
      end
    end
  end

  if @version_file_name.length == 0
    error 'Unable to find a .version file in this or parent directories.'
    exit(1)
  end
end

#get_full_date(now) ⇒ Object



182
183
184
# File 'lib/vamper.rb', line 182

def get_full_date(now)
  now.year * 10000 + now.month * 100 + now.mday
end

#get_jdate(now, start_year) ⇒ Object



186
187
188
# File 'lib/vamper.rb', line 186

def get_jdate(now, start_year)
  ((now.year - start_year + 1) * 10000) + (now.month * 100) + now.mday
end

#parse(args) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/vamper.rb', line 16

def parse(args)
  args.each { |arg|
    case arg
      when '-?', '-help'
        print %Q(Version Stamper. Version #{$VERSION}
Copyright (c) John Lyon-Smith 2015.

Syntax:               #{File.basename(__FILE__)} [switches] VERSION_FILE

Description:          Stamps versions into project files

Switches:

  -help|-?          Shows this help
  -u|-update        Increment the build number and update all files

)
        exit(0)
      when '-u', '-update'
        @do_update = true
      else
        @version_file_name = arg
    end
  }
end