rubogram 0.2.0 → 0.2.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: faf20d7e9e9f962c595439c564a66e582e1db79b
4
- data.tar.gz: 1e911640f6adf443188dd995deded04569e6e177
3
+ metadata.gz: 7dced9c0ee759364f899a8532ca8e6299726884c
4
+ data.tar.gz: 738119a36dc51592861bc37d07f5d0c823cc5495
5
5
  SHA512:
6
- metadata.gz: f95c974e87cf13e13fddff09f6e4ec5716042232fee452b3987c622e6f9f3e5d62b17737160caab9533710a78d502c329117ce858a1cef1ccdecf7be1c1fc686
7
- data.tar.gz: 3fdd6010c4933787143a5860ca335fa86682552fe385cad0b554241191a25f5ca232d7eaf2d1824f476538315c1daa9e5d82e81627a29ec1f29e3afb7ed7c690
6
+ metadata.gz: 4db37928f42876941e4a5906b74ff8f96270e0a2617bd20ba067f015bdf982222dc5c4ae97ef41b6c760897761830fe6680c1004f3e837983ae91e3091266346
7
+ data.tar.gz: 438a435031aa26253e18db1adb735c8933a04a333042f66168332f3600eb76011f5edf45216d487473b4111983ff3792f12607f764c282fb2106b26a774f747e
data/.travis.yml CHANGED
@@ -1,5 +1,10 @@
1
1
  sudo: false
2
2
  language: ruby
3
3
  rvm:
4
- - 2.3.3
4
+ - 2.1
5
+ - 2.2
6
+ - 2.3.0
7
+ - 2.4.0
8
+ - jruby-9.1.5.0
9
+ - jruby-9.1.4.0
5
10
  before_install: gem install bundler -v 1.13.6
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Rubogram
2
2
 
3
+ [![Build Status](https://travis-ci.org/4ndv/rubogram.svg?branch=master)](https://travis-ci.org/4ndv/rubogram)
4
+ [![Coverage Status](https://coveralls.io/repos/github/4ndv/rubogram/badge.svg?branch=master)](https://coveralls.io/github/4ndv/rubogram?branch=master)
5
+
3
6
  Rubogram is a small Faraday-based library to communicate with Telegram Bot API
4
7
 
5
8
  ## Installation
@@ -77,7 +80,9 @@ Where:
77
80
 
78
81
  ## Development
79
82
 
80
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
83
+ After checking out the repo, run `bin/setup` to install dependencies.
84
+ To run tests you must specify two environment variables: `TOKEN` with your bot token and `CHATID` with YOUR id.
85
+ Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
81
86
 
82
87
  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).
83
88
 
@@ -1,3 +1,3 @@
1
1
  module Rubogram
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
data/rubogram.gemspec CHANGED
@@ -26,4 +26,5 @@ Gem::Specification.new do |spec|
26
26
  spec.add_development_dependency "bundler", "~> 1.13"
27
27
  spec.add_development_dependency "rake", "~> 10.0"
28
28
  spec.add_development_dependency "rspec", "~> 3.0"
29
+ spec.add_development_dependency "coveralls", "~> 0.8"
29
30
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubogram
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrey Viktorov
@@ -80,6 +80,20 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '3.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: coveralls
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.8'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.8'
83
97
  description:
84
98
  email:
85
99
  - andv@outlook.com