Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for travis-ci #7

Merged
merged 3 commits into from Sep 4, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
*swp
.ruby-version
pkg/
Gemfile.lock
9 changes: 9 additions & 0 deletions .travis.yml
@@ -0,0 +1,9 @@
language: ruby
rvm:
- '1.9.3'
- '2.0.0'
before_install:
- cat /etc/*release*
- sudo apt-get update -qq
- sudo apt-get install -qq imagemagick libmagickwand-dev libgsl0-dev
- gem update --system
2 changes: 2 additions & 0 deletions README.md
@@ -1,3 +1,5 @@
[![Build Status](https://travis-ci.org/jimlindstrom/FinModeling.png?branch=master)](https://travis-ci.org/jimlindstrom/FinModeling)

## Overview

FinModeling is an equity valuation framework. It can retrieve and parse [XBRL](http://en.wikipedia.org/wiki/XBRL)-based filings from SEC Edgar. As of March 2013, it can successfully parse the last 2-5 years of quarterly and annual filings from 52% of the Nasdaq 100 companies. (The remainder fail due to a long-tail distribution of filing formatting peculiarities for which I haven't yet written special-case code to handle.)
Expand Down