hyperloop 0.5.5 → 0.5.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5376b442bf884dc1d96b3d87f6e4b633e16c39fa
4
- data.tar.gz: a15ade6b1d9a396a8092aaaf7bf7f7eb4485c8f2
3
+ metadata.gz: 071f0464fd82696b233eaa22fcc2fe9dd41ed67c
4
+ data.tar.gz: 63b84530dcbf79cfaa6014b45a610f09e69f8105
5
5
  SHA512:
6
- metadata.gz: 7583e7c1d2942717ef41af38c18182f6a0a3eb85c029439a5ac1b3ef6fbd2cb93086ea6d5cc30b4d3511dc972339f1eda856147549e4698e55a08633a1e8b985
7
- data.tar.gz: fa5b45e74e4ad5b45cffae20505d5bb618814f74867d524e82fb1345372d3003aaa4154a296daf85095140be9c4905729ddba5233834a0dbcab3aac5ff1c241d
6
+ metadata.gz: bf9473118019e77856f1b06d7233a7462432d52b3e7ec256971774c4d13a64992222fe308bfdd252a8cda28fdcf63c94a8be6985e33fb0b9e30fb4911cf214b0
7
+ data.tar.gz: 7154c54c14f75d0676b6a6a88e3c78a81c6e411726395d2a114b02e965c99d91efa807bdad0b262ce4eef0acc21542e7e821245c79fc8ae879502bb167b31e29
data/README.md CHANGED
@@ -1,27 +1,44 @@
1
+ # Welcome to Hyperloop
1
2
 
2
- ## Hyperloop - The Complete Isomorphic Ruby Framework
3
+ ![Screen](https://github.com/ruby-hyperloop/hyperloop/blob/master/hyperloop-logo-small-pink.png)
3
4
 
4
- Hyperloop works great with new or existing rails apps, so it's pain free to introduce it to your application.
5
+ ## Hyperloop - The Complete Isomorphic Ruby Framework
5
6
 
6
- Hyperloop has been tested with the most recent Ruby On Rails verions:<br> Rails (4.2), Rails (5.0) and the last Rails (5.1.0.rc1).
7
+ ### Simplicity
8
+ Build interactive Web applications quickly. **Hyperloop** encourages rapid development with clean, pragmatic design. With developer productivity as our highest goal, **Hyperloop** takes care of much of the hassle of Web development, so you can focus on innovation and delivering end-user value.
7
9
 
10
+ ### Isomorphic Ruby
11
+ One language. One model. One set of tests. The same business logic and domain models running on the clients and the server. Hyperloop is fully integrated with Rails and also gives you unfettered access to the complete universe of JavaScript libraries (including React) from within your Ruby code. Hyperloop lets you build beautiful interactive user interfaces in Ruby.
8
12
 
9
- ### Setup
13
+ ### Complete Architecture
14
+ Everything has a place in our architecture. **C**omponents deliver interactive user experiences, **O**perations encapsulate business logic, **M**odels magically synchronize data between clients and servers, **P**olicies govern authorization and **S**tores hold local state.
10
15
 
11
- In your `Gemfile`
16
+ ## Getting Started
12
17
 
18
+ 1. Update your Gemfile:
19
+
13
20
  ```ruby
21
+ #Gemfile
22
+
14
23
  gem 'hyperloop'
15
24
  ```
16
25
 
17
- then
26
+ 2. At the command prompt, update your bundle :
18
27
 
19
- ```ruby
20
- bundle install
21
- ```
28
+ $ bundle update
22
29
 
23
- Once the Hyperloop Gem and all its dependencies have been installed, it's time to run the hyperloop install generator.
30
+ 3. Run the hyperloop install generator:
31
+
32
+ $ rails g hyperloop:install
33
+
34
+ 4. Follow the guidelines to start developing your application. You may find
35
+ the following resources handy:
36
+ * [Getting Started with Hyperloop](http://ruby-hyperloop.io/start)
37
+ * [Hyperloop Guides](http://ruby-hyperloop.io/docs/architecture)
38
+ * [Hyperloop Tutorial](http://ruby-hyperloop.io/tutorials)
39
+
40
+
41
+ ## License
42
+
43
+ Ruby on Rails is released under the [MIT License](http://www.opensource.org/licenses/MIT).
24
44
 
25
- ```ruby
26
- rails g hyperloop:install
27
- ```
@@ -11,7 +11,7 @@ module Hyperloop
11
11
  end
12
12
 
13
13
  def inject_engine_to_routes
14
- route 'mount Hyperloop::Engine => \'/rr\''
14
+ route 'mount Hyperloop::Engine => \'/hyperloop\''
15
15
  end
16
16
 
17
17
  def create_hyperloop_directories
@@ -45,7 +45,6 @@ end unless Rails.env.production?
45
45
 
46
46
  Hyperloop.configuration do |config|
47
47
  config.transport = :simple_poller
48
- config.import 'reactrb/auto-import'
49
48
  end
50
49
 
51
50
  RUBY
@@ -1,3 +1,3 @@
1
1
  module Hyperloop
2
- VERSION = '0.5.5'
2
+ VERSION = '0.5.6'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hyperloop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 0.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Loic Boutet
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-03-28 00:00:00.000000000 Z
13
+ date: 2017-04-10 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: hyper-model
@@ -120,6 +120,7 @@ files:
120
120
  - ".gitignore"
121
121
  - LICENSE
122
122
  - README.md
123
+ - hyperloop-logo-small-pink.png
123
124
  - hyperloop.gemspec
124
125
  - lib/generators/hyper/component_generator.rb
125
126
  - lib/generators/hyper/router_generator.rb