Skip to content

Commit

Permalink
Merge pull request #1 from ld4l/setup_coveralls
Browse files Browse the repository at this point in the history
Setup coveralls
  • Loading branch information
elrayle committed Jan 8, 2015
2 parents 11db10a + 6cdb92f commit 5f167cc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
1 change: 1 addition & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
service_name: travis-ci
11 changes: 4 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,27 @@
LD4L FOAF RDF provides tools for modeling person triples based on the FOAF ontology and persisting to a triplestore.

[![Build Status](https://travis-ci.org/ld4l/foaf_rdf.png?branch=master)](https://travis-ci.org/ld4l/foaf_rdf)
[![Test Coverage](https://img.shields.io/coveralls/ld4l/foaf_rdf.svg?branch=master)](https://coveralls.io/r/ld4l/foaf_rdf)
[![Coverage Status](https://coveralls.io/repos/ld4l/foaf_rdf/badge.png?branch=master)](https://coveralls.io/r/ld4l/foaf_rdf?branch=master)
[![Gem Version](https://badge.fury.io/rb/ld4l-foaf_rdf.svg)](http://badge.fury.io/rb/ld4l-foaf_rdf)
[![Dependency Status](https://www.versioneye.com/ruby/ld4l-foaf_rdf/0.0.4/badge.svg)](https://www.versioneye.com/ruby/ld4l-foaf_rdf/0.0.4)


## Installation

Temporary get the gem from github until the gem is released publicly.

Add this line to your application's Gemfile:

<!-- gem 'ld4l-foaf_rdf' -->
gem 'ld4l-foaf_rdf', '~> 0.0.3', :git => '[email protected]:ld4l/foaf_rdf.git'
gem 'ld4l-foaf_rdf'


And then execute:

$ bundle install

<!--

Or install it yourself as:

$ gem install ld4l-foaf_rdf
-->


## Usage
Expand Down
7 changes: 4 additions & 3 deletions ld4l-foaf_rdf.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,18 @@ Gem::Specification.new do |spec|
# spec.test_files = `git ls-files -- {spec}/*`.split("\n") # FROM ActiveTriples gemspec file
# spec.require_paths = ["lib"] # NOT IN ActiveTriples gemspec file

# spec.add_dependency('ffi', '~> 1.9.5')
# spec.add_dependency('ffi', '~> 1.9.5')
spec.add_dependency('rdf', '~> 1.1')

spec.add_dependency('active-triples', '~> 0.5')
spec.add_dependency('active_triples-local_name', '~> 0.1')

spec.add_development_dependency('pry')
# spec.add_development_dependency('pry-byebug') # Works with ruby > 2
# spec.add_development_dependency('pry-debugger') # Works with ruby < 2
# spec.add_development_dependency('pry-byebug') # Works with ruby > 2
# spec.add_development_dependency('pry-debugger') # Works with ruby < 2
spec.add_development_dependency('rdoc')
spec.add_development_dependency('rspec')
spec.add_development_dependency('coveralls')
spec.add_development_dependency('guard-rspec')
spec.add_development_dependency('webmock')

Expand Down
2 changes: 1 addition & 1 deletion lib/ld4l/foaf_rdf/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module LD4L
module FoafRDF
VERSION = "0.0.5"
VERSION = "0.0.6"
end
end
3 changes: 3 additions & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
require 'coveralls'
Coveralls.wear!

require 'bundler/setup'
Bundler.setup

Expand Down

0 comments on commit 5f167cc

Please sign in to comment.