Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal-jquery
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8ae8502a16ba
Choose a base ref
...
head repository: opal/opal-jquery
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6d864fb0dfa0
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Feb 3, 2015

  1. Copy the full SHA
    2d1043d View commit details
  2. Bump version

    adambeynon committed Feb 3, 2015
    Copy the full SHA
    6d864fb View commit details
Showing with 14 additions and 15 deletions.
  1. +11 −9 CHANGELOG.md
  2. +0 −3 Gemfile
  3. +1 −1 lib/opal/jquery/version.rb
  4. +2 −2 opal-jquery.gemspec
20 changes: 11 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# EDGE
## EDGE

## 0.3.0 2015-02-03

* Move all files under `opal/jquery` require namespace, rather than
current `opal-jquery` require paths.
@@ -23,7 +25,7 @@
* Add Promise support to `HTTP` get/post/put/delete methods. Also remove
`HTTP#callback` and `#errback` methods.

# 0.2.0 - March 12, 2013
## 0.2.0 2014-03-12

* Add `Document.body` and `Document.head` shortcut to element instances.

@@ -37,26 +39,26 @@

* Expose `#detach` method on `Element`.

# 0.1.2 - December 1, 2013
## 0.1.2 2013-12-01

* Support setting html content through `Element#html()`.

* Add `Element` methods: `#get`, `#attr` and `#prop` by aliasing them to
jquery implementations.

# 0.1.1 - November 11, 2013
## 0.1.1 2013-11-03

* Require `native` from stdlib for `HTTP` to use.

# 0.1.0 - November 3, 2013
## 0.1.0 2013-11-03

* Add `Window` and `$window` alias.

* Support `Zepto` as well as `jQuery`.

* `Event` is now a wrapper around native event from dom listeners.

# 0.0.9 - June 15, 2013
## 0.0.9 2013-06-15

* Revert earlier commit, and use `$document` as reference to jquery
wrapped `document`.
@@ -65,15 +67,15 @@

* Depreceate $document.title and $document.title=.

# 0.0.8 - May 2, 2013
## 0.0.8 2013-05-02

* Depreceate Document in favor of $document global.

* Add HTTP.delete() for creating DELETE request.

# 0.0.7 - February 20, 2013
## 0.0.7 2013-02-20

* Add Element#method_missing which forwards missing calls to try and call
* Add Element#method\_missing which forwards missing calls to try and call
method as a native jquery function/plugin.

* Depreceate Document finder methods (Document.find, Document[]). The finder
3 changes: 0 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
source 'https://rubygems.org'
gemspec

gem 'opal', github: 'opal/opal'
gem 'opal-rspec', github: 'opal/opal-rspec'
2 changes: 1 addition & 1 deletion lib/opal/jquery/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Opal
module JQuery
VERSION = '0.3.0.beta2'
VERSION = '0.3.0'
end
end
4 changes: 2 additions & 2 deletions opal-jquery.gemspec
Original file line number Diff line number Diff line change
@@ -15,8 +15,8 @@ Gem::Specification.new do |s|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ['lib']

s.add_runtime_dependency 'opal', '~> 0.7.0.beta3'
s.add_development_dependency 'opal-rspec', '~> 0.4.0.beta4'
s.add_runtime_dependency 'opal', '~> 0.7.0'
s.add_development_dependency 'opal-rspec', '~> 0.4.0'
s.add_development_dependency 'yard'
s.add_development_dependency 'rake'
end