pony_breeds 0.1.1 → 0.1.2

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
  SHA256:
3
- metadata.gz: 21d17b0862a60ac023d882dfeec2e0dab387b37df44166abb947561ab1d3dc19
4
- data.tar.gz: 55725eddb2561837c70c01433e58ff2899220eda94b35e9e99ed36596545cb35
3
+ metadata.gz: fe1fbb3134c21c7dbb01dfd837470e1cf3bf262cc687f198eb931317ecc9a182
4
+ data.tar.gz: 4f937de719c8fbb986acad2df2b3f4177f4b983454309b6042b9589c7c57b957
5
5
  SHA512:
6
- metadata.gz: ec1b0526edc24a1459b0ec931371bdfd80ff3911da40678c4c70b11c21c6ac2660b330a256705ba1431919fea26d97afef00a7b4aa55770db27e5c0ca508d2cd
7
- data.tar.gz: 98f956737588f1ea972815545ee82c8bd28219fcdea7e8edceec06a6c02787dd133eb1a9f6acb26ccb94c2093bb1c3906eea6173b2b6be5f5557e8587a699cac
6
+ metadata.gz: 1d49570b7c879ce31d3739fd6116910feab8f310af510c18b7a3321676996bfd27e7fb692de5014de3387c6c9dd9d6f41c17e1687dcfb6f948915aa2a1fee22e
7
+ data.tar.gz: e3fb4e637cfd1979634599b8fdf232eab9ed11c419628b260d16d00fd4e1d00770a8bab46a9ae376ea4b455a8d53cb95d7387e8abe8c2b75a9f6f2e1a57c3a33
@@ -13,8 +13,5 @@
13
13
  "name": "Andalou Pony",
14
14
  "description":"The Anadolu Pony is descended from crosses of Turkoman, Arabian, Persian, Karabakh, Akhal-Teke, Karbada, Deliboz, Mongolian and the ancient Anatolia horse. Some books refer to this small pony as the Native Turkish Pony, or Turk, but Professors Salahattin Batu and M. Nurettin Aral made a distinction in types between the horses in Anatolia as Anadolu and East and Southeast Anadolu.",
15
15
  "wiki_url": "https://en.wikipedia.org/wiki/Anadolu_Pony"
16
- },
17
- "assateague_pony": {
18
-
19
16
  }
20
17
  }
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pony
4
4
  module Breeds
5
- VERSION = '0.1.1'
5
+ VERSION = '0.1.2'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pony_breeds
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - napster235
@@ -17,9 +17,6 @@ dependencies:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '5.2'
20
- - - "<"
21
- - !ruby/object:Gem::Version
22
- version: '7'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
@@ -27,9 +24,6 @@ dependencies:
27
24
  - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '5.2'
30
- - - "<"
31
- - !ruby/object:Gem::Version
32
- version: '7'
33
27
  description: A small little gem that offers the capability of reading pony breeds.
34
28
  email:
35
29
  - dragomir.tuddor@gmail.com
@@ -48,7 +42,6 @@ files:
48
42
  - lib/pony/breeds/pony_breeds.json
49
43
  - lib/pony/breeds/read_pony_data.rb
50
44
  - lib/pony/breeds/version.rb
51
- - pony_breeds.gemspec
52
45
  homepage: https://github.com/napster235/pony_breeds
53
46
  licenses:
54
47
  - MIT
data/pony_breeds.gemspec DELETED
@@ -1,34 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative 'lib/pony/breeds/version'
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = 'pony_breeds'
7
- spec.version = Pony::Breeds::VERSION
8
- spec.authors = ['napster235']
9
- spec.email = ['dragomir.tuddor@gmail.com']
10
-
11
- spec.summary = 'A small little gem that offers the capability of reading pony breeds.'
12
- spec.description = 'A small little gem that offers the capability of reading pony breeds.'
13
- spec.homepage = 'https://github.com/napster235/pony_breeds'
14
- spec.license = 'MIT'
15
- spec.required_ruby_version = '>= 2.6.0'
16
-
17
- spec.metadata['allowed_push_host'] = 'https://rubygems.org'
18
-
19
- spec.metadata['homepage_uri'] = 'https://github.com/napster235/pony_breeds'
20
- spec.metadata['source_code_uri'] = 'https://github.com/napster235/pony_breeds'
21
-
22
- # Specify which files should be added to the gem when it is released.
23
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
- spec.files = Dir.chdir(__dir__) do
25
- `git ls-files -z`.split("\x0").reject do |f|
26
- (File.expand_path(f) == __FILE__) ||
27
- f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
28
- end
29
- end
30
-
31
- spec.require_paths = ['lib']
32
-
33
- spec.add_dependency 'rails', '>= 5.2', '< 7'
34
- end