tsig_api 1.0.5

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.
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = "tsig_api"
6
+ s.version = "1.0.5"
7
+ s.platform = Gem::Platform::RUBY
8
+ s.authors = ["Jeff Emminger", "Pete Taylor"]
9
+ s.email = ["jeff@7compass.com"]
10
+ s.homepage = "https://github.com/7compass/tsig_api"
11
+ s.summary = %q{TXTSignal.com API Client}
12
+ s.description = %q{TXTSignal.com API Client!}
13
+ s.rubyforge_project = "none"
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
+ s.require_paths = ["lib"]
19
+
20
+ s.license = 'MIT'
21
+ end
@@ -0,0 +1,13 @@
1
+ ---
2
+ :production:
3
+ :host: secure.txtsignal.com
4
+ :port: 443
5
+ :staging:
6
+ :host: staging.txtsignal.com
7
+ :port: 443
8
+ :test:
9
+ :host: secure.txtsignal.localhost
10
+ :port: 3000
11
+ :development:
12
+ :host: secure.txtsignal.localhost
13
+ :port: 3000
@@ -0,0 +1 @@
1
+ # Uninstall hook code here
metadata ADDED
@@ -0,0 +1,79 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tsig_api
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.5
5
+ platform: ruby
6
+ authors:
7
+ - Jeff Emminger
8
+ - Pete Taylor
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-08-06 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: TXTSignal.com API Client!
15
+ email:
16
+ - jeff@7compass.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - .gitignore
22
+ - MIT-LICENSE
23
+ - README.md
24
+ - Rakefile
25
+ - init.rb
26
+ - install.rb
27
+ - lib/tsig_api.rb
28
+ - lib/tsig_api/authorize.rb
29
+ - lib/tsig_api/base.rb
30
+ - lib/tsig_api/carrier.rb
31
+ - lib/tsig_api/contact.rb
32
+ - lib/tsig_api/group.rb
33
+ - lib/tsig_api/message.rb
34
+ - lib/tsig_api/remote_actions.rb
35
+ - lib/tsig_api/team.rb
36
+ - test/test_helper.rb
37
+ - test/tsig_api_authorize_test.rb
38
+ - test/tsig_api_carrier_test.rb
39
+ - test/tsig_api_contact_test.rb
40
+ - test/tsig_api_group_test.rb
41
+ - test/tsig_api_message_test.rb
42
+ - test/tsig_api_team_test.rb
43
+ - test/tsig_api_test.rb
44
+ - tsig_api.gemspec
45
+ - tsig_api.yml
46
+ - uninstall.rb
47
+ homepage: https://github.com/7compass/tsig_api
48
+ licenses:
49
+ - MIT
50
+ metadata: {}
51
+ post_install_message:
52
+ rdoc_options: []
53
+ require_paths:
54
+ - lib
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - '>='
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - '>='
63
+ - !ruby/object:Gem::Version
64
+ version: '0'
65
+ requirements: []
66
+ rubyforge_project: none
67
+ rubygems_version: 2.0.14
68
+ signing_key:
69
+ specification_version: 4
70
+ summary: TXTSignal.com API Client
71
+ test_files:
72
+ - test/test_helper.rb
73
+ - test/tsig_api_authorize_test.rb
74
+ - test/tsig_api_carrier_test.rb
75
+ - test/tsig_api_contact_test.rb
76
+ - test/tsig_api_group_test.rb
77
+ - test/tsig_api_message_test.rb
78
+ - test/tsig_api_team_test.rb
79
+ - test/tsig_api_test.rb