asterisk 3.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/.gitignore +66 -0
- data/README.md +5 -0
- data/Rakefile +1 -0
- data/asterisk.gemspec +23 -0
- data/lib/asterisk.rb +1 -0
- data/lib/asterisk/version.rb +3 -0
- metadata +74 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 74e373357990d154fe48c58b9c345634b16fe6dc
|
|
4
|
+
data.tar.gz: 2c0bcf2fa3ac6c4a693ba71ddbf885f95ef3b7d7
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 78789a4d32668ab83be7f0ba680810783ee696a1554989a16649f82e496e95872ec6687401b55ee26e501e66ea91ac3aed5956215d1a66a6b7c9592289ed42ae
|
|
7
|
+
data.tar.gz: b2ef5536582687bd498d85fe41bda193cfdd8cc47828040d30ae887397e6903b91aab8c8ade7fda7a74b1846c09646e197f79cf8ebb4ade5231dd26492a7cd08
|
data/.gitignore
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Compiled source #
|
|
2
|
+
###################
|
|
3
|
+
*.com
|
|
4
|
+
*.class
|
|
5
|
+
*.dll
|
|
6
|
+
*.exe
|
|
7
|
+
*.o
|
|
8
|
+
*.so
|
|
9
|
+
|
|
10
|
+
# Packages #
|
|
11
|
+
############
|
|
12
|
+
# it's better to unpack these files and commit the raw source
|
|
13
|
+
# git has its own built in compression methods
|
|
14
|
+
*.7z
|
|
15
|
+
*.dmg
|
|
16
|
+
*.gz
|
|
17
|
+
*.iso
|
|
18
|
+
*.jar
|
|
19
|
+
*.rar
|
|
20
|
+
*.tar
|
|
21
|
+
*.zip
|
|
22
|
+
|
|
23
|
+
# Logs and databases #
|
|
24
|
+
######################
|
|
25
|
+
*.log
|
|
26
|
+
*.sql
|
|
27
|
+
*.sqlite
|
|
28
|
+
*.sqlite3
|
|
29
|
+
|
|
30
|
+
# OS generated files #
|
|
31
|
+
######################
|
|
32
|
+
.DS_Store
|
|
33
|
+
.DS_Store?
|
|
34
|
+
._*
|
|
35
|
+
.Spotlight-V100
|
|
36
|
+
.Trashes
|
|
37
|
+
ehthumbs.db
|
|
38
|
+
Thumbs.db
|
|
39
|
+
|
|
40
|
+
# Rails
|
|
41
|
+
*.rbc
|
|
42
|
+
*.sassc
|
|
43
|
+
.sass-cache
|
|
44
|
+
capybara-*.html
|
|
45
|
+
.rspec
|
|
46
|
+
/log
|
|
47
|
+
/tmp
|
|
48
|
+
/db/*.sqlite3
|
|
49
|
+
/public/system
|
|
50
|
+
/coverage/
|
|
51
|
+
/spec/tmp
|
|
52
|
+
**.orig
|
|
53
|
+
rerun.txt
|
|
54
|
+
pickle-email-*.html
|
|
55
|
+
config/initializers/secret_token.rb
|
|
56
|
+
config/secrets.yml
|
|
57
|
+
|
|
58
|
+
## Environment normalisation:
|
|
59
|
+
/.bundle
|
|
60
|
+
/vendor/bundle
|
|
61
|
+
|
|
62
|
+
# these should all be checked in to normalise the environment:
|
|
63
|
+
# Gemfile.lock, .ruby-version, .ruby-gemset
|
|
64
|
+
|
|
65
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
66
|
+
.rvmrc
|
data/README.md
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "bundler/gem_tasks"
|
data/asterisk.gemspec
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'asterisk/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "asterisk"
|
|
8
|
+
spec.version = Asterisk::VERSION
|
|
9
|
+
spec.authors = ["Jan Svoboda"]
|
|
10
|
+
spec.email = ["jan@mluv.cz"]
|
|
11
|
+
|
|
12
|
+
spec.summary = %q{This gem is a shorthand for installing Asterisk ARI Client library for Ruby.}
|
|
13
|
+
spec.description = %q{This gem is a shorthand for installing Asterisk ARI Client library for Ruby.}
|
|
14
|
+
spec.homepage = "https://github.com/svoboda-jan/asterisk-ari"
|
|
15
|
+
spec.post_install_message = "\n******************************************************************\n* *\n* ! ! ! WARNING ! ! ! *\n* *\n* Welcome to The Exciting World of Telecommunications and Ruby ! *\n* *\n******************************************************************\n\n"
|
|
16
|
+
|
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
18
|
+
spec.bindir = "exe"
|
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
|
+
spec.require_paths = ["lib"]
|
|
21
|
+
|
|
22
|
+
spec.add_development_dependency "asterisk-ari-client"
|
|
23
|
+
end
|
data/lib/asterisk.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "asterisk/ari/client"
|
metadata
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: asterisk
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 3.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Jan Svoboda
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-11-30 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: asterisk-ari-client
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
description: This gem is a shorthand for installing Asterisk ARI Client library for
|
|
28
|
+
Ruby.
|
|
29
|
+
email:
|
|
30
|
+
- jan@mluv.cz
|
|
31
|
+
executables: []
|
|
32
|
+
extensions: []
|
|
33
|
+
extra_rdoc_files: []
|
|
34
|
+
files:
|
|
35
|
+
- ".gitignore"
|
|
36
|
+
- README.md
|
|
37
|
+
- Rakefile
|
|
38
|
+
- asterisk.gemspec
|
|
39
|
+
- lib/asterisk.rb
|
|
40
|
+
- lib/asterisk/version.rb
|
|
41
|
+
homepage: https://github.com/svoboda-jan/asterisk-ari
|
|
42
|
+
licenses: []
|
|
43
|
+
metadata: {}
|
|
44
|
+
post_install_message: |2+
|
|
45
|
+
|
|
46
|
+
******************************************************************
|
|
47
|
+
* *
|
|
48
|
+
* ! ! ! WARNING ! ! ! *
|
|
49
|
+
* *
|
|
50
|
+
* Welcome to The Exciting World of Telecommunications and Ruby ! *
|
|
51
|
+
* *
|
|
52
|
+
******************************************************************
|
|
53
|
+
|
|
54
|
+
rdoc_options: []
|
|
55
|
+
require_paths:
|
|
56
|
+
- lib
|
|
57
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - ">="
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: '0'
|
|
67
|
+
requirements: []
|
|
68
|
+
rubyforge_project:
|
|
69
|
+
rubygems_version: 2.5.0
|
|
70
|
+
signing_key:
|
|
71
|
+
specification_version: 4
|
|
72
|
+
summary: This gem is a shorthand for installing Asterisk ARI Client library for Ruby.
|
|
73
|
+
test_files: []
|
|
74
|
+
has_rdoc:
|