ruby-timecamp 0.0.0
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 +7 -0
- data/lib/ruby-timecamp.rb +10 -0
- metadata +44 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 964954e3bb50a1a99646005e58847b37cd44d10c
|
|
4
|
+
data.tar.gz: 137c015a8dc562e4c63086667a2f5b1b925efb83
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: a36bcbb0162a659e446ce6dc8b6fb1f3a17a8ed00275cc30c42a76f328f2d419b34d07cd717b130801850dcca840877e2ea05e41724464195bcf1298dd07e7f2
|
|
7
|
+
data.tar.gz: ec5a5627cb65dd23e05b5914faeace077df5ee67650b9ec3d06b56e40625bb06fc24a1e0ddc7794c1c472f0d27a4a64690ade88fc9f53f4edaa9deda32b2e9c1
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# require everything in lib
|
|
2
|
+
Dir["./lib/*.rb"].each {|file| require file }
|
|
3
|
+
Dir["./lib/resources/*.rb"].each {|file| require file }
|
|
4
|
+
require 'active_support/all'
|
|
5
|
+
require 'rest-client'
|
|
6
|
+
require 'pry'
|
|
7
|
+
# dont require these for testing
|
|
8
|
+
unless (ENV['TIMECAMP_ENV'] == 'test')
|
|
9
|
+
require 'httplog'
|
|
10
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ruby-timecamp
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Trevor Mast
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2018-01-14 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Wrapper for the Timecamp API
|
|
14
|
+
email: trevormast@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- lib/ruby-timecamp.rb
|
|
20
|
+
homepage: https://github.com/trevormast/ruby-timecamp
|
|
21
|
+
licenses:
|
|
22
|
+
- MIT
|
|
23
|
+
metadata: {}
|
|
24
|
+
post_install_message:
|
|
25
|
+
rdoc_options: []
|
|
26
|
+
require_paths:
|
|
27
|
+
- lib
|
|
28
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
34
|
+
requirements:
|
|
35
|
+
- - ">="
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: '0'
|
|
38
|
+
requirements: []
|
|
39
|
+
rubyforge_project:
|
|
40
|
+
rubygems_version: 2.6.8
|
|
41
|
+
signing_key:
|
|
42
|
+
specification_version: 4
|
|
43
|
+
summary: Wrapper for the Timecamp API
|
|
44
|
+
test_files: []
|