ispras-api 0.1.0 → 0.1.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: 77b155b56d3f5581f60222f3cce5871780b0699b
4
- data.tar.gz: 2a9b25c10ce0ce99ad10bb442f41f86fa9d5811f
3
+ metadata.gz: 9f10f112cfc9a3924c9cf8bf116021c729abe3cf
4
+ data.tar.gz: 36a927f5626900143c4f73d275594054f530c182
5
5
  SHA512:
6
- metadata.gz: d78e6768b4bd2da6dd0b000159e57481c0bf6ff6826c9d2e69ba94dd335bbcb44cb8d3c3c969c7bd5d28d54fdba3f8aad46d0a94e31c1a9dc6572608ecc4199b
7
- data.tar.gz: 43b53acf76cb4280b3e13f7921ca4ecaf2b726d15220f35187fdd45f3388488cb14888ef47ab3702ddd8e0c439655514a54a437414ba636e9067b4f8d0cf87a8
6
+ metadata.gz: 8df322ae6e16aed3d645a25c7b9522abdafd0a9362b8ac11091814036556a5e503cb144f8282ea0f5a676a530ebbb5c04c32566aef36af2ca884ddf57ba8f475
7
+ data.tar.gz: eee296f802c0090c88a784acd22b81f05c6071de17b79e461261e5c7a522a2649bcb2efed0ceb79d505bc2ac76f1592d7451427cc2113b1c5a353d2760cf9b67
@@ -1,4 +1,4 @@
1
- require "./lib/ispapi/version"
1
+ require "./lib/ispras-api/version"
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'ispras-api'
@@ -0,0 +1 @@
1
+ require_relative 'ispras-api/texterra_api'
File without changes
File without changes
@@ -2,7 +2,7 @@ module Version
2
2
 
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- PATCH = 0
5
+ PATCH = 1
6
6
  PRE = nil
7
7
 
8
8
  YEAR = "2015"
@@ -1,7 +1,7 @@
1
1
  require 'minitest/autorun'
2
2
  require 'dotenv'
3
3
  Dotenv.load
4
- require_relative '../lib/ispapi/texterra_api'
4
+ require_relative '../lib/ispras-api/texterra_api'
5
5
 
6
6
  class TestTexterraAPI < Minitest::Test
7
7
 
@@ -1,7 +1,7 @@
1
1
  require 'minitest/autorun'
2
2
  require 'dotenv'
3
3
  Dotenv.load
4
- require_relative '../lib/ispapi/twitter_api'
4
+ require_relative '../lib/ispras-api/twitter_api'
5
5
 
6
6
  class TestTwitterAPI < Minitest::Test
7
7
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ispras-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexey Laguta
@@ -88,17 +88,17 @@ extra_rdoc_files: []
88
88
  files:
89
89
  - ".gitignore"
90
90
  - Rakefile
91
- - ispapi.gemspec
92
- - lib/ispapi.rb
93
- - lib/ispapi/api_error.rb
94
- - lib/ispapi/ispras_api.rb
95
- - lib/ispapi/texterra/kbm.rb
96
- - lib/ispapi/texterra/kbm_specs.rb
97
- - lib/ispapi/texterra/nlp.rb
98
- - lib/ispapi/texterra/nlp_specs.rb
99
- - lib/ispapi/texterra_api.rb
100
- - lib/ispapi/twitter_api.rb
101
- - lib/ispapi/version.rb
91
+ - ispras-api.gemspec
92
+ - lib/ispras-api.rb
93
+ - lib/ispras-api/api_error.rb
94
+ - lib/ispras-api/ispras_api.rb
95
+ - lib/ispras-api/texterra/kbm.rb
96
+ - lib/ispras-api/texterra/kbm_specs.rb
97
+ - lib/ispras-api/texterra/nlp.rb
98
+ - lib/ispras-api/texterra/nlp_specs.rb
99
+ - lib/ispras-api/texterra_api.rb
100
+ - lib/ispras-api/twitter_api.rb
101
+ - lib/ispras-api/version.rb
102
102
  - test/test_texterra_api.rb
103
103
  - test/test_twitter_api.rb
104
104
  homepage: https://github.com/alexlag/ispapi.ruby
@@ -1 +0,0 @@
1
- require_relative 'ispapi/texterra_api'