aced_rails 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 13a5db19e18e0dbc89e64b322ab4f19d2a9f37bc
4
- data.tar.gz: 3ca033c3e88241e8f165c3108428700f14da5f10
3
+ metadata.gz: 36d8a37ee1dedbcca4c55d3174d43649a7a6ddd5
4
+ data.tar.gz: a4e002bab97d8ad39a74140e4ee1f7ed20723f01
5
5
  SHA512:
6
- metadata.gz: 08042e2ef5c1b75ba6f73ec7ed28aaba52f012c0ea35ca40f65349d8031c218843208e26eeaab6d03b3eae12d6ca0c1224490722bfc2d0402f12169ae42d3508
7
- data.tar.gz: 074f1df8ab12a20fa0613a8e06df42f6e6296dd618d5a6bf88e610bf39e92b3badb4107e05907a109d4ec62b157bdfd5baff5bcfd0cbb15c4a2b0df02132e345
6
+ metadata.gz: 888182f69c4569f9d7ead9ffef82708dff06572612456a1f7fdaf96d7f00aadd242a068b2c12dc8244c6283692c8087c9a25c54efac7e78ab33671fd06339a1f
7
+ data.tar.gz: 4c5e49fdfe817c651bc61e5cb946c11599fe2da45536b314f1fc6a47be1a6cf192d04ca7b64d86f8fce4f6019990490490298085e6d39465f6b665a2723fa25f
@@ -1,3 +1,8 @@
1
+ v 0.2.1
2
+ =======
3
+
4
+ * fix some bugs
5
+
1
6
  v 0.2.0
2
7
  =======
3
8
 
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # AcedRails [![Gem Version](https://badge.fury.io/rb/aced_rails.png)](http://badge.fury.io/rb/aced_rails) [![Dependency Status](https://gemnasium.com/ffloyd/aced_rails.png)](https://gemnasium.com/ffloyd/aced_rails) [![Build Status](https://travis-ci.org/ffloyd/aced_rails.png)](https://travis-ci.org/ffloyd/aced_rails) [![endorse](http://api.coderwall.com/ffloyd/endorsecount.png)](http://coderwall.com/ffloyd)
1
+ # AcedRails [![Gem Version](https://badge.fury.io/rb/aced_rails.png)](http://badge.fury.io/rb/aced_rails) [![Dependency Status](https://gemnasium.com/ffloyd/aced_rails.png)](https://gemnasium.com/ffloyd/aced_rails) [![endorse](http://api.coderwall.com/ffloyd/endorsecount.png)](http://coderwall.com/ffloyd)
2
2
 
3
3
  Ace version is 1.0.0
4
4
 
5
- [Demo app](http://aced-rails.herokuapp.com/)
5
+ [Demo app](http://aced-rails.herokuapp.com/) and [repo](https://github.com/ffloyd/aced_rails-test)
6
6
 
7
7
  This gem provide some generators and helpers for using [Ajax.org Cloud9 Editor](http://ajaxorg.github.com/ace/) (ACE) in Rails applications.
8
8
 
@@ -14,7 +14,7 @@ module AcedRails
14
14
  @@noconflict = false
15
15
 
16
16
  def self.get_assets_files
17
- result = ["aced-rails.js", "jquery.random.js", "ace/ace.js"]
17
+ result = ["aced-rails.js", "ace/ace.js"]
18
18
 
19
19
  (@@themes + ['textmate']).each do |theme|
20
20
  result << "ace/theme-#{theme}.js"
@@ -38,6 +38,6 @@ module AcedRails
38
38
 
39
39
  result
40
40
  end
41
-
41
+
42
42
  end
43
43
  end
@@ -2,7 +2,7 @@
2
2
  require "aced_rails/helpers"
3
3
 
4
4
  module AcedRails
5
- class Engine < Rails::Engine
5
+ class Engine < ::Rails::Engine
6
6
  initializer 'AcedRails.assets_pipeline' do |app|
7
7
  app.config.assets.precompile += AcedRails::Config.get_assets_files
8
8
  end
@@ -1,3 +1,3 @@
1
1
  module AcedRails
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
@@ -10,7 +10,7 @@ AcedRails.configure do |config|
10
10
 
11
11
  # select modes
12
12
  # available modes:
13
- # abap, asciidoc, c9search, c_cpp, clojure, coffee, coldfusion,
13
+ # abap, asciidoc, c9search, c_cpp, clojure, coffee, coldfusion,
14
14
  # csharp, css, curly, dart, diff, django, dot, glsl, golang, groovy,
15
15
  # haml, haxe, html, jade, java, javascript, json, jsp, jsx, latex, less,
16
16
  # liquid, lisp, livescript, lua, luapage, lucene, makefile, markdown,
@@ -24,6 +24,11 @@ AcedRails.configure do |config|
24
24
  # coffee, css, javascript, json, php, xquery
25
25
  config.workers = [:javascript]
26
26
 
27
+ # select keybindings
28
+ # available keybindings:
29
+ # emacs, vim
30
+ config.keybindings = []
31
+
27
32
  # select extensions:
28
33
  # available extensions:
29
34
  # searchbox, spellcheck, static_highlight, textarea
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aced_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roman Kolesnev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-03-07 00:00:00.000000000 Z
11
+ date: 2013-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails