mirror of
https://github.com/tomgi/git_stats.git
synced 2025-01-11 06:21:56 +01:00
utf8 encoding in every file
This commit is contained in:
parent
8f62957ae5
commit
5b3b15f238
46 changed files with 85 additions and 38 deletions
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
end
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'git_stats/core_extensions/hash'
|
||||
require 'git_stats/core_extensions/string'
|
||||
require 'git_stats/core_extensions/symbol'
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module ByFieldFinder
|
||||
def method_missing(name, *args, &block)
|
||||
field = name[/^by_(.*)$/, 1]
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require "git_stats"
|
||||
|
||||
class GitStats::CLI
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
class Hash
|
||||
def to_key_indexed_array(params = {})
|
||||
raise ArgumentError.new('all the keys must be numbers to convert to key indexed array') unless all? { |k, v| k.is_a? Numeric }
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
class String
|
||||
def absolute_path
|
||||
Pathname.new(__FILE__).expand_path.join(self).cleanpath.to_s
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
class Symbol
|
||||
def t
|
||||
I18n.t self
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
class Generator
|
||||
delegate :add_command_observer, to: :@repo
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
module GitData
|
||||
class Activity
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'git_stats/hash_initializable'
|
||||
|
||||
module GitStats
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
|
||||
require 'git_stats/hash_initializable'
|
||||
|
||||
module GitStats
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
module GitData
|
||||
class CommandParser
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
module GitData
|
||||
class CommandRunner
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'git_stats/hash_initializable'
|
||||
|
||||
module GitStats
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'git_stats/hash_initializable'
|
||||
|
||||
module GitStats
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
module GitData
|
||||
class ShortStat
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module HashInitializable
|
||||
def initialize(params = {})
|
||||
raise "pass a Hash to initialize #{self.class}" unless params.is_a? Hash
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
I18n.load_path += Dir['../../../../config/locales/*.yml'.absolute_path]
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
module StatsView
|
||||
module Charts
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
module StatsView
|
||||
module Charts
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
module StatsView
|
||||
module Charts
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
module StatsView
|
||||
module Charts
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
module StatsView
|
||||
module Charts
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
module StatsView
|
||||
class Template
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
module StatsView
|
||||
class View
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
module StatsView
|
||||
class ViewData
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
module GitStats
|
||||
VERSION = "0.0.1"
|
||||
end
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'spec_helper'
|
||||
|
||||
describe ByFieldFinder do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
FactoryGirl.define do
|
||||
initialize_with { new(attributes) }
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'spec_helper'
|
||||
|
||||
describe GitStats::GitData::Activity do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'spec_helper'
|
||||
|
||||
describe GitStats::GitData::Author do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'spec_helper'
|
||||
|
||||
describe GitStats::GitData::Blob do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'spec_helper'
|
||||
|
||||
describe GitStats::CLI do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'spec_helper'
|
||||
|
||||
describe GitStats::GitData::Repo do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'spec_helper'
|
||||
|
||||
describe GitStats::GitData::Repo do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'spec_helper'
|
||||
|
||||
describe GitStats::GitData::Commit do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'spec_helper'
|
||||
|
||||
describe GitStats::Generator do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'spec_helper'
|
||||
|
||||
describe GitStats::GitData::Repo do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'spec_helper'
|
||||
|
||||
describe GitStats::GitData::ShortStat do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'spec_helper'
|
||||
|
||||
describe Hash do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'integration/shared'
|
||||
|
||||
describe GitStats::GitData::Activity do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'integration/shared'
|
||||
|
||||
describe GitStats::GitData::Activity do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'integration/shared'
|
||||
|
||||
describe GitStats::GitData::Repo do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'integration/shared'
|
||||
|
||||
describe GitStats::GitData::Repo do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'spec_helper'
|
||||
|
||||
shared_context "shared" do
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*- encoding : utf-8 -*-
|
||||
require 'simplecov'
|
||||
SimpleCov.start
|
||||
|
||||
|
|
Loading…
Reference in a new issue