riq 0.8.3 → 0.8.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 34a510c0f7cad37904ababa9279e498c71e0bb9c
4
- data.tar.gz: 661d369470ad7fa0be4588036ab57206f41a4e55
3
+ metadata.gz: ed36a60cb8ed191a2a696cbb7f3346f0c2e0449a
4
+ data.tar.gz: 303fe5f58418cfddbdc102e31b54d1ea429dfe6f
5
5
  SHA512:
6
- metadata.gz: 71590ee05218590ebb4adc49aebeb462958bf843448d025c466f0b8a53b20ce4b0893d8bf85509790321e8deafc996eda3700ad9a5ad5aa1d8025625d956f386
7
- data.tar.gz: c3c788129202330ad448cff886a0981b1a594d4808e806f4f444815aefd5929d990aee56936c4b03b143c7f955b03779f49aace5f6645544ce9a6f2e1aec5e48
6
+ metadata.gz: d0a6866a3efb4476e3cb894db8749d7aec3a3710e59e9b057de5640ec313c74b6d3e27861c6735089a45564a8deb285b9c5db6583ae5f604aad6f633f187f892
7
+ data.tar.gz: c2c9514f5517cc9fc87f7f1a14ca855399b1d23f3e2bbc089b122deca1a34e07072ca1b699a6686c76a6cc80db9a3fd80c38e12bca857f6079ee14d404d51557
data/.gitignore CHANGED
@@ -22,6 +22,7 @@ build/
22
22
  /_yardoc/
23
23
  /doc/
24
24
  /rdoc/
25
+ Gemfile.lock
25
26
 
26
27
  ## Environment normalisation:
27
28
  /.bundle/
@@ -0,0 +1,3 @@
1
+ # Base file from which everything else is included
2
+
3
+ Dir[__dir__ + '/riq/*.rb'].each {|file| require file }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,3 @@
1
+ module RIQ
2
+ VERSION = "0.8.5"
3
+ end
@@ -0,0 +1,29 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'riq/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'riq'
8
+ spec.version = RIQ::VERSION
9
+ spec.authors = ['David Brownman']
10
+ spec.email = ['david@relateiq.com']
11
+ spec.homepage = "https://github.com/relateiq/ruby-sdk"
12
+ spec.summary = 'Ruby RIQ API client'
13
+ spec.description = 'Full featured ruby client for interacting with the RelateIQ API'
14
+ spec.license = 'MIT'
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ # spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ['lib']
19
+
20
+ spec.required_ruby_version = '>= 1.9.3'
21
+ # spec.post_install_message = 'The power of relationship intelligence is in your hands!'
22
+
23
+ # prod dependencies
24
+ spec.add_dependency 'httparty', '~> 0.13'
25
+
26
+ # dev dependencies
27
+ spec.add_development_dependency 'bundler', '~> 1.7'
28
+ # spec.add_development_dependency 'rake', '~> 10.0'
29
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: riq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.3
4
+ version: 0.8.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Brownman
@@ -48,18 +48,20 @@ files:
48
48
  - ".gitignore"
49
49
  - ".yardopts"
50
50
  - Gemfile
51
- - lib/relateiq.rb
52
- - lib/relateiq/account.rb
53
- - lib/relateiq/batch_manager.rb
54
- - lib/relateiq/client.rb
55
- - lib/relateiq/contact.rb
56
- - lib/relateiq/error.rb
57
- - lib/relateiq/events.rb
58
- - lib/relateiq/list.rb
59
- - lib/relateiq/list_item_manager.rb
60
- - lib/relateiq/listitem.rb
61
- - lib/relateiq/riq_obj.rb
62
- - lib/relateiq/user.rb
51
+ - lib/riq.rb
52
+ - lib/riq/account.rb
53
+ - lib/riq/batch_manager.rb
54
+ - lib/riq/client.rb
55
+ - lib/riq/contact.rb
56
+ - lib/riq/error.rb
57
+ - lib/riq/events.rb
58
+ - lib/riq/list.rb
59
+ - lib/riq/list_item_manager.rb
60
+ - lib/riq/listitem.rb
61
+ - lib/riq/riq_obj.rb
62
+ - lib/riq/user.rb
63
+ - lib/riq/version.rb
64
+ - riq.gemspec
63
65
  - test/test.rb
64
66
  - test/test_account.rb
65
67
  - test/test_batch_manager.rb
@@ -1,3 +0,0 @@
1
- # Base file from which everything else is included
2
-
3
- Dir[__dir__ + '/relateiq/*.rb'].each {|file| require file }