git-sleep 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -0
- data/README.md +1 -0
- data/bin/git-sleep +6 -0
- data/git-sleep.gemspec +23 -0
- data/lib/git-sleep.rb +7 -0
- metadata +72 -0
data/.gitignore
ADDED
data/README.md
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
README.md
|
data/bin/git-sleep
ADDED
data/git-sleep.gemspec
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require File.expand_path("../lib/git-sleep", __FILE__)
|
2
|
+
|
3
|
+
Gem::Specification.new do |git_sleep|
|
4
|
+
git_sleep.name = "git-sleep"
|
5
|
+
git_sleep.version = GitSleep::VERSION
|
6
|
+
git_sleep.date = GitSleep::LAST_UPDATED
|
7
|
+
git_sleep.summary = "Uses Jawbone to figure out if you are awake enough to code based on your sleep data"
|
8
|
+
git_sleep.description = "Uses Jawbone to figure out if you are awake enough to code"
|
9
|
+
git_sleep.authors = ["Max Jacobson", "Ruthie Nachmany", "Sarah Duve"]
|
10
|
+
git_sleep.email = ["maxwell.jacobson@gmail.com"]
|
11
|
+
git_sleep.files = Dir[
|
12
|
+
'./*.{md,gemspec}',
|
13
|
+
'./.gitignore',
|
14
|
+
'./bin/*',
|
15
|
+
'./lib/*'
|
16
|
+
]
|
17
|
+
git_sleep.require_paths = ["lib"]
|
18
|
+
git_sleep.executables = ["git-sleep"]
|
19
|
+
git_sleep.homepage = "http://rubygems.org/gems/git-sleep"
|
20
|
+
git_sleep.license = "MIT"
|
21
|
+
git_sleep.required_ruby_version = '>= 1.8.7'
|
22
|
+
git_sleep.add_runtime_dependency 'httparty'
|
23
|
+
end
|
data/lib/git-sleep.rb
ADDED
metadata
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: git-sleep
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Max Jacobson
|
9
|
+
- Ruthie Nachmany
|
10
|
+
- Sarah Duve
|
11
|
+
autorequire:
|
12
|
+
bindir: bin
|
13
|
+
cert_chain: []
|
14
|
+
date: 2013-08-11 00:00:00.000000000 Z
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: httparty
|
18
|
+
requirement: !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
20
|
+
requirements:
|
21
|
+
- - ! '>='
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '0'
|
24
|
+
type: :runtime
|
25
|
+
prerelease: false
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
28
|
+
requirements:
|
29
|
+
- - ! '>='
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
version: '0'
|
32
|
+
description: Uses Jawbone to figure out if you are awake enough to code
|
33
|
+
email:
|
34
|
+
- maxwell.jacobson@gmail.com
|
35
|
+
executables:
|
36
|
+
- git-sleep
|
37
|
+
extensions: []
|
38
|
+
extra_rdoc_files: []
|
39
|
+
files:
|
40
|
+
- ./README.md
|
41
|
+
- ./git-sleep.gemspec
|
42
|
+
- ./.gitignore
|
43
|
+
- ./bin/git-sleep
|
44
|
+
- ./lib/git-sleep.rb
|
45
|
+
- bin/git-sleep
|
46
|
+
homepage: http://rubygems.org/gems/git-sleep
|
47
|
+
licenses:
|
48
|
+
- MIT
|
49
|
+
post_install_message:
|
50
|
+
rdoc_options: []
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ! '>='
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: 1.8.7
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
|
+
none: false
|
61
|
+
requirements:
|
62
|
+
- - ! '>='
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '0'
|
65
|
+
requirements: []
|
66
|
+
rubyforge_project:
|
67
|
+
rubygems_version: 1.8.25
|
68
|
+
signing_key:
|
69
|
+
specification_version: 3
|
70
|
+
summary: Uses Jawbone to figure out if you are awake enough to code based on your
|
71
|
+
sleep data
|
72
|
+
test_files: []
|