File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
Original file line number Diff line number Diff line change
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
+
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
You can’t perform that action at this time.
0 commit comments