vasily 0.0.0 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +9 -0
- data/Gemfile +4 -0
- data/README.md +35 -0
- data/Rakefile +1 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/vasily/version.rb +3 -0
- data/lib/vasily.rb +4 -4
- data/vasily.gemspec +22 -0
- metadata +49 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ddac35717667230c45a6913c60c62c317afe8553
|
4
|
+
data.tar.gz: cf715294ef7d11c6de86f8a3cf511316f18c2a13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e79fde09b4b5698292959578e17a46c9659dc40ea52d45e3ea705a4f98ef04ac66dc06a19bfdc2715ea8168bcc8d88bea729e3259a0d7a9f688939eeab9f67f4
|
7
|
+
data.tar.gz: 16da7ff21e953f9d9500af7abb4549e71bed67abbda9daa5cdf8c01937c2493b6b5a716b70b95e7a1530b1390072da2e9ba9d0e8abdcadc58f900505566a44b2
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
![Vasily](https://cloud.githubusercontent.com/assets/429423/8151229/e22ae34a-12d5-11e5-8fe1-337c8209fe24.png)
|
2
|
+
# Vasily
|
3
|
+
|
4
|
+
Vasily is a gem for using [textocat.com](http://textocat.com/) [API](http://docs.textocat.com/) from Ruby.
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
gem 'vasily'
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
|
16
|
+
$ bundle
|
17
|
+
|
18
|
+
Or install it yourself as:
|
19
|
+
|
20
|
+
$ gem install vasily
|
21
|
+
|
22
|
+
## Usage
|
23
|
+
|
24
|
+
TODO: Write usage instructions here
|
25
|
+
|
26
|
+
## Development
|
27
|
+
|
28
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
29
|
+
|
30
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
31
|
+
|
32
|
+
## Contributing
|
33
|
+
|
34
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/fedorn/vasily.
|
35
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "vasily"
|
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
|
data/bin/setup
ADDED
data/lib/vasily.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
require "vasily/version"
|
2
|
+
|
3
|
+
module Vasily
|
4
|
+
# Your code goes here...
|
5
5
|
end
|
data/vasily.gemspec
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'vasily/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "vasily"
|
8
|
+
spec.version = Vasily::VERSION
|
9
|
+
spec.authors = ["Fedor Nikolaev"]
|
10
|
+
spec.email = ["fsqcds@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Ruby gem for textocat.com API}
|
13
|
+
spec.homepage = "https://github.com/fedorn/vasily"
|
14
|
+
|
15
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
16
|
+
spec.bindir = "exe"
|
17
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
18
|
+
spec.require_paths = ["lib"]
|
19
|
+
|
20
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
21
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
22
|
+
end
|
metadata
CHANGED
@@ -1,25 +1,61 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vasily
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Fedor
|
7
|
+
- Fedor Nikolaev
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
12
|
-
dependencies:
|
13
|
-
|
14
|
-
|
11
|
+
date: 2015-06-15 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: '1.10'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.10'
|
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
|
+
description:
|
42
|
+
email:
|
43
|
+
- fsqcds@gmail.com
|
15
44
|
executables: []
|
16
45
|
extensions: []
|
17
46
|
extra_rdoc_files: []
|
18
47
|
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- Gemfile
|
50
|
+
- README.md
|
51
|
+
- Rakefile
|
52
|
+
- bin/console
|
53
|
+
- bin/setup
|
19
54
|
- lib/vasily.rb
|
55
|
+
- lib/vasily/version.rb
|
56
|
+
- vasily.gemspec
|
20
57
|
homepage: https://github.com/fedorn/vasily
|
21
|
-
licenses:
|
22
|
-
- MIT
|
58
|
+
licenses: []
|
23
59
|
metadata: {}
|
24
60
|
post_install_message:
|
25
61
|
rdoc_options: []
|
@@ -27,18 +63,18 @@ require_paths:
|
|
27
63
|
- lib
|
28
64
|
required_ruby_version: !ruby/object:Gem::Requirement
|
29
65
|
requirements:
|
30
|
-
- -
|
66
|
+
- - ">="
|
31
67
|
- !ruby/object:Gem::Version
|
32
68
|
version: '0'
|
33
69
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
34
70
|
requirements:
|
35
|
-
- -
|
71
|
+
- - ">="
|
36
72
|
- !ruby/object:Gem::Version
|
37
73
|
version: '0'
|
38
74
|
requirements: []
|
39
75
|
rubyforge_project:
|
40
|
-
rubygems_version: 2.
|
76
|
+
rubygems_version: 2.4.5
|
41
77
|
signing_key:
|
42
78
|
specification_version: 4
|
43
|
-
summary:
|
79
|
+
summary: Ruby gem for textocat.com API
|
44
80
|
test_files: []
|