pseng_ekg_client 0.1.0 → 0.1.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: d7b460950f651d0f6be2c71a0ba99707353d7744
4
- data.tar.gz: 294037e84e5a6066a34dcec0c986be09461864db
3
+ metadata.gz: 0423beb157b28a73c044f5c5f119729b528d08dc
4
+ data.tar.gz: ba7009afca7ac998722eb9d5edcd3a207ae655ed
5
5
  SHA512:
6
- metadata.gz: f4645eec8c1efcdd6a4ff1827e728298f126e5945aebe2817158ed1387b28421c537bf040ccbe7ed4929fc15784c3618a366fd0db072192e8c5a1c781b2b2835
7
- data.tar.gz: fffd910a912da3e64354d07dcf6404ae067edd725edf57a90fe0e59f2cd48cf33d379c68ce3409321a8ed0a8bf93bc82829ca6b9b8957fb8954b714c5b834b05
6
+ metadata.gz: 49def8f76fd7b67b9d27bc209e9af68cf6df305f0361a782108ef85f1df3ac0d9621074bc5e2b7002c2463e1f27fc6be635d9329fa6508a2ff7072c632d01ea9
7
+ data.tar.gz: c1f9581ac1383312ddb47d6b3d3a49063c40471169db3f2e2438724be1557abd0271477fa8017de036148b89963f7f10945e87a76b09fd37d0e8fb6a0fe010bb
@@ -1,3 +1,3 @@
1
1
  module PsengEkgClient
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -1,6 +1,6 @@
1
1
  require "pseng_ekg_client/version"
2
2
 
3
- class PsengEkg::Client
3
+ class PsengEkgClient
4
4
  include HTTParty
5
5
  VALID_ACTIONS = %w(index show create update destroy)
6
6
  VALID_RECORD_TYPES = %w(application task)
@@ -13,7 +13,10 @@ Gem::Specification.new do |spec|
13
13
  spec.description = %q{This gem is used to push status updates to long running processes for Instructure Professional Services}
14
14
  spec.homepage = "https://github.com/CerebralStorm/pseng_ekg_client"
15
15
 
16
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
+ spec.files = %w[Rakefile pseng_ekg_client.gemspec]
17
+ spec.files += Dir.glob("lib/**/*.rb")
18
+ spec.test_files = Dir.glob("spec/**/*")
19
+
17
20
  spec.bindir = "exe"
18
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
22
  spec.require_paths = ["lib"]
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe PsengEkgClient do
4
+ it 'has a version number' do
5
+ expect(PsengEkgClient::VERSION).not_to be nil
6
+ end
7
+
8
+ it 'does something useful' do
9
+ expect(false).to eq(true)
10
+ end
11
+ end
@@ -0,0 +1,2 @@
1
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
+ require 'pseng_ekg_client'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pseng_ekg_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cody Tanner
@@ -80,17 +80,12 @@ executables: []
80
80
  extensions: []
81
81
  extra_rdoc_files: []
82
82
  files:
83
- - ".gitignore"
84
- - ".rspec"
85
- - ".travis.yml"
86
- - Gemfile
87
- - README.md
88
83
  - Rakefile
89
- - bin/console
90
- - bin/setup
91
84
  - lib/pseng_ekg_client.rb
92
85
  - lib/pseng_ekg_client/version.rb
93
86
  - pseng_ekg_client.gemspec
87
+ - spec/pseng_ekg_client_spec.rb
88
+ - spec/spec_helper.rb
94
89
  homepage: https://github.com/CerebralStorm/pseng_ekg_client
95
90
  licenses: []
96
91
  metadata: {}
@@ -114,5 +109,7 @@ rubygems_version: 2.2.3
114
109
  signing_key:
115
110
  specification_version: 4
116
111
  summary: Post data to allow monitoring of processes
117
- test_files: []
112
+ test_files:
113
+ - spec/pseng_ekg_client_spec.rb
114
+ - spec/spec_helper.rb
118
115
  has_rdoc:
data/.gitignore DELETED
@@ -1,9 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --format documentation
2
- --color
data/.travis.yml DELETED
@@ -1,4 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.1.6
4
- before_install: gem install bundler -v 1.10.3
data/Gemfile DELETED
@@ -1,2 +0,0 @@
1
- source 'https://rubygems.org'
2
- gemspec
data/README.md DELETED
@@ -1,36 +0,0 @@
1
- # PsengEkgClient
2
-
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/pseng_ekg_client`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
- ## Installation
8
-
9
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'pseng_ekg_client'
13
- ```
14
-
15
- And then execute:
16
-
17
- $ bundle
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install pseng_ekg_client
22
-
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
-
33
- ## Contributing
34
-
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/pseng_ekg_client.
36
-
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "pseng_ekg_client"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start
data/bin/setup DELETED
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
-
5
- bundle install
6
-
7
- # Do any other automated setup that you need to do here