Sha256: 721dbf812da232f3b44b05903bf28702bb17babd2298e64e39da18e35df35f5e

Contents?: true

Size: 1.8 KB

Versions: 1

Compression:

Stored size: 1.8 KB

Contents

parseitc
  by Hwan-Joon Choi
  http://www.choibean.com/parseitc

== DESCRIPTION:

parseitc is a Ruby gem written to parse iPhone app transaction reports from
iTunes Connect. The 

== FEATURES/PROBLEMS:

Parsing of standard Sales/Trend Report tsv files from https://itts.apple.com/
Allows ruby applications as well as Bash Init scripts to use the same config.

== SYNOPSIS:

  require 'rubygems'
  require 'lib/parseitc'
  include ParseITC
  reports = ParseConfig.new('/path/to/tsv/file1')
  reports.add_file('/path/to/tsv/file2')
  by_country = report.numbers_by_country
  by_country.sort.each {|k, v| puts "#{k}: #{v}"}
  ...

== REQUIREMENTS:

  * Ruby (Developed on 1.8.7)
  * RubyGems

== INSTALL:

  sudo gem install parseitc

== TODO:

  parse monthly and weekly reports

== LICENSE:

Copyright (c) 2010 Hwan-Joon Choi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
parseitc-0.1 README