git-sleep 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 39869b4105c7850d0cdaa2e08489931c48973804
4
- data.tar.gz: b6d2cb1bb7642b5224decc33b8d70a8782845c35
3
+ metadata.gz: 703ea02488e136772457a35b046e5fefb597719b
4
+ data.tar.gz: 2faeac69b7894c3f375cd9044812e80d7d760c3a
5
5
  SHA512:
6
- metadata.gz: 04a7e59ff9279ea0cd9fe7a2a734cb8f24e1456f70722cbcc961253b659dae6d9daaecd06ea9d80c4c8578ab5736c46aaba65b4d2b318cf2e1ac273bd05c1615
7
- data.tar.gz: 9f96c492798302c26f4589a2d77c97562688d093dc6800aac4b0a2a19429522a387451083954dbb78078dc677034d467fef60a464a1e17336f2310e9682271b1
6
+ metadata.gz: 2d402cec651060270e066ef680ae5a651e65db165bc5e76b9430141888636845694aaa0c03caad0ffa7aedb0c155b4d83975f2f1a6e503a0e485714b91fb06ac
7
+ data.tar.gz: 77010c74581c7a6ba38ebc60af011f7dc7d25e6afe7e59ef4770e3d94c66f45f5995357f910cfdd51ec707edeb567de13e9278af0b207199874cbe6ea95fc963
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # git sleep
2
2
 
3
+ [![Build
4
+ Status](https://travis-ci.org/maxjacobson/git-sleep-gem.svg?branch=add-travis)](https://travis-ci.org/maxjacobson/git-sleep-gem)
5
+
3
6
  `gem install git-sleep`
4
7
 
5
8
  to be used in conjunction with [gitsleep.com](http://www.gitsleep.com)
@@ -1,19 +1,21 @@
1
- require File.expand_path('../lib/git-sleep', __FILE__)
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'git-sleep/metadata'
2
4
 
3
5
  Gem::Specification.new do |git_sleep|
4
6
  git_sleep.name = 'git-sleep'
5
7
  git_sleep.version = GitSleep::VERSION
6
8
  git_sleep.summary = 'Uses Jawbone to figure out if you are awake enough' \
7
9
  'to code based on your sleep data'
8
- git_sleep.description = 'Uses Jawbone to figure out if you are awake ' \
10
+ git_sleep.description = 'Uses Jawbone to figure out if you are awake ' \
9
11
  'enough to code'
10
- git_sleep.authors = ['Max Jacobson', 'Ruthie Nachmany', 'Sarah Duve']
11
- git_sleep.email = [
12
+ git_sleep.authors = ['Max Jacobson', 'Ruthie Nachmany', 'Sarah Duve']
13
+ git_sleep.email = [
12
14
  'max@hardscrabble.net',
13
15
  'ruthie.nachmany@flatironschool.com',
14
16
  'saduve@gmail.com'
15
17
  ]
16
- git_sleep.files = Dir[
18
+ git_sleep.files = Dir[
17
19
  './*.{md,gemspec}',
18
20
  './.gitignore',
19
21
  './hooks/*',
@@ -22,9 +24,9 @@ Gem::Specification.new do |git_sleep|
22
24
  './lib/git-sleep/*'
23
25
  ]
24
26
  git_sleep.require_paths = ['lib']
25
- git_sleep.executables = ['git-sleep']
26
- git_sleep.homepage = GitSleep::OUR_SITE
27
- git_sleep.license = 'MIT'
27
+ git_sleep.executables = ['git-sleep']
28
+ git_sleep.homepage = GitSleep::OUR_SITE
29
+ git_sleep.license = 'MIT'
28
30
  git_sleep.required_ruby_version = '>= 2.0.0'
29
31
  git_sleep.add_runtime_dependency 'httparty', '~> 0.13'
30
32
  git_sleep.add_runtime_dependency 'netrc', '~> 0.8'
@@ -2,7 +2,5 @@ require_relative './git-sleep/exceptions'
2
2
  require_relative './git-sleep/authorizer'
3
3
 
4
4
  module GitSleep
5
- VERSION = '0.2.0'
6
- OUR_SITE = 'http://www.gitsleep.com'
7
5
  end
8
6
 
@@ -0,0 +1,5 @@
1
+ module GitSleep
2
+ VERSION = '0.2.1'
3
+ OUR_SITE = 'http://www.gitsleep.com'
4
+ end
5
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-sleep
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Jacobson
@@ -102,6 +102,7 @@ files:
102
102
  - "./lib/git-sleep/authorizer.rb"
103
103
  - "./lib/git-sleep/credentials_file.rb"
104
104
  - "./lib/git-sleep/exceptions.rb"
105
+ - "./lib/git-sleep/metadata.rb"
105
106
  - bin/git-sleep
106
107
  homepage: http://www.gitsleep.com
107
108
  licenses: