babel-rails 0.2.1 → 0.2.2

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: cdeb307c1db75772973f85f1116e704862d70cdf
4
- data.tar.gz: e36c0768bf97039052633a22193f5e72d591c075
3
+ metadata.gz: ddacf59b574d6159211a2ba4a98fd9d4a29e6a5b
4
+ data.tar.gz: 27356dd267f4b6a1c130b7ecf547de8bbcd69442
5
5
  SHA512:
6
- metadata.gz: 8e7a35e6b912e9dde5d162656030549dcd8462ca3f5da45403fa6a825f03437b14d6a1326ef35cc53cd9dcc9550b536dbb307c1c44913bf455abf3acf93017c8
7
- data.tar.gz: 2e79726d345e02e98d40d3063ebb6c158a31fe862debfad5055d036d51f0f4067d0994367331fdf0f5cd12c9369210548f5b1d30150d312a52e9e39b074d5b91
6
+ metadata.gz: ecffed5e95ecaf78a0ca62881177ea906cbc0704b25ae67d24f5550c70d4f3bd6d08695478ece4c6244f6b28fe037c1778578377b7a011bd09b88731941cc16f
7
+ data.tar.gz: 2f85d54d515fa32207cc7952511bd4e50151db2b90197f2acaff3eff4fdb492b1426db887ef862a116c47a2bd6946f6a8f868394e2f57bf0680171ac4f800737
data/.DS_Store ADDED
Binary file
data/README.md CHANGED
@@ -1,34 +1,22 @@
1
- # Babel::Rails
1
+ # Babel-Rails
2
2
 
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/babel/rails`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ Babel adapter for the Rails asset pipeline. Add generators for ES6+
6
4
 
7
5
  ## Installation
8
6
 
9
- Add this line to your application's Gemfile:
7
+ Add the babel-rails gem to your Gemfile:
10
8
 
11
- ```ruby
9
+ ~~~ruby
12
10
  gem 'babel-rails'
13
- ```
14
-
15
- And then execute:
16
-
17
- $ bundle
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install babel-rails
22
-
23
- ## Usage
11
+ ~~~
24
12
 
25
- TODO: Write usage instructions here
13
+ ## Running tests
26
14
 
27
- ## Development
15
+ $ bundle install
16
+ $ bundle exec rake test
28
17
 
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
18
+ If you need to test against local gems, use Bundler's gem `:path` option in the Gemfile.
30
19
 
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
20
 
33
21
  ## Contributing
34
22
 
data/babel-rails.gemspec CHANGED
@@ -6,8 +6,8 @@ require 'babel/rails/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "babel-rails"
8
8
  spec.version = Babel::Rails::VERSION
9
- spec.authors = ["liceova22@gmail.com"]
10
- spec.email = ["liceova22@gmail.com"]
9
+ spec.authors = ["Liceth Ovalles", "Santiago Pastorino"]
10
+ spec.email = ["liceova22@gmail.com", "santiago@wyeworks.com"]
11
11
 
12
12
  spec.summary = %q{ES2015+ adapter for the Rails asset pipeline.}
13
13
  spec.description = %q{ES2015+ adapter for the Rails asset pipeline.}
@@ -1,5 +1,5 @@
1
1
  module Babel
2
2
  module Rails
3
- VERSION = "0.2.1"
3
+ VERSION = "0.2.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: babel-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
- - liceova22@gmail.com
7
+ - Liceth Ovalles
8
+ - Santiago Pastorino
8
9
  autorequire:
9
10
  bindir: exe
10
11
  cert_chain: []
11
- date: 2016-10-25 00:00:00.000000000 Z
12
+ date: 2016-11-01 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: railties
@@ -123,10 +124,12 @@ dependencies:
123
124
  description: ES2015+ adapter for the Rails asset pipeline.
124
125
  email:
125
126
  - liceova22@gmail.com
127
+ - santiago@wyeworks.com
126
128
  executables: []
127
129
  extensions: []
128
130
  extra_rdoc_files: []
129
131
  files:
132
+ - ".DS_Store"
130
133
  - ".gitignore"
131
134
  - ".travis.yml"
132
135
  - Gemfile
@@ -143,6 +146,8 @@ files:
143
146
  - lib/babel/rails/version.rb
144
147
  - lib/rails/.DS_Store
145
148
  - lib/rails/generators/.DS_Store
149
+ - lib/rails/generators/babel/.DS_Store
150
+ - lib/rails/generators/babel/assets/.DS_Store
146
151
  - lib/rails/generators/babel/assets/assets_generator.rb
147
152
  - lib/rails/generators/babel/assets/templates/javascript.es6
148
153
  homepage: https://github.com/Liceth/babel-rails.