callrail 0.2.7 → 0.2.9

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.
data/callrail.gemspec CHANGED
@@ -1,39 +1,39 @@
1
-
2
- lib = File.expand_path("../lib", __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "callrail/version"
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "callrail"
8
- spec.version = Callrail::VERSION
9
- spec.authors = ["Michael Hoskison"]
10
- spec.email = ["mhoskison@etnainteractive.com"]
11
-
12
- spec.summary = %q{Used to access the CallRail api}
13
- spec.description = %q{CallRail API}
14
- spec.homepage = "https://github.com/mhoskiso/callrail.git"
15
- spec.license = "MIT"
16
-
17
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
- # to allow pushing to a single host or delete this section to allow pushing to any host.
19
- if spec.respond_to?(:metadata)
20
- spec.metadata['allowed_push_host'] = "https://rubygems.org"
21
- else
22
- raise "RubyGems 2.0 or newer is required to protect against " \
23
- "public gem pushes."
24
- end
25
-
26
- spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
- f.match(%r{^(test|spec|features)/})
28
- end
29
- spec.bindir = "exe"
30
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
- spec.require_paths = ["lib"]
32
-
33
- spec.add_development_dependency "bundler", "~> 1.16"
34
- spec.add_development_dependency "rake", "~> 10.0"
35
- spec.add_development_dependency "rspec", "~> 3.0"
36
-
37
- spec.add_dependency "rest-client", "~> 2.0.2"
38
- spec.add_dependency "json", "~> 2.1.0"
39
- end
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "callrail/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "callrail"
8
+ spec.version = Callrail::VERSION
9
+ spec.authors = ["Michael Hoskison"]
10
+ spec.email = ["mhoskison@etnainteractive.com"]
11
+
12
+ spec.summary = %q{Used to access the CallRail api}
13
+ spec.description = %q{CallRail API}
14
+ spec.homepage = "https://github.com/mhoskiso/callrail.git"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_development_dependency "bundler", "~> 2.3.3"
34
+ spec.add_development_dependency "rake", "~> 13.0.6"
35
+ spec.add_development_dependency "rspec", "~> 3.12"
36
+
37
+ spec.add_dependency "rest-client", "~> 2.1.0"
38
+ spec.add_dependency "json", "~> 2.6.3"
39
+ end
@@ -1,3 +1,3 @@
1
- module Callrail
2
- VERSION = "0.2.7"
3
- end
1
+ module Callrail
2
+ VERSION = "0.2.9"
3
+ end