We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14e2ebd commit 8b098fcCopy full SHA for 8b098fc
README.md
@@ -1,6 +1,7 @@
1
-# Opal::Activesupport
+# Opal: ActiveSupport
2
3
-TODO: Write a gem description
+> @AstonJ But it's vanilla Ruby. It's not like you have ActiveSupport available, which somewhat defeats it for me.
4
+— @dhh, https://twitter.com/dhh/status/260783823254601728
5
6
## Installation
7
@@ -16,9 +17,17 @@ Or install it yourself as:
16
17
18
$ gem install opal-activesupport
19
20
+
21
## Usage
22
-TODO: Write usage instructions here
23
+Inside your `application.js.rb`:
24
25
+```ruby
26
+require 'active_support' # to require the whole active support lib
27
+require 'active_support/core_ext' # require only the corelib extensions
28
+require 'active_support/core_ext/string' # require only the corelib extensions
29
+```
30
31
32
## Contributing
33
0 commit comments