-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ 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
Showing
7 changed files
with
22 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |