damn-weather 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
  SHA1:
3
- metadata.gz: fa562cdfb03616d6929aa93eb30ba8b2c122af4d
4
- data.tar.gz: a1d8fb05fe98ce17245c8a84d67af93ba93aedc9
3
+ metadata.gz: 7d66c5914b16ef62706f55a5730a81c8e114e5be
4
+ data.tar.gz: 6ca3bfac832fdda07b42455d1db905a57d7ed628
5
5
  SHA512:
6
- metadata.gz: 0675ec78084a919081d0b3f3c3bdfda0deb26261803e2e3e61ea17cd5388c31a46f2bc74c1eb168701f49f750d72dc2e724c867aa86de92c5a80261c24369d3e
7
- data.tar.gz: 65b61b8d6f0c2e757d4120ef5e30538affe2bfdca90639a5087d9e4f1c62b3858e906639defe5e9e84b5dbffd5da2eb4f07cc0521cf5866aed0f20875e8a4cf9
6
+ metadata.gz: 04a9371e13d2213626de3514d2fa545cea18122bd98e1d4300da313c6308089905f309d41958579d5fe727019cef2ed2296e944e5fb18961b3282d767050cbe5
7
+ data.tar.gz: 6d29eee1e26b5317c6b18362dc83795334a1c459d9e923a0d4f183d5176c14885ef025c8859492301887bcf5607f77b937541e4a526f1bcbafbe6f95f46bdb4f
@@ -15,7 +15,7 @@ module DamnWeather
15
15
  gem_root = Gem::Specification.find_by_name('mm_geoip').gem_dir
16
16
  db_file = "#{gem_root}/data/GeoLiteCity.dat"
17
17
  unless File.exist?(db_file)
18
- puts "Downloading database file... (This may take a while)"
18
+ puts "\xF0\x9F\x9A\xA7 Downloading database file... (This may take a while)"
19
19
  open(db_file, 'w') do |local_file|
20
20
  open('http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz') do |remote_file|
21
21
  local_file.write(Zlib::GzipReader.new(remote_file).read)
@@ -2,7 +2,6 @@ module Emoji
2
2
  def heavy_rain
3
3
  ["\xF0\x9F\x92\xA6", # multiple drops
4
4
  "\xE2\x98\x94", # umbrella with drops
5
- "\xF0\x9F\x98\x9E", # disappointed face
6
5
  "\xF0\x9F\x98\xBF", # crying cat
7
6
  "\xF0\x9F\x92\xA7" # droplet
8
7
  ]
@@ -18,7 +17,8 @@ module Emoji
18
17
  def snow
19
18
  ["\xE2\x9B\x84", # snowman
20
19
  "\xF0\x9F\x8F\x82", # snowboarder
21
- "\xE2\x9D\x84" # snowflake
20
+ "\xE2\x9D\x84", # snowflake
21
+ "\xF0\x9F\x8E\x85" # santa
22
22
  ]
23
23
  end
24
24
 
@@ -61,7 +61,6 @@ module Emoji
61
61
 
62
62
  def thunder
63
63
  ["\xF0\x9F\x98\xA8", # fearful face
64
- "\xF0\x9F\x99\x88", # monkey with hands on face
65
64
  "\xE2\x98\x94", # umbrella with drops
66
65
  "\xE2\x9A\xA1" # high voltage sigh
67
66
  ]
@@ -1,3 +1,3 @@
1
1
  module DamnWeather
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: damn-weather
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
  - Justyna Rachowicz