Skip to content

Commit

Permalink
Version bumped to stable version
Browse files Browse the repository at this point in the history
+ version changed to 0.1.0 first stable realease
+ configured & added test coverage report
+ Used single-quoted strings for gemspec and at other places
  • Loading branch information
Pramod committed Jan 6, 2016
1 parent 8c5bea6 commit ce60a9c
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 35 deletions.
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
source "https://rubygems.org"
source 'https://rubygems.org'

gemspec

group :test do
gem 'codeclimate-test-reporter'
end
21 changes: 0 additions & 21 deletions LICENSE.txt

This file was deleted.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[![Gem Version](https://badge.fury.io/rb/omniauth-box-oauth2.svg)](https://badge.fury.io/rb/omniauth-box-oauth2)
[![Build Status](https://travis-ci.org/pramodshinde/omniauth-box-oauth2.svg?branch=master)](https://travis-ci.org/pramodshinde/omniauth-box-oauth2)
[![Code Climate](https://codeclimate.com/github/pramodshinde/omniauth-box-oauth2/badges/gpa.svg)](https://codeclimate.com/github/pramodshinde/omniauth-box-oauth2)
[![Test Coverage](https://codeclimate.com/github/pramodshinde/omniauth-box-oauth2/badges/coverage.svg)](https://codeclimate.com/github/pramodshinde/omniauth-box-oauth2/coverage)
[![Dependency Status](https://gemnasium.com/pramodshinde/omniauth-box-oauth2.svg)](https://gemnasium.com/pramodshinde/omniauth-box-oauth2)

# OmniAuth::Strategies::BoxOauth2
Expand Down
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "bundler/gem_tasks"
require "rspec/core/rake_task"
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

task :default => :spec
task default: :spec
4 changes: 2 additions & 2 deletions lib/omniauth/box_oauth2/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module OmniAuth
module BoxOauth2
VERSION = "1.0.0.pre"
VERSION = '0.1.0'
end
end
end
16 changes: 8 additions & 8 deletions omniauth-box-oauth2.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'omniauth/box_oauth2/version'

Gem::Specification.new do |spec|
spec.name = "omniauth-box-oauth2"
spec.name = 'omniauth-box-oauth2'
spec.version = OmniAuth::BoxOauth2::VERSION
spec.authors = ["Pramod Shinde"]
spec.email = ["[email protected]"]
spec.authors = ['Pramod Shinde']
spec.email = ['[email protected]']

spec.summary = %q{A Box OAuth2 strategy for OmniAuth 1.x}
spec.description = %q{A Box OAuth2 strategy for OmniAuth 1.x}
spec.homepage = "https://github.com/pramodshinde/omniauth-box-oauth2"
spec.license = "MIT"
spec.homepage = 'https://github.com/pramodshinde/omniauth-box-oauth2'
spec.license = 'MIT'

spec.files = `git ls-files -z`.split("\x0")
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.require_paths = ["lib"]
spec.require_paths = ['lib']

spec.add_runtime_dependency 'omniauth-oauth2', '~> 1.2'

spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.4"
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.4'
end
2 changes: 2 additions & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
require 'codeclimate-test-reporter'
CodeClimate::TestReporter.start
require 'omniauth/box_oauth2'

0 comments on commit ce60a9c

Please sign in to comment.