Skip to content

Commit c00b617

Browse files
committed
add gemspec
1 parent 06bfd8a commit c00b617

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source 'https://rubygems.org'
2+
3+
gemspec

omniauth-fitbit-oauth2.gemspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# -*- encoding: utf-8 -*-
2+
require File.expand_path('../lib/omniauth-fitbit-oauth2/version', __FILE__)
3+
4+
Gem::Specification.new do |gem|
5+
gem.name = 'omniauth-fitbit-oauth2'
6+
gem.version = OmniAuth::FitbitOauth2::VERSION
7+
gem.license = 'MIT'
8+
gem.summary = %q{OmniAuth Oauth2 strategy for fitbit.com.}
9+
gem.description = %q{OmniAuth Oauth2 strategy for fitbit.com - https://wiki.fitbit.com/display/API/OAuth+2.0}
10+
gem.author = 'Matthew Bender'
11+
gem.email = '[email protected]'
12+
gem.homepage = 'https://github.com/codebender/omniauth-fitbit-oauth2'
13+
14+
gem.files = `git ls-files`.split($/)
15+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
16+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
17+
gem.require_paths = ['lib']
18+
19+
gem.add_runtime_dependency 'omniauth-oauth2', '~> 1.3'
20+
21+
gem.add_development_dependency 'rspec', '~> 3.2'
22+
end

0 commit comments

Comments
 (0)