Skip to content

Commit

Permalink
Adding encoding to top of files
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiago Morello committed Nov 5, 2010
1 parent a9fa4cc commit 08052cc
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/rrd.rb
@@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
require "ffi"
require "rrd/version"
require "rrd/wrapper"
Expand Down
1 change: 1 addition & 0 deletions lib/rrd/base.rb
@@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
module RRD
# TODO: add bang methods
class Base
Expand Down
1 change: 1 addition & 0 deletions lib/rrd/builder.rb
@@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
module RRD
class Builder
attr_accessor :output, :parameters, :datasources, :archives
Expand Down
1 change: 1 addition & 0 deletions lib/rrd/graph.rb
@@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
module RRD
class Graph
GRAPH_OPTIONS = [:color, :label]
Expand Down
1 change: 1 addition & 0 deletions lib/rrd/time_extension.rb
@@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
require 'active_support/version'

if ActiveSupport::VERSION::MAJOR >= 3
Expand Down
3 changes: 2 additions & 1 deletion lib/rrd/version.rb
@@ -1,8 +1,9 @@
# -*- coding: UTF-8 -*-
module RRD
module Version #:nodoc: all
MAJOR = 0
MINOR = 2
PATCH = 5
PATCH = 6
STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
end
end
1 change: 1 addition & 0 deletions lib/rrd/wrapper.rb
@@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
module RRD
# Raw RRD Tool wrapper.
#
Expand Down

0 comments on commit 08052cc

Please sign in to comment.