Skip to content

Commit 9a0e8e0

Browse files
committed
touched version files to force update
1 parent 195b772 commit 9a0e8e0

File tree

17 files changed

+31
-31
lines changed

17 files changed

+31
-31
lines changed

ruby/examples/misc/stock-tickers/Gemfile.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PATH
22
remote: ../../../hyper-component
33
specs:
4-
hyper-component (1.0.rc1)
5-
hyper-state (= 1.0.rc1)
6-
hyperstack-config (= 1.0.rc1)
4+
hyper-component (1.0.pre.alpha1)
5+
hyper-state (= 1.0.pre.alpha1)
6+
hyperstack-config (= 1.0.pre.alpha1)
77
libv8 (~> 6.3.0)
88
mini_racer (~> 0.1.15)
99
opal (>= 0.11.0, < 0.12.0)
@@ -13,7 +13,7 @@ PATH
1313
PATH
1414
remote: ../../../hyper-spec
1515
specs:
16-
hyper-spec (1.0.rc1)
16+
hyper-spec (1.0.pre.alpha1)
1717
capybara
1818
chromedriver-helper (= 1.2.0)
1919
libv8 (~> 6.3.0)
@@ -32,20 +32,20 @@ PATH
3232
PATH
3333
remote: ../../../hyper-state
3434
specs:
35-
hyper-state (1.0.rc1)
36-
hyperstack-config (= 1.0.rc1)
35+
hyper-state (1.0.pre.alpha1)
36+
hyperstack-config (= 1.0.pre.alpha1)
3737
opal (>= 0.11.0, < 0.12.0)
3838

3939
PATH
4040
remote: ../../../hyper-trace
4141
specs:
42-
hyper-trace (1.0.rc1)
43-
hyperstack-config (= 1.0.rc1)
42+
hyper-trace (1.0.pre.alpha1)
43+
hyperstack-config (= 1.0.pre.alpha1)
4444

4545
PATH
4646
remote: ../../../hyperstack-config
4747
specs:
48-
hyperstack-config (1.0.rc1)
48+
hyperstack-config (1.0.pre.alpha1)
4949
libv8 (~> 6.3.0)
5050
listen (~> 3.0)
5151
mini_racer (~> 0.1.15)
@@ -165,7 +165,7 @@ GEM
165165
rails-dom-testing (>= 1, < 3)
166166
railties (>= 4.2.0)
167167
thor (>= 0.14, < 2.0)
168-
libv8 (6.3.292.48.1)
168+
libv8 (6.3.292.48.1-x86_64-darwin-15)
169169
listen (3.1.5)
170170
rb-fsevent (~> 0.9, >= 0.9.4)
171171
rb-inotify (~> 0.9, >= 0.9.7)

ruby/examples/misc/stock-tickers/app/hyperstack/components/app.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ class App < HyperComponent
22
before_mount { @symbols = Set.new }
33

44
def add_symbol
5-
mutate @symbols << @_symbol_input.value.upcase
6-
@_symbol_input.value = ''
5+
mutate @symbols << @SymbolInput.value.upcase
6+
@SymbolInput.value = ''
77
end
88

99
render do
@@ -15,7 +15,7 @@ def add_symbol
1515
BS::Row(style: { marginTop: 20 }) do
1616
BS::Col(sm: 4) do
1717
BS::InputGroup(class: 'mb-3') do
18-
BS::FormControl(dom: set(:_symbol_input), placeholder: 'New Stock Market Symbol')
18+
BS::FormControl(dom: set(:SymbolInput), placeholder: 'New Stock Market Symbol')
1919
.on(:enter) { add_symbol }
2020
BS::InputGroup::Append() { BS::Button() { 'Add' } }
2121
.on(:click) { add_symbol }

ruby/examples/misc/stock-tickers/app/hyperstack/components/display_ticker.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class DisplayTicker < HyperComponent
22
param :symbol
33
triggers :cancel
4-
before_mount { @_ticker = StockTicker.new(@_symbol, 10.seconds) }
4+
before_mount { @_ticker = StockTicker.new(@Symbol, 10.seconds) }
55

66
def status
77
case @_ticker.status
@@ -18,7 +18,7 @@ def status
1818

1919
render do
2020
BS::Row() do
21-
BS::Col(sm: 1) { @_symbol.upcase }
21+
BS::Col(sm: 1) { @Symbol.upcase }
2222
status
2323
BS::Col(sm: 1) do
2424
BS::Button(class: :close) { "\u00D7" }

ruby/examples/misc/stock-tickers/app/hyperstack/components/hyper_component.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
def Hyperstack.naming_convention
2-
:prefix_params
3-
end
1+
# def Hyperstack.naming_convention
2+
# :prefix_params
3+
# end
44

55
class HyperComponent
66
include Hyperstack::Component
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Hyperstack
22
module Component
3-
VERSION = '1.0-alpha1' # '1.0-alpha1'
3+
VERSION = '1.0.alpha1' # '1.0.alpha1'
44
end
55
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module HyperI18n
2-
VERSION = '1.0-alpha1'
2+
VERSION = '1.0.alpha1'
33
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Hyperstack
22
module I18n
3-
VERSION = '1.0-alpha1'
3+
VERSION = '1.0.alpha1'
44
end
55
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module HyperModel
2-
VERSION = '1.0-alpha1'
2+
VERSION = '1.0.alpha1'
33
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Hyperstack
22
class Operation
3-
VERSION = '1.0-alpha1'
3+
VERSION = '1.0.alpha1'
44
end
55
end

ruby/hyper-router/hyper-router.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212
spec.summary = 'hyper-router for Opal, part of the hyperstack framework'
1313

1414
spec.description = 'Adds the ability to write and use the react-router in Ruby through Opal'
15-
spec.files = Dir['{lib}/**/*'] + ['LICENSE', 'Rakefile', 'README.md']
15+
spec.files = Dir['{lib}/**/*'] + ['Rakefile']
1616

1717
spec.add_dependency 'hyper-component', HyperRouter::VERSION
1818
spec.add_dependency 'hyper-state', HyperRouter::VERSION

0 commit comments

Comments
 (0)