check_late 0.0.0 → 0.0.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.
data/README.md ADDED
File without changes
data/bin/check_late ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'check_late'
4
+ CheckLate.hi
@@ -0,0 +1,5 @@
1
+ class CheckLate::Notifier
2
+ def notify
3
+ puts "notification!"
4
+ end
5
+ end
data/lib/check_late.rb CHANGED
@@ -1,5 +1,9 @@
1
1
  class CheckLate
2
2
  def self.hi
3
- puts "hi"
3
+ notifier = Notifier.new
4
+ notifier.notify
4
5
  end
5
6
  end
7
+
8
+
9
+ require 'check_late/notifier'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: check_late
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,12 +13,16 @@ date: 2012-10-04 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: with this gem you can check if your train is late
15
15
  email: andrea.nodari91@gmail.com
16
- executables: []
16
+ executables:
17
+ - check_late
17
18
  extensions: []
18
19
  extra_rdoc_files: []
19
20
  files:
21
+ - lib/check_late/notifier.rb
20
22
  - lib/check_late.rb
21
- homepage: http://rubygems.org/gems/hola
23
+ - bin/check_late
24
+ - README.md
25
+ homepage: http://rubygems.org/andrea/check_late
22
26
  licenses: []
23
27
  post_install_message:
24
28
  rdoc_options: []