Skip to content

Commit 113f25e

Browse files
committed
hyper-component rename complete, and doc home page examples 1 and 2 added
1 parent 6daeb9d commit 113f25e

Some content is hidden

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

82 files changed

+1643
-17
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
*.rbc
2+
capybara-*.html
3+
.rspec
4+
/log
5+
/tmp
6+
/db/*.sqlite3
7+
/db/*.sqlite3-journal
8+
/public/system
9+
/coverage/
10+
/spec/tmp
11+
*.orig
12+
rerun.txt
13+
pickle-email-*.html
14+
15+
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
16+
config/initializers/secret_token.rb
17+
config/master.key
18+
19+
# Only include if you have production secrets in this file, which is no longer a Rails default
20+
# config/secrets.yml
21+
22+
# dotenv
23+
# TODO Comment out this rule if environment variables can be committed
24+
.env
25+
26+
## Environment normalization:
27+
/.bundle
28+
/vendor/bundle
29+
30+
# these should all be checked in to normalize the environment:
31+
# Gemfile.lock, .ruby-version, .ruby-gemset
32+
33+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
34+
.rvmrc
35+
36+
# if using bower-rails ignore default bower_components path bower.json files
37+
/vendor/assets/bower_components
38+
*.bowerrc
39+
bower.json
40+
41+
# Ignore pow environment settings
42+
.powenv
43+
44+
# Ignore Byebug command history file.
45+
.byebug_history
46+
47+
# Ignore node_modules
48+
node_modules/
49+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby-2.4.1
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
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+
#https://github.com/hyperstack-org/hyperstack/blob/edge/ruby/hyper-component/hyper-component.gemspec
39+
# gem 'hyper-component', github: 'hyperstack-org/hyperstack', branch: 'edge', glob: 'ruby/*/*.gemspec'
40+
# gem 'hyper-state', github: 'hyperstack-org/hyperstack', branch: 'edge', glob: 'ruby/*/*.gemspec'
41+
# gem 'hyperstack-config', github: 'hyperstack-org/hyperstack', branch: 'edge', glob: 'ruby/*/*.gemspec'
42+
gem 'hyper-component', path: '../../../hyper-component'
43+
gem 'hyper-state', path: '../../../hyper-state'
44+
gem 'hyperstack-config', path: '../../../hyperstack-config'
45+
gem 'hyper-spec', path: '../../../hyper-spec'
46+
# gem 'hyperloop'
47+
#gem 'hyper-operation'
48+
gem 'opal-rails' #, '~> 0.9.4'
49+
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+
#gem 'opal_hot_reloader', path: '../opal-hot-reloader' #github: 'hyperstack-org/opal-hot-reloader', branch: :hyperstack #github: 'hyperstack-org/opal-hot-reloader' github: 'hyperstack-org/opal-hot-reloader'
58+
gem 'foreman'
59+
gem 'pry'
60+
61+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
62+
gem 'web-console', '>= 3.3.0'
63+
gem 'listen', '>= 3.0.5', '< 3.2'
64+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
65+
gem 'spring'
66+
gem 'spring-watcher-listen', '~> 2.0.0'
67+
end
68+
69+
group :test do
70+
# Adds support for Capybara system testing and selenium driver
71+
gem 'capybara', '>= 2.15'
72+
gem 'selenium-webdriver'
73+
# Easy installation and use of chromedriver to run system tests with Chrome
74+
gem 'chromedriver-helper'
75+
gem 'rspec', '~> 3.7.0'
76+
gem 'rspec-rails'
77+
end
78+
79+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
80+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

0 commit comments

Comments
 (0)