breakfast 0.0.8 → 0.1.0

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: 882b0a1b12b5302d29304cc333e080344ad03348
4
- data.tar.gz: 4965db6c1115c41785ab37e442a9867e3321eb7a
3
+ metadata.gz: f5447bbe6b28e1a6af018975d36098fb4f0374e7
4
+ data.tar.gz: 3f29c15f3a1db0d81dfd36809084522ad081642d
5
5
  SHA512:
6
- metadata.gz: 80b798da11291e04effb7bfa77ab9c5d7e25af88a1702988ab16a5f8c002b86f2c7a788635192bdde58f5d4f41948cc281f907d4beaa3ae2558c1802a3f93438
7
- data.tar.gz: a7433ce22785acddb6e1d0847ba556892a773ab23c2d07d87537cea63038f4648183b5fb1bf9d0eb8e84843afcf500f1571cd4a5f51393c6c4b698358c418216
6
+ metadata.gz: 8e6171faf5bcbb6016a9ece1666e1bd732bac2797cbfd905b966348574642c323540cfdb793032f7bfa23ac41c4643d063f923956d375b5bb1cded9a9ef031e4
7
+ data.tar.gz: ed9e5025135ce8cb3d9d3c5b584e74012891b44c8edcd41063c34cc4d6b74bc5b0f85fab0b4d426d9ff0f9202f11739542e4f4c31b7a952090290eb6e32d91b6
data/README.md CHANGED
@@ -1,41 +1,23 @@
1
+ <p align="center">
2
+ <img src="http://breakfast.devlocker.io/images/breakfast-illustration.png" width="400" />
3
+ </p>
1
4
  # Breakfast
5
+ [Breakfast](http://breakfast.devlocker.io/) integrates modern Javascript
6
+ tooling into your Rails project. Powered by [Brunch.io](http://brunch.io).
2
7
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/breakfast`. To experiment with that code, run `bin/console` for an interactive prompt.
8
+ Get support for ES6 syntax & modules, live reload for CSS, JS, & HTML, and NPM
9
+ support. Be up and running on the latest frontend framework in minutes.
4
10
 
5
- TODO: Delete this and the text above, and describe your gem
6
11
 
7
- ## Installation
12
+ ### Installation & Usage
13
+ See the official docs at
14
+ [http://breakfast.devlocker.io](http://breakfast.devlocker.io).
8
15
 
9
- Add this line to your application's Gemfile:
10
16
 
11
- ```ruby
12
- gem 'breakfast'
13
- ```
14
-
15
- And then execute:
16
-
17
- $ bundle
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install breakfast
22
-
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
-
33
- ## Contributing
34
-
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/breakfast.
36
-
37
-
38
- ## License
39
-
40
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
17
+ ### Contributing
18
+ Bug reports and pull requests are welcome on GitHub at
19
+ https://github.com/devlocker/breakfast.
41
20
 
21
+ ### License
22
+ The gem is available as open source under the terms of the [MIT
23
+ License](http://opensource.org/licenses/MIT).
data/breakfast.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["patrick@devlocker.io"]
11
11
 
12
12
  spec.summary = %q{Integrates Brunch into Rails}
13
- spec.description = %q{Replace the asset pipeline with Brunch. Get CSS, JS and HTML live-reloading out of the box. Full ES6 support with require. No need to launch extra servers.}
13
+ spec.description = %q{Replace the asset pipeline with Brunch. Get CSS, JS and HTML live-reloading out of the box. Full ES6 support with require.}
14
14
  spec.homepage = "https://github.com/devlocker/breakfast"
15
15
  spec.license = "MIT"
16
16
 
@@ -1,3 +1,3 @@
1
1
  module Breakfast
2
- VERSION = "0.0.8"
2
+ VERSION = "0.1.0"
3
3
  end
@@ -30,6 +30,10 @@ module.exports = {
30
30
  },
31
31
 
32
32
  npm: {
33
- enabled: true
33
+ globals: {
34
+ $: "jquery",
35
+ jQuery: "jquery",
36
+ breakfast: "breakfast-rails"
37
+ }
34
38
  }
35
39
  };
@@ -3,13 +3,15 @@
3
3
  "dependencies": {
4
4
  "actioncable": "^5.0.0",
5
5
  "breakfast-rails": "0.0.8",
6
+ "jquery": "^3.1.0",
7
+ "jquery-ujs": "^1.2.2",
6
8
  "turbolinks": "^5.0.0"
7
9
  },
8
10
  "devDependencies": {
11
+ "brunch": "~2.8.2",
9
12
  "babel-brunch": "~6.0.0",
10
- "brunch": "~2.1.3",
13
+ "css-brunch": "^2.6.1",
11
14
  "clean-css-brunch": "~1.8.0",
12
- "css-brunch": "~1.7.0",
13
15
  "javascript-brunch": "~1.8.0",
14
16
  "sass-brunch": "~2.6.3",
15
17
  "uglify-js-brunch": "~1.7.0"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: breakfast
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Koperwas
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-08-08 00:00:00.000000000 Z
11
+ date: 2016-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -95,7 +95,7 @@ dependencies:
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  description: Replace the asset pipeline with Brunch. Get CSS, JS and HTML live-reloading
98
- out of the box. Full ES6 support with require. No need to launch extra servers.
98
+ out of the box. Full ES6 support with require.
99
99
  email:
100
100
  - patrick@devlocker.io
101
101
  executables: []