transcribeme 0.0.1 → 0.0.2.pre
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 +4 -4
- data/README.md +16 -0
- data/lib/transcribeme/version.rb +1 -1
- data/transcribeme.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b5d046f4591254110b90f7d33eddbba944fe452
|
|
4
|
+
data.tar.gz: 96f9d3c8b71f852bb8fa7b54bef1da291747b4e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d6e91c96e9a5e52fb77a1b420fa09cb44ce6fa1058983e70b7fa61189fa7382c715647e802f4c79471872650bd2b39ec92dc34ef2ef33f1d1257709dd47f6926
|
|
7
|
+
data.tar.gz: 97e39ba2bf525d903466cb8b011b5f3102ed2db7e541c458d6b05a0949b0c29e8f897f6e83ac65a3d38d151ee02da6d341bd77f1fbe3d05320c5141b283b0755
|
data/README.md
CHANGED
|
@@ -22,6 +22,20 @@ Or install it yourself as:
|
|
|
22
22
|
|
|
23
23
|
TODO: Write usage instructions here
|
|
24
24
|
|
|
25
|
+
## Documentation
|
|
26
|
+
|
|
27
|
+
Documentation follows [Tomdoc](http://tomdoc.org) and is generated by [YARD](http://yardoc.org)
|
|
28
|
+
|
|
29
|
+
The documentation can be [browsed online](http://rubydoc.info/github/tuttinator/transcribeme/master/frames)
|
|
30
|
+
|
|
31
|
+
## Roadmap
|
|
32
|
+
|
|
33
|
+
- [ ] Write specs
|
|
34
|
+
- [ ] Set up Travis-CI and document supported Ruby versions
|
|
35
|
+
- [ ] Investigate Windows Azure Blob storage file upload
|
|
36
|
+
- [ ] Document SOAP calls and error messages
|
|
37
|
+
- [ ] Complete YARD documentation
|
|
38
|
+
|
|
25
39
|
## Contributing
|
|
26
40
|
|
|
27
41
|
1. Fork it
|
|
@@ -29,3 +43,5 @@ TODO: Write usage instructions here
|
|
|
29
43
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
30
44
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
31
45
|
5. Create new Pull Request
|
|
46
|
+
|
|
47
|
+
|
data/lib/transcribeme/version.rb
CHANGED
data/transcribeme.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["caleb@prettymint.co.nz"]
|
|
11
11
|
spec.description = %q{This gem is a Ruby wrapper for the TranscribeMe SOAP API, built on Savon}
|
|
12
12
|
spec.summary = %q{Ruby wrapper around the TranscribeMe SOAP API}
|
|
13
|
-
spec.homepage = ""
|
|
13
|
+
spec.homepage = "http://tuttinator.github.io/transcribeme/"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: transcribeme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2.pre
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tuttinator
|
|
@@ -120,7 +120,7 @@ files:
|
|
|
120
120
|
- lib/transcribeme/version.rb
|
|
121
121
|
- spec/spec_helper.rb
|
|
122
122
|
- transcribeme.gemspec
|
|
123
|
-
homepage:
|
|
123
|
+
homepage: http://tuttinator.github.io/transcribeme/
|
|
124
124
|
licenses:
|
|
125
125
|
- MIT
|
|
126
126
|
metadata: {}
|
|
@@ -135,9 +135,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
135
135
|
version: '0'
|
|
136
136
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
137
137
|
requirements:
|
|
138
|
-
- - '
|
|
138
|
+
- - '>'
|
|
139
139
|
- !ruby/object:Gem::Version
|
|
140
|
-
version:
|
|
140
|
+
version: 1.3.1
|
|
141
141
|
requirements: []
|
|
142
142
|
rubyforge_project:
|
|
143
143
|
rubygems_version: 2.0.3
|