happyscribe 1.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 +11 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +35 -0
- data/LICENSE.txt +21 -0
- data/README.md +94 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/happyscribe-0.1.0.gem +0 -0
- data/happyscribe-0.2.0.gem +0 -0
- data/happyscribe.gemspec +34 -0
- data/lib/happyscribe.rb +112 -0
- data/lib/happyscribe/version.rb +3 -0
- metadata +106 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e1a011c300d03168b3abc563dec1b329c0505ce6813287bd189ea9a468c32ce0
|
4
|
+
data.tar.gz: bedb5a9e2a148ef594db3956f17026e62ab4e2286e2909032911cb098c3dec1e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 02b76a0d134f552a724fedeead7783fb26c3dc07b73724b80e4acef5127145395826a01586f32b9ac88bcd3f69e8185d75abe0fcab51ff3cc1459871827aa525
|
7
|
+
data.tar.gz: efb6e87b57cb477ed760563ca24369c507f82be2cfcab540a4a99731afca7631d26da517c586178381489f12431e1e625c395f16ae1ddc6f56d647433b2938b3
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at maildejc@hotmail.be. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
happyscribe (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.4.4)
|
10
|
+
rake (10.5.0)
|
11
|
+
rspec (3.9.0)
|
12
|
+
rspec-core (~> 3.9.0)
|
13
|
+
rspec-expectations (~> 3.9.0)
|
14
|
+
rspec-mocks (~> 3.9.0)
|
15
|
+
rspec-core (3.9.2)
|
16
|
+
rspec-support (~> 3.9.3)
|
17
|
+
rspec-expectations (3.9.2)
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
+
rspec-support (~> 3.9.0)
|
20
|
+
rspec-mocks (3.9.1)
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
+
rspec-support (~> 3.9.0)
|
23
|
+
rspec-support (3.9.3)
|
24
|
+
|
25
|
+
PLATFORMS
|
26
|
+
ruby
|
27
|
+
|
28
|
+
DEPENDENCIES
|
29
|
+
bundler (~> 2.0)
|
30
|
+
happyscribe!
|
31
|
+
rake (~> 10.0)
|
32
|
+
rspec (~> 3.0)
|
33
|
+
|
34
|
+
BUNDLED WITH
|
35
|
+
2.0.2
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 jean-christophe bauduin
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
# Happyscribe client for Ruby
|
2
|
+
This is a very basic NON-OFFICIAL gem based on the happyscribes api (https://dev.happyscribe.co/). It works out of the box and makes the usage of the api much easier ;-)
|
3
|
+
|
4
|
+
## dependencies
|
5
|
+
because no one love to have 10k of dependencies, this gem uses only: net/http,uri,json and securerandom. so do not worry about the size of the gem.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'happyscribe'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install happyscribe
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
do not forget to require the gem :
|
26
|
+
```ruby
|
27
|
+
require "happyscribe"
|
28
|
+
|
29
|
+
```
|
30
|
+
|
31
|
+
### nota bene
|
32
|
+
all the functions sends you back a parsed json (array) with the response of the api.
|
33
|
+
|
34
|
+
### some Ruby please !
|
35
|
+
create an instance:
|
36
|
+
```ruby
|
37
|
+
instance = Happyscribe::Transcript.new(my_api_token)
|
38
|
+
```
|
39
|
+
create a transcription. you can use all of the avaiable language codes (https://dev.happyscribe.co/#languages)
|
40
|
+
```ruby
|
41
|
+
instance.create(public_url_to_audio,"fr-FR")
|
42
|
+
```
|
43
|
+
Good to know: if you are working with ActiveStorage, you can create a public_url with url_for()
|
44
|
+
|
45
|
+
retrieve all the transcriptions
|
46
|
+
```ruby
|
47
|
+
instance.list
|
48
|
+
```
|
49
|
+
retrieve all a transcription
|
50
|
+
```ruby
|
51
|
+
instance.retrieve(transcription_id)
|
52
|
+
```
|
53
|
+
create an export
|
54
|
+
```ruby
|
55
|
+
instance.create_export(transcription_id, format,show_speakers,show_comments,show_highlights)
|
56
|
+
# by default, format="txt", show_speakers,show_comments,... = false
|
57
|
+
# so you can just do
|
58
|
+
instance.create_export(transcription_id, format)
|
59
|
+
```
|
60
|
+
|
61
|
+
retrieve an export
|
62
|
+
```ruby
|
63
|
+
instance.retrieve_export(export_id)
|
64
|
+
```
|
65
|
+
## Contributing
|
66
|
+
|
67
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/happyscribe. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
68
|
+
|
69
|
+
|
70
|
+
## License
|
71
|
+
|
72
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
73
|
+
|
74
|
+
The MIT License (MIT)
|
75
|
+
|
76
|
+
Copyright (c) 2020 jean-christophe bauduin
|
77
|
+
|
78
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
79
|
+
of this software and associated documentation files (the "Software"), to deal
|
80
|
+
in the Software without restriction, including without limitation the rights
|
81
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
82
|
+
copies of the Software, and to permit persons to whom the Software is
|
83
|
+
furnished to do so, subject to the following conditions:
|
84
|
+
|
85
|
+
The above copyright notice and this permission notice shall be included in
|
86
|
+
all copies or substantial portions of the Software.
|
87
|
+
|
88
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
89
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
90
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
91
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
92
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
93
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
94
|
+
THE SOFTWARE.
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "happyscribe"
|
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(__FILE__)
|
data/bin/setup
ADDED
Binary file
|
Binary file
|
data/happyscribe.gemspec
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
lib = File.expand_path("lib", __dir__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require "happyscribe/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "happyscribe"
|
7
|
+
spec.version = Happyscribe::VERSION
|
8
|
+
spec.authors = ["jean-christophe bauduin"]
|
9
|
+
spec.email = [""]
|
10
|
+
|
11
|
+
spec.summary = %q{Very simple ruby gem for the transcription api of happyscribe}
|
12
|
+
spec.description = %q{the api of happyscribe is quite verbose, this ruby gem make it more easy to use (I hope so)}
|
13
|
+
spec.homepage = "https://github.com/jbd0101/happyscribe-client"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
17
|
+
|
18
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
19
|
+
spec.metadata["source_code_uri"] = "https://github.com/jbd0101/happyscribe-client"
|
20
|
+
spec.metadata["changelog_uri"] = "https://github.com/jbd0101/happyscribe-client"
|
21
|
+
|
22
|
+
# Specify which files should be added to the gem when it is released.
|
23
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
24
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
25
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
26
|
+
end
|
27
|
+
spec.bindir = "exe"
|
28
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
29
|
+
spec.require_paths = ["lib"]
|
30
|
+
|
31
|
+
spec.add_development_dependency "bundler", "~> 2.0"
|
32
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
33
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
34
|
+
end
|
data/lib/happyscribe.rb
ADDED
@@ -0,0 +1,112 @@
|
|
1
|
+
require "happyscribe/version"
|
2
|
+
require 'net/http'
|
3
|
+
require 'uri'
|
4
|
+
require 'json'
|
5
|
+
require "securerandom"
|
6
|
+
module Happyscribe
|
7
|
+
class Error < StandardError; end
|
8
|
+
# Your code goes here...
|
9
|
+
class Transcript
|
10
|
+
def initialize(key)
|
11
|
+
@api_key = key
|
12
|
+
@base = "https://www.happyscribe.co/api/v1"
|
13
|
+
@auth = "Bearer #{@api_key}"
|
14
|
+
end
|
15
|
+
def create(url,title="",language="fr-FR")
|
16
|
+
endpoint = "#{@base}/transcriptions"
|
17
|
+
uri = URI.parse(endpoint)
|
18
|
+
request = Net::HTTP::Post.new(uri)
|
19
|
+
request.content_type = "application/json"
|
20
|
+
request["Authorization"] = @auth
|
21
|
+
|
22
|
+
request.body = JSON.dump({
|
23
|
+
"transcription" => {
|
24
|
+
"name" => (title=="" ? SecureRandom.alphanumeric : title ),
|
25
|
+
"language" => language,
|
26
|
+
"tmp_url" => url
|
27
|
+
}
|
28
|
+
})
|
29
|
+
|
30
|
+
req_options = {
|
31
|
+
use_ssl: uri.scheme == "https",
|
32
|
+
}
|
33
|
+
|
34
|
+
response = Net::HTTP.start(uri.hostname, uri.port, req_options) do |http|
|
35
|
+
http.request(request)
|
36
|
+
end
|
37
|
+
return JSON.parse response.body
|
38
|
+
end
|
39
|
+
def list
|
40
|
+
endpoint = "#{@base}/transcriptions"
|
41
|
+
uri = URI.parse(endpoint)
|
42
|
+
request = Net::HTTP::Get.new(uri)
|
43
|
+
request["Authorization"] = @auth
|
44
|
+
|
45
|
+
req_options = {
|
46
|
+
use_ssl: uri.scheme == "https",
|
47
|
+
}
|
48
|
+
|
49
|
+
response = Net::HTTP.start(uri.hostname, uri.port, req_options) do |http|
|
50
|
+
http.request(request)
|
51
|
+
end
|
52
|
+
return JSON.parse response.body
|
53
|
+
end
|
54
|
+
def retrieve(id)
|
55
|
+
endpoint = "#{@base}/transcriptions/#{id}"
|
56
|
+
|
57
|
+
uri = URI.parse(endpoint)
|
58
|
+
request = Net::HTTP::Get.new(uri)
|
59
|
+
request["Authorization"] = @auth
|
60
|
+
|
61
|
+
req_options = {
|
62
|
+
use_ssl: uri.scheme == "https",
|
63
|
+
}
|
64
|
+
response = Net::HTTP.start(uri.hostname, uri.port, req_options) do |http|
|
65
|
+
http.request(request)
|
66
|
+
end
|
67
|
+
return JSON.parse(response.body)
|
68
|
+
end
|
69
|
+
def create_export(id,format="html",timestamps=false,speakers=false,comments=false,highlights=false)
|
70
|
+
uri = URI.parse("#{@base}/exports")
|
71
|
+
request = Net::HTTP::Post.new(uri)
|
72
|
+
request.content_type = "application/json"
|
73
|
+
request["Authorization"] = @auth
|
74
|
+
request.body = JSON.dump({
|
75
|
+
"export" => {
|
76
|
+
"format" => format,
|
77
|
+
"show_timestamps" => timestamps,
|
78
|
+
"show_speakers" => speakers,
|
79
|
+
"show_comments" => comments,
|
80
|
+
"show_highlights" => highlights,
|
81
|
+
"transcription_ids" => [
|
82
|
+
id
|
83
|
+
]
|
84
|
+
}
|
85
|
+
})
|
86
|
+
|
87
|
+
req_options = {
|
88
|
+
use_ssl: uri.scheme == "https",
|
89
|
+
}
|
90
|
+
|
91
|
+
response = Net::HTTP.start(uri.hostname, uri.port, req_options) do |http|
|
92
|
+
http.request(request)
|
93
|
+
end
|
94
|
+
return JSON.parse response.body
|
95
|
+
end
|
96
|
+
def retrieve_export(export_id)
|
97
|
+
endpoint = "#{@base}/exports/#{export_id}"
|
98
|
+
uri = URI.parse(endpoint)
|
99
|
+
request = Net::HTTP::Get.new(uri)
|
100
|
+
request["Authorization"] = @auth
|
101
|
+
|
102
|
+
req_options = {
|
103
|
+
use_ssl: uri.scheme == "https",
|
104
|
+
}
|
105
|
+
|
106
|
+
response = Net::HTTP.start(uri.hostname, uri.port, req_options) do |http|
|
107
|
+
http.request(request)
|
108
|
+
end
|
109
|
+
return JSON.parse response.body
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
metadata
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: happyscribe
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- jean-christophe bauduin
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-07-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
description: the api of happyscribe is quite verbose, this ruby gem make it more easy
|
56
|
+
to use (I hope so)
|
57
|
+
email:
|
58
|
+
- ''
|
59
|
+
executables: []
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- ".gitignore"
|
64
|
+
- ".rspec"
|
65
|
+
- ".travis.yml"
|
66
|
+
- CODE_OF_CONDUCT.md
|
67
|
+
- Gemfile
|
68
|
+
- Gemfile.lock
|
69
|
+
- LICENSE.txt
|
70
|
+
- README.md
|
71
|
+
- Rakefile
|
72
|
+
- bin/console
|
73
|
+
- bin/setup
|
74
|
+
- happyscribe-0.1.0.gem
|
75
|
+
- happyscribe-0.2.0.gem
|
76
|
+
- happyscribe.gemspec
|
77
|
+
- lib/happyscribe.rb
|
78
|
+
- lib/happyscribe/version.rb
|
79
|
+
homepage: https://github.com/jbd0101/happyscribe-client
|
80
|
+
licenses:
|
81
|
+
- MIT
|
82
|
+
metadata:
|
83
|
+
allowed_push_host: https://rubygems.org
|
84
|
+
homepage_uri: https://github.com/jbd0101/happyscribe-client
|
85
|
+
source_code_uri: https://github.com/jbd0101/happyscribe-client
|
86
|
+
changelog_uri: https://github.com/jbd0101/happyscribe-client
|
87
|
+
post_install_message:
|
88
|
+
rdoc_options: []
|
89
|
+
require_paths:
|
90
|
+
- lib
|
91
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: '0'
|
101
|
+
requirements: []
|
102
|
+
rubygems_version: 3.0.4
|
103
|
+
signing_key:
|
104
|
+
specification_version: 4
|
105
|
+
summary: Very simple ruby gem for the transcription api of happyscribe
|
106
|
+
test_files: []
|