opal-rails 0.6.0 → 0.6.1

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: ac0ced6ff2b710322ffff46ae1da74a727f29305
4
- data.tar.gz: b1ac2f475561f7188b78f8e4db208df8062dc43b
3
+ metadata.gz: ddabe95eaa8e0f4d729df7a754cd5c966c88af58
4
+ data.tar.gz: d4c69cdd6223476840d62002e8305cdd72662b66
5
5
  SHA512:
6
- metadata.gz: 354fe4c691ed9c6d49b83b439e91fd00b749cf5d6ae234757bfc19cf953a080fe8775405160e8a73755840829256a6cda4419cc7cadad1f6cba489fd9b1b0de6
7
- data.tar.gz: 73ca176afd17d8e9f6b9a80dd1c13d3e68a24437774c90f3f431da887feaaef6bea313d8417bb9cf35d0466cb06e7f0e5a69d7c68a27ad0ee8e13e30e5129e35
6
+ metadata.gz: da48c552e451f18503883e748d5a91fe4b2da94ac5ecf9b32144981c6e6da87673d6da6ef63d568793d271e52e51229ac9723c39a7ed7d9fee09bea7f6063879
7
+ data.tar.gz: a9155d595d4addd98d618e4ba14063817710f89676cdc25d6995ea3182f40c27582b87b71a8a529c1fe8284770079e1dee37d9c9993fa9b26522ff7f05dd3bd6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # edge
2
2
 
3
+ # 0.6.1 2013-11-05
4
+
5
+ * Fix the rake task, now uses `opal-rspec` too
6
+
7
+
8
+ # 0.6.0 2013-11-05
9
+
10
+ * Don't load source maps if they're not enabled via `config.opal.source_map_enabled`
11
+ * Update to Opal v0.5.0
12
+ * Run in-browser specs with `opal-rspec`
13
+
14
+
15
+ # 0.5.2 2013-09-05
16
+
17
+ * Add `opal-activesupport` as a dependency
18
+ * Haml filter now is loaded inside the railtie initializer, avoiding potential Gemfile ordering issues
19
+ * Add the `rake opal:spec` task to run browser specs from the terminal (requires phantomjs)
20
+
21
+
22
+ # 0.5.1 2013-07-02
23
+
24
+ * `.js` suffix is now optional for in-browser specs
25
+
26
+
27
+ # 0.5.0 2013-06-30
28
+
29
+ * Add support for source-maps
30
+ * `opal` can now be used in the rails app generator: `rails new -j opal`
31
+ * migrate `#to_native` to the new signature: `#to_n`
32
+
33
+
34
+ # 0.4.0 2013-06-03
35
+
3
36
  * Add `Rails.application.config.opal` which accepts:
4
37
  - method_missing: `<Boolean>` (default: `true`)
5
38
  - optimized_operators: `<Boolean>` (default: `true`)
@@ -8,6 +41,7 @@
8
41
 
9
42
  * Add the Changelog
10
43
 
44
+
11
45
  # 0.3.8 2013-05-07
12
46
 
13
47
  * Add `opal/rails` alongside to `opal-rails` for older bundlers autorequire
data/README.md CHANGED
@@ -131,7 +131,7 @@ Of course you need to require `haml-rails` separately since its presence is not
131
131
 
132
132
  ### Spec!
133
133
 
134
- Add specs into `app/assets/javascripts/specs`:
134
+ Add specs into `app/assets/javascripts/spec`:
135
135
 
136
136
  and then a spec folder with you specs!
137
137
 
@@ -1,5 +1,5 @@
1
1
  module Opal
2
2
  module Rails
3
- VERSION = '0.6.0'
3
+ VERSION = '0.6.1'
4
4
  end
5
5
  end
@@ -1,6 +1,6 @@
1
- require 'opal/spec/rake_task'
1
+ require 'opal/rspec/rake_task'
2
2
 
3
- Opal::Spec::RakeTask.new('opal:spec' => :environment) do |server|
3
+ Opal::RSpec::RakeTask.new('opal:spec' => :environment) do |server|
4
4
  require 'tempfile'
5
5
 
6
6
  asset_paths = Opal.paths + Rails.configuration.assets.paths.to_a
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opal-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elia Schito
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-05 00:00:00.000000000 Z
11
+ date: 2013-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: opal