helios 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.
Files changed (9) hide show
  1. data/Gemfile +3 -0
  2. data/Gemfile.lock +99 -0
  3. data/LICENSE +19 -0
  4. data/README.md +16 -0
  5. data/Rakefile +11 -0
  6. data/bin/helios +17 -0
  7. data/helios.gemspec +29 -0
  8. data/lib/helios.rb +3 -0
  9. metadata +147 -0
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source :rubygems
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,99 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ helios (0.0.1)
5
+ commander (~> 4.1.2)
6
+ json (~> 1.7.3)
7
+ rack-core-data (~> 0.1.0)
8
+ rack-passbook (~> 0.0.1)
9
+ rack-push-notification (~> 0.1.0)
10
+ rack-smart-app-banner (~> 0.0.1)
11
+
12
+ GEM
13
+ remote: http://rubygems.org/
14
+ specs:
15
+ activesupport (3.2.11)
16
+ i18n (~> 0.6)
17
+ multi_json (~> 1.0)
18
+ bootstrap-sass (2.1.1.0)
19
+ coffee-script (2.2.0)
20
+ coffee-script-source
21
+ execjs
22
+ coffee-script-source (1.4.0)
23
+ commander (4.1.3)
24
+ highline (~> 1.6.11)
25
+ eco (1.0.0)
26
+ coffee-script
27
+ eco-source
28
+ execjs
29
+ eco-source (1.1.0.rc.1)
30
+ execjs (1.4.0)
31
+ multi_json (~> 1.0)
32
+ haml (3.1.7)
33
+ highline (1.6.15)
34
+ hike (1.2.1)
35
+ houston (0.1.1)
36
+ commander (~> 4.1.2)
37
+ json (~> 1.7.3)
38
+ i18n (0.6.1)
39
+ json (1.7.6)
40
+ multi_json (1.5.0)
41
+ nokogiri (1.5.6)
42
+ rack (1.4.3)
43
+ rack-contrib (1.1.0)
44
+ rack (>= 0.9.1)
45
+ rack-core-data (0.1.0)
46
+ activesupport (~> 3.2.6)
47
+ nokogiri (~> 1.4)
48
+ rack (~> 1.4)
49
+ sequel (~> 3.37.0)
50
+ sinatra (~> 1.3.2)
51
+ rack-passbook (0.0.1)
52
+ rack (~> 1.4)
53
+ sequel (~> 3.37.0)
54
+ sinatra (~> 1.3.2)
55
+ rack-protection (1.3.2)
56
+ rack
57
+ rack-push-notification (0.1.0)
58
+ bootstrap-sass (~> 2.1.1)
59
+ coffee-script (~> 2.2.0)
60
+ eco (~> 1.0.0)
61
+ haml (~> 3.1.7)
62
+ houston (~> 0.1.1)
63
+ rack (~> 1.4)
64
+ rack-contrib (~> 1.1.0)
65
+ sass (~> 3.2.3)
66
+ sequel (~> 3.37.0)
67
+ sinatra (~> 1.3.2)
68
+ sinatra-param (~> 0.1.1)
69
+ sprockets (~> 2.8.1)
70
+ sprockets-sass (~> 0.9.1)
71
+ rack-smart-app-banner (0.0.1)
72
+ rack (>= 1.2.0, <= 2.0.0)
73
+ rake (0.9.6)
74
+ rspec (0.6.4)
75
+ sass (3.2.5)
76
+ sequel (3.37.0)
77
+ sinatra (1.3.3)
78
+ rack (~> 1.3, >= 1.3.6)
79
+ rack-protection (~> 1.2)
80
+ tilt (~> 1.3, >= 1.3.3)
81
+ sinatra-param (0.1.1)
82
+ sinatra (~> 1.3)
83
+ sprockets (2.8.2)
84
+ hike (~> 1.2)
85
+ multi_json (~> 1.0)
86
+ rack (~> 1.0)
87
+ tilt (~> 1.1, != 1.3.0)
88
+ sprockets-sass (0.9.1)
89
+ sprockets (~> 2.0)
90
+ tilt (~> 1.1)
91
+ tilt (1.3.3)
92
+
93
+ PLATFORMS
94
+ ruby
95
+
96
+ DEPENDENCIES
97
+ helios!
98
+ rake (~> 0.9.2)
99
+ rspec (~> 0.6.1)
data/LICENSE ADDED
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2013 Mattt Thompson (http://mattt.me/)
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # Helios
2
+ **Coming Soon**
3
+
4
+ ---
5
+
6
+ ## Contact
7
+
8
+ Mattt Thompson
9
+
10
+ - http://github.com/mattt
11
+ - http://twitter.com/mattt
12
+ - m@mattt.me
13
+
14
+ ## License
15
+
16
+ Helios is available under the MIT license. See the LICENSE file for more info.
data/Rakefile ADDED
@@ -0,0 +1,11 @@
1
+ require "bundler"
2
+ Bundler.setup
3
+
4
+ gemspec = eval(File.read("helios.gemspec"))
5
+
6
+ task :build => "#{gemspec.full_name}.gem"
7
+
8
+ file "#{gemspec.full_name}.gem" => gemspec.files + ["helios.gemspec"] do
9
+ system "gem build helios.gemspec"
10
+ system "gem install helios-#{Helios::VERSION}.gem"
11
+ end
data/bin/helios ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'commander/import'
4
+
5
+ require 'helios'
6
+
7
+ HighLine.track_eof = false # Fix for built-in Ruby
8
+ Signal.trap("INT") {} # Suppress backtrace when exiting command
9
+
10
+ program :version, Helios::VERSION
11
+ program :description, 'A command-line interface for building mobile infrastructures'
12
+
13
+ program :help, 'Author', 'Mattt Thompson <m@mattt.me>'
14
+ program :help, 'Website', 'https://github.com/mattt'
15
+ program :help_formatter, :compact
16
+
17
+ default_command :help
data/helios.gemspec ADDED
@@ -0,0 +1,29 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "helios"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "helios"
7
+ s.authors = ["Mattt Thompson"]
8
+ s.email = "m@mattt.me"
9
+ s.homepage = "http://github.com/mattt"
10
+ s.version = Helios::VERSION
11
+ s.platform = Gem::Platform::RUBY
12
+ s.summary = "A Mobile Framework"
13
+ s.description = "Coming Soon"
14
+
15
+ s.add_dependency "commander", "~> 4.1.2"
16
+ s.add_dependency "rack-core-data", "~> 0.1.0"
17
+ s.add_dependency "rack-push-notification", "~> 0.1.0"
18
+ s.add_dependency "rack-passbook", "~> 0.0.1"
19
+ s.add_dependency "rack-smart-app-banner", "~> 0.0.1"
20
+ s.add_dependency "json", "~> 1.7.3"
21
+
22
+ s.add_development_dependency "rspec", "~> 0.6.1"
23
+ s.add_development_dependency "rake", "~> 0.9.2"
24
+
25
+ s.files = Dir["./**/*"].reject { |file| file =~ /\.\/(bin|log|pkg|script|spec|test|vendor)/ }
26
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
27
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
28
+ s.require_paths = ["lib"]
29
+ end
data/lib/helios.rb ADDED
@@ -0,0 +1,3 @@
1
+ module Helios
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,147 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: helios
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Mattt Thompson
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-01-10 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: commander
16
+ requirement: &70250121236460 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 4.1.2
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70250121236460
25
+ - !ruby/object:Gem::Dependency
26
+ name: rack-core-data
27
+ requirement: &70250121255760 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: 0.1.0
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *70250121255760
36
+ - !ruby/object:Gem::Dependency
37
+ name: rack-push-notification
38
+ requirement: &70250121254160 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ version: 0.1.0
44
+ type: :runtime
45
+ prerelease: false
46
+ version_requirements: *70250121254160
47
+ - !ruby/object:Gem::Dependency
48
+ name: rack-passbook
49
+ requirement: &70250121267900 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 0.0.1
55
+ type: :runtime
56
+ prerelease: false
57
+ version_requirements: *70250121267900
58
+ - !ruby/object:Gem::Dependency
59
+ name: rack-smart-app-banner
60
+ requirement: &70250121266000 !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ~>
64
+ - !ruby/object:Gem::Version
65
+ version: 0.0.1
66
+ type: :runtime
67
+ prerelease: false
68
+ version_requirements: *70250121266000
69
+ - !ruby/object:Gem::Dependency
70
+ name: json
71
+ requirement: &70250121264160 !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ~>
75
+ - !ruby/object:Gem::Version
76
+ version: 1.7.3
77
+ type: :runtime
78
+ prerelease: false
79
+ version_requirements: *70250121264160
80
+ - !ruby/object:Gem::Dependency
81
+ name: rspec
82
+ requirement: &70250121286240 !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
85
+ - - ~>
86
+ - !ruby/object:Gem::Version
87
+ version: 0.6.1
88
+ type: :development
89
+ prerelease: false
90
+ version_requirements: *70250121286240
91
+ - !ruby/object:Gem::Dependency
92
+ name: rake
93
+ requirement: &70250121284040 !ruby/object:Gem::Requirement
94
+ none: false
95
+ requirements:
96
+ - - ~>
97
+ - !ruby/object:Gem::Version
98
+ version: 0.9.2
99
+ type: :development
100
+ prerelease: false
101
+ version_requirements: *70250121284040
102
+ description: Coming Soon
103
+ email: m@mattt.me
104
+ executables:
105
+ - helios
106
+ extensions: []
107
+ extra_rdoc_files: []
108
+ files:
109
+ - ./Gemfile
110
+ - ./Gemfile.lock
111
+ - ./helios.gemspec
112
+ - ./lib/helios.rb
113
+ - ./LICENSE
114
+ - ./Rakefile
115
+ - ./README.md
116
+ - bin/helios
117
+ homepage: http://github.com/mattt
118
+ licenses: []
119
+ post_install_message:
120
+ rdoc_options: []
121
+ require_paths:
122
+ - lib
123
+ required_ruby_version: !ruby/object:Gem::Requirement
124
+ none: false
125
+ requirements:
126
+ - - ! '>='
127
+ - !ruby/object:Gem::Version
128
+ version: '0'
129
+ segments:
130
+ - 0
131
+ hash: -1449662137682020097
132
+ required_rubygems_version: !ruby/object:Gem::Requirement
133
+ none: false
134
+ requirements:
135
+ - - ! '>='
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ segments:
139
+ - 0
140
+ hash: -1449662137682020097
141
+ requirements: []
142
+ rubyforge_project:
143
+ rubygems_version: 1.8.15
144
+ signing_key:
145
+ specification_version: 3
146
+ summary: A Mobile Framework
147
+ test_files: []