another_place 0.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 33d7a08f178934e67564358c73465c03cf3a7a32
4
+ data.tar.gz: 17cbd6120a26acab1bb195cc2ad24fe3573dc408
5
+ SHA512:
6
+ metadata.gz: 3e1e4f6ba258df8d48c407f1c5719da9e9b1bb9e39fefeaf4ffb816619dd49feade0965ec7dedc45e5eceefd9b574ccfce98bba8b08ee4dab505997126564b2e
7
+ data.tar.gz: 8664103e6323bc0d12624e0d41be0de1b24c2e50c1c7155a94e6fd89653bacb36da4157e34761e48148cc0c9890fc1289459aa6a2a89b2c94a9bf31924c52ed6
data/bin/another_place ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ begin
4
+ require 'another_place/application/app.rb'
5
+ rescue LoadError => e
6
+ require 'rubygems'
7
+ path = File.expand_path '../../lib', __FILE__
8
+ $:.unshift(path) if File.directory?(path) && !$:.include?(path)
9
+ require 'another_place/application/app.rb'
10
+ end
@@ -0,0 +1,14 @@
1
+ require 'sinatra'
2
+
3
+ class AnotherPlace < Sinatra::Base
4
+
5
+ get '/' do
6
+ "hello!"
7
+ end
8
+
9
+ end
10
+
11
+ # Run the app!
12
+ #
13
+ puts "Hello, you're running your web app from a gem!"
14
+ AnotherPlace.run!
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: another_place
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - phlco
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-08-26 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: data from another place
14
+ email: philco@ga.co
15
+ executables:
16
+ - another_place
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - bin/another_place
21
+ - lib/another_place/application/app.rb
22
+ homepage: http://rubygems.org/gems/another_place
23
+ licenses:
24
+ - MIT
25
+ metadata: {}
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubyforge_project:
42
+ rubygems_version: 2.2.2
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: another place
46
+ test_files: []
47
+ has_rdoc: