moostodon 0.1.0 → 0.2.0

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: 36477f3200abc7c0778ee098a84ec63f934918cc
4
- data.tar.gz: 93f1c01eaf91c6fe442c6453facbcdf995bc5b81
3
+ metadata.gz: 5f038cf56717aa994ca947f4bbad7534c836077e
4
+ data.tar.gz: 794e0d73f1b841fcaefbd39bb2701b2c3a247546
5
5
  SHA512:
6
- metadata.gz: d06ad7a87c7cfddb9d00ca7062ddcf74e377d29b10dc345be6a49ebf52559bac098e8da587b8e931839b0ac557e2b1c865bb38b16a4c1b5d95ed0c0f56ce046b
7
- data.tar.gz: 4dc8a68a77d43f11739788db6bf8c47c0908f7b3f10a658ee3bb5fcfd8af1884e2537c297c5b56b4423cb88a54aec8488233419e4f2c49a523d51828ba864042
6
+ metadata.gz: 2bd4966f31b63c77afde8378911dd3c230035daf1916f321792f26298533a6bd8e7c28cff9915140824c0a8bb4759bc79fcbc81fe7f3a56691cc017ddddb657e
7
+ data.tar.gz: e29819fd090bc36898337632083dddd286a96e4982fa7d415b275066ef7b67e499832b362ab4adc3c1398e8207e0a9ae950f23e933dca43d8aa05e72ff6f3e9c
@@ -10,7 +10,7 @@ module Mastodon
10
10
  end
11
11
 
12
12
  def minor
13
- 1
13
+ 2
14
14
  end
15
15
 
16
16
  def patch
File without changes
data/moostodon.gemspec CHANGED
@@ -2,22 +2,23 @@
2
2
 
3
3
  lib = File.expand_path('lib', __dir__)
4
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
- require 'mastodon/version'
5
+ require_relative 'lib/mastodon/version'
6
6
 
7
7
  Gem::Specification.new do |spec|
8
8
  spec.name = 'moostodon'
9
9
  spec.description = 'A ruby interface to the Mastodon API'
10
- spec.homepage = 'https://github.com/tootsuite/mastodon-api'
11
- spec.email = 'eugen@zeonfederated.com'
12
- spec.authors = ['Eugen Rochko', 'Maxine Michalski']
13
- spec.summary = spec.description
10
+ spec.homepage = 'https://github.com/maxine-red/moostodon'
11
+ spec.email = 'maxine@furfind.net'
12
+ spec.authors = ['Maxine Michalski']
13
+ spec.summary = 'A ruby interface to the Mastodon API, based on'\
14
+ ' mastodon-api.'
14
15
  spec.licenses = %w[MIT]
15
16
  spec.files = %w[moostodon.gemspec] + Dir['lib/**/*.rb']
16
17
  spec.require_paths = %w[lib]
17
18
  spec.version = Mastodon::Version
18
19
 
19
20
  spec.add_dependency 'addressable', '~> 2.5'
20
- spec.add_dependency 'buftok'
21
+ spec.add_dependency 'buftok', '~> 0'
21
22
  spec.add_dependency 'http', '~> 3.0'
22
23
  spec.add_dependency 'oj', '~> 3.3'
23
24
 
metadata CHANGED
@@ -1,10 +1,9 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moostodon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
- - Eugen Rochko
8
7
  - Maxine Michalski
9
8
  autorequire:
10
9
  bindir: bin
@@ -29,14 +28,14 @@ dependencies:
29
28
  name: buftok
30
29
  requirement: !ruby/object:Gem::Requirement
31
30
  requirements:
32
- - - ">="
31
+ - - "~>"
33
32
  - !ruby/object:Gem::Version
34
33
  version: '0'
35
34
  type: :runtime
36
35
  prerelease: false
37
36
  version_requirements: !ruby/object:Gem::Requirement
38
37
  requirements:
39
- - - ">="
38
+ - - "~>"
40
39
  - !ruby/object:Gem::Version
41
40
  version: '0'
42
41
  - !ruby/object:Gem::Dependency
@@ -82,12 +81,11 @@ dependencies:
82
81
  - !ruby/object:Gem::Version
83
82
  version: '1.0'
84
83
  description: A ruby interface to the Mastodon API
85
- email: eugen@zeonfederated.com
84
+ email: maxine@furfind.net
86
85
  executables: []
87
86
  extensions: []
88
87
  extra_rdoc_files: []
89
88
  files:
90
- - lib/mastodon.rb
91
89
  - lib/mastodon/account.rb
92
90
  - lib/mastodon/app.rb
93
91
  - lib/mastodon/base.rb
@@ -128,8 +126,9 @@ files:
128
126
  - lib/mastodon/streaming/message_parser.rb
129
127
  - lib/mastodon/streaming/response.rb
130
128
  - lib/mastodon/version.rb
129
+ - lib/moostodon.rb
131
130
  - moostodon.gemspec
132
- homepage: https://github.com/tootsuite/mastodon-api
131
+ homepage: https://github.com/maxine-red/moostodon
133
132
  licenses:
134
133
  - MIT
135
134
  metadata: {}
@@ -152,5 +151,5 @@ rubyforge_project:
152
151
  rubygems_version: 2.5.2.1
153
152
  signing_key:
154
153
  specification_version: 4
155
- summary: A ruby interface to the Mastodon API
154
+ summary: A ruby interface to the Mastodon API, based on mastodon-api.
156
155
  test_files: []