Skip to content

Commit ccd7862

Browse files
committed
router and native components were throwing the deprecation notice
1 parent f4b261b commit ccd7862

File tree

100 files changed

+2020
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+2020
-3
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
/tmp/*
17+
!/log/.keep
18+
!/tmp/.keep
19+
20+
# Ignore uploaded files in development
21+
/storage/*
22+
!/storage/.keep
23+
24+
/node_modules
25+
/yarn-error.log
26+
27+
/public/assets
28+
.byebug_history
29+
30+
# Ignore master key for decrypting credentials and more.
31+
/config/master.key
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby-2.4.1

ruby/examples/tutorials/todos/Gemfile

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby '2.4.1'
5+
6+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7+
gem 'rails', '~> 5.2.1'
8+
# Use sqlite3 as the database for Active Record
9+
gem 'sqlite3'
10+
# Use Puma as the app server
11+
gem 'puma', '~> 3.11'
12+
# Use SCSS for stylesheets
13+
gem 'sass-rails', '~> 5.0'
14+
# Use Uglifier as compressor for JavaScript assets
15+
gem 'uglifier', '>= 1.3.0'
16+
# See https://github.com/rails/execjs#readme for more supported runtimes
17+
# gem 'mini_racer', platforms: :ruby
18+
19+
# Use CoffeeScript for .coffee assets and views
20+
gem 'coffee-rails', '~> 4.2'
21+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
22+
gem 'turbolinks', '~> 5'
23+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
24+
gem 'jbuilder', '~> 2.5'
25+
# Use Redis adapter to run Action Cable in production
26+
# gem 'redis', '~> 4.0'
27+
# Use ActiveModel has_secure_password
28+
# gem 'bcrypt', '~> 3.1.7'
29+
30+
# Use ActiveStorage variant
31+
# gem 'mini_magick', '~> 4.8'
32+
33+
# Use Capistrano for deployment
34+
# gem 'capistrano-rails', group: :development
35+
36+
# Reduces boot times through caching; required in config/boot.rb
37+
gem 'bootsnap', '>= 1.1.0', require: false
38+
39+
gem 'activemodel'
40+
41+
gem 'rails-hyperstack', path: '../../../rails-hyperstack' # github: 'hyperstack-org/hyperstack', branch: 'issue-60', glob: 'ruby/*/*.gemspec' #'~> 1.0.alpha' #,
42+
gem 'hyper-component', path: '../../../hyper-component'
43+
gem 'hyper-router', path: '../../../hyper-router'
44+
gem 'hyper-state', path: '../../../hyper-state'
45+
gem 'hyper-model', path: '../../../hyper-model'
46+
gem 'hyper-operation', path: '../../../hyper-operation'
47+
gem 'hyperstack-config', path: '../../../hyperstack-config'
48+
49+
#gem 'hyper-component', path: '../hyperstack/ruby/hyper-component'
50+
51+
group :development, :test do
52+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
53+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
54+
end
55+
56+
group :development do
57+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
58+
gem 'web-console', '>= 3.3.0'
59+
gem 'listen', '>= 3.0.5', '< 3.2'
60+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
61+
gem 'spring'
62+
gem 'spring-watcher-listen', '~> 2.0.0'
63+
end
64+
65+
group :test do
66+
# Adds support for Capybara system testing and selenium driver
67+
gem 'capybara', '>= 2.15'
68+
gem 'selenium-webdriver'
69+
# Easy installation and use of chromedriver to run system tests with Chrome
70+
gem 'chromedriver-helper'
71+
end
72+
73+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
74+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
75+
76+
group :development do
77+
#gem 'opal_hot_reloader', github: 'hyperstack-org/opal-hot-reloader' #path: '../opal-hot-reloader' #github: 'hyperstack-org/opal-hot-reloader'
78+
gem 'foreman'
79+
end

0 commit comments

Comments
 (0)