tramway-core 0.1.0 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 561a3fa909b849bcdab549db92e96a8bdfa391d8
4
- data.tar.gz: 61368e918e09794ea9bc5ecb218358ae18b29b9f
3
+ metadata.gz: c4b00934d187bc74e2e3f0b175bf1ebba612eb9e
4
+ data.tar.gz: c1e6731c9c766b8bef1bd851968ed0f72b4231a4
5
5
  SHA512:
6
- metadata.gz: 9624f3853ca3da662b7334ad60d069d19ef5abdae1689ccc89ba2a37341c26dfd56b2302553cf9778ec08be8820969ef01d8868c78894d342150f12fba4fb0a4
7
- data.tar.gz: 4310845ddc01429d17f64e7d55d6600e3a0514a0762719347655f2984882b8c70c602b949e716513a01700c576bc5cf160958ae8b6c38621145292ffe72b6c63
6
+ metadata.gz: fcd98c39a7085873e091c3f514aab0413f0e23c88a1f9693bd76cd5fc8fd8ca7efb224819e32379ec38d5ba729670a68a5f19a3ea97198d08370d6d9802f636a
7
+ data.tar.gz: 2810e3ccc50eb1c4bdf18a8e7664a5adf653eb3b10ac9f88f872f3c0192781e32640f5da65d99b04c61215f8a4c5376530e71017400f0dd9e16e6f9d54d93acd
data/.gitignore CHANGED
@@ -9,3 +9,4 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
+ *.gem
@@ -1,5 +1,5 @@
1
1
  module Tramway
2
2
  module Core
3
- VERSION = "0.1.0"
3
+ VERSION = '0.1.0.1'
4
4
  end
5
5
  end
@@ -1,2 +1,6 @@
1
- class Web::ApplicationController < ApplicationController
1
+ module Tramway::Core
2
+ module Web
3
+ class ApplicationController < ::ApplicationController
4
+ end
5
+ end
2
6
  end
@@ -0,0 +1,4 @@
1
+ module Tramway::Core
2
+ module Web
3
+ end
4
+ end
data/lib/tramway/core.rb CHANGED
@@ -1,7 +1,7 @@
1
- require "tramway/core/version"
1
+ require 'tramway/core/version'
2
+ require 'tramway/core/web'
2
3
 
3
4
  module Tramway
4
5
  module Core
5
- # Your code goes here...
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tramway-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Kalashnikov
@@ -69,6 +69,7 @@ files:
69
69
  - bin/setup
70
70
  - lib/tramway/core.rb
71
71
  - lib/tramway/core/version.rb
72
+ - lib/tramway/core/web.rb
72
73
  - lib/tramway/core/web/application_controller.rb
73
74
  - tramway-core.gemspec
74
75
  homepage: https://github.com/kalashnikovisme/tramway-core