blueland 1.0.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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/bin/blueland +9 -0
  3. data/lib/blueland.rb +6 -0
  4. metadata +45 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d554c309fcc87ca8d068eb32588f101dc9363f71
4
+ data.tar.gz: c19b657022fa3cfbc0a06e0b70cd97b013da273c
5
+ SHA512:
6
+ metadata.gz: ac5796f58f5b4cb8d05a2ccb1617118a48ac4b5b50bfec6b99d1a95b0b4f873b782d13e154a91d905c4ba929d877417364699bf5d0a492f1b4a82751495600cf
7
+ data.tar.gz: 4e9a12f280824b989b2a2eac14ff0d33bb9025d05e203c8e68ecb3162c1a81e8edc2352d58402d1d2808abae1e67947a1436f89c7decbf583bbad5238e598e17
@@ -0,0 +1,9 @@
1
+ #!/user/bin/env ruby
2
+
3
+ require 'blueland'
4
+
5
+ if ARGV.size < 1
6
+ puts "You need to provide a location"
7
+ else
8
+ Blueland.new.run(ARGV.join(" ")) # ARGV[0] would have worked, but for places with space like San Fransciso
9
+ end
@@ -0,0 +1,6 @@
1
+ class Blueland
2
+
3
+ def run(arg_placeholder)
4
+ puts "I'm awesome"
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: blueland
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Al Pacino
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-03-11 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ executables:
16
+ - blueland
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/blueland.rb
21
+ - bin/blueland
22
+ homepage:
23
+ licenses: []
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubyforge_project:
41
+ rubygems_version: 2.0.14
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Fetches weather forecast.
45
+ test_files: []