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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f327fb074c9a1af850779f7e6e270ac3fde7282f
4
- data.tar.gz: 12f3dc4bec2a775df3375f54f3af7fdb71c33f80
3
+ metadata.gz: ddac35717667230c45a6913c60c62c317afe8553
4
+ data.tar.gz: cf715294ef7d11c6de86f8a3cf511316f18c2a13
5
5
  SHA512:
6
- metadata.gz: 53d8dfdffb94342947e1b9663e3414457d18e6bcfc7b5b06782789ae81446777d8499b74f6cafcf76c73afcb148c2ed013755c90301b584849a1c88dc6c5dd14
7
- data.tar.gz: 9231db70a6079ba2e2c54fdd45a3c71cdb0c27204ee8c6b0a12a90b9c1228fc05cd7e514eed0bcbc89482866a049b6c42d1062fdaf8877cd9b91cab9e9a5674d
6
+ metadata.gz: e79fde09b4b5698292959578e17a46c9659dc40ea52d45e3ea705a4f98ef04ac66dc06a19bfdc2715ea8168bcc8d88bea729e3259a0d7a9f688939eeab9f67f4
7
+ data.tar.gz: 16da7ff21e953f9d9500af7abb4549e71bed67abbda9daa5cdf8c01937c2493b6b5a716b70b95e7a1530b1390072da2e9ba9d0e8abdcadc58f900505566a44b2
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in vasily.gemspec
4
+ gemspec
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
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,3 @@
1
+ module Vasily
2
+ VERSION = "0.1.0"
3
+ end
data/lib/vasily.rb CHANGED
@@ -1,5 +1,5 @@
1
- class Vasily
2
- def self.hi
3
- puts "Haiti, haiti..."
4
- end
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.0.0
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
- - Fedor Nikoalev
7
+ - Fedor Nikolaev
8
8
  autorequire:
9
- bindir: bin
9
+ bindir: exe
10
10
  cert_chain: []
11
- date: 2015-06-14 00:00:00.000000000 Z
12
- dependencies: []
13
- description: Gem for working with textocat.com api
14
- email: fsqcds@gmail.com
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.0.14
76
+ rubygems_version: 2.4.5
41
77
  signing_key:
42
78
  specification_version: 4
43
- summary: Vasily
79
+ summary: Ruby gem for textocat.com API
44
80
  test_files: []