appril-cli 0.0.1 → 0.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1cc0893ea5aa28fab9b811a299e262eee2073286
4
- data.tar.gz: b77fb25b57f6b1f882553096c58e656129d2a81d
3
+ metadata.gz: c6e0f54131c3f72bae5b8a7bf382ce28bf0f7f93
4
+ data.tar.gz: 5b8777dbdb99251ef1a583d1c1e6d740fb42c927
5
5
  SHA512:
6
- metadata.gz: 6256202daa1c36fa70139d19732fb964aa8a98f89ee9c1c8ff23fb8bf1726bc389f66d961999041a4525a71bafcb810378faef649dca7ef063d1fa4c9e5d8b5c
7
- data.tar.gz: 5e438a3c42920d405d7ab2d8c672e151bf36e11a3c394ce2e3186592b7b82684382727ee27740d96811e2f2637fcb25e12ed44522e18e252ed582094eb639303
6
+ metadata.gz: bf8333390a2109bdde1cc1017312775d223bb3810788de050c98fffc255f8a44a8b5c2449cc174cddfdf259727a60b2f2acac436eda834c26c85e3bff3e9f1b4
7
+ data.tar.gz: cc0135f880c458f5ba03e077886b934124b2a715a6dfc446cc6a1d30534ad722f806f3f9b7ddcce0a2f2d810984afa9082d60fc85e5dbbe33328306bc16e4fc4
@@ -1,4 +1,2 @@
1
1
  # do NOT edit this file, edit ../Gemfile instead
2
- gem 'appril'
3
- gem 'rocketio', '~> 0.0.8'
4
- gem 'tubesock'
2
+ gem 'appril', '>= 0.0.5'
@@ -59,4 +59,10 @@ Dir.chdir File.expand_path('../..', __FILE__) do
59
59
 
60
60
  require './base/helpers/application_helpers'
61
61
  Dir['./base/helpers/**/*.rb'].each {|f| require(f)}
62
+
63
+ %w[
64
+ base_model.rb
65
+ *.rb
66
+ **/*.rb
67
+ ].each {|p| Dir[File.expand_path("../../base/models/#{p}", __FILE__)].each {|f| require(f)}}
62
68
  end
@@ -1,14 +1,13 @@
1
- # do NOT edit this file, edit base/load.rb instead
1
+ # do NOT edit this file, edit ../base/load.rb instead
2
2
 
3
- %w[
4
- boot
5
- ../base/load
6
- ].each {|f| require File.expand_path("../#{f}", __FILE__)}
3
+ Dir.chdir File.expand_path('../..', __FILE__) do
7
4
 
8
- %w[
9
- base_model.rb
10
- *.rb
11
- **/*.rb
12
- ].each {|p| Dir[File.expand_path("../../base/models/#{p}", __FILE__)].each {|f| require(f)}}
5
+ require './core/boot'
6
+ require './base/load'
7
+ require './base/api/base_controller'
8
+ require './base/api/rtcp_controller'
13
9
 
14
- require File.expand_path('../load_controllers', __FILE__)
10
+ Dir['./base/api/**/server.rb'].sort {|a,b|
11
+ a.split(/\/+/).size <=> b.split(/\/+/).size
12
+ }.each {|f| require(f)}
13
+ end
@@ -1,5 +1,5 @@
1
1
  module Appril
2
2
  class CLI
3
- VERSION = '0.0.1'.freeze
3
+ VERSION = '0.0.5'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appril-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Slee Woo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-29 00:00:00.000000000 Z
11
+ date: 2016-05-02 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Appril CLI
14
14
  email:
@@ -53,7 +53,6 @@ files:
53
53
  - boilerplate/app/core/boot.rb
54
54
  - boilerplate/app/core/generate_configs.rb
55
55
  - boilerplate/app/core/load.rb
56
- - boilerplate/app/core/load_controllers.rb
57
56
  - boilerplate/app/generators/api/client.coffee
58
57
  - boilerplate/app/generators/api/layout.html
59
58
  - boilerplate/app/generators/api/server.rb
@@ -153,5 +152,5 @@ rubyforge_project:
153
152
  rubygems_version: 2.5.1
154
153
  signing_key:
155
154
  specification_version: 4
156
- summary: '["appril-cli-0.0.1", "Appril CLI"]'
155
+ summary: '["appril-cli-0.0.5", "Appril CLI"]'
157
156
  test_files: []
@@ -1,14 +0,0 @@
1
- # do NOT edit this file, edit base/load_controllers.rb instead
2
-
3
- Dir.chdir File.expand_path('../../base/api', __FILE__) do
4
-
5
- require './base_controller'
6
- require './rtcp_controller'
7
-
8
- %w[
9
- ./**/server.rb
10
- ].each_with_object([]) {|pattern,o| o.concat(Dir[pattern])}.sort {|a,b|
11
- a.split(/\/+/).size <=> b.split(/\/+/).size
12
- }.each {|f| require(f)}
13
-
14
- end