Skip to content

Commit c59e3d3

Browse files
committed
Auto-load without the need for a require statement
1 parent d458578 commit c59e3d3

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1+
# EasyAPI 0.2.1 (July 30, 2014) #
2+
3+
* Auto-load without the need for a require statement
4+
15
# EasyAPI 0.2.0 (July 28, 2014) #
26

37
* Add support for new block-style syntax
48
* Add support for JRuby
59

6-
# ActiveAttr 0.1.3 (April 16, 2014) #
10+
# EasyAPI 0.1.3 (April 16, 2014) #
711

812
* Return correct content_type for jsonp requests
913

10-
# ActiveAttr 0.1.2 (March 11, 2013) #
14+
# EasyAPI 0.1.2 (March 11, 2013) #
1115

1216
* Genericize error messages
1317
* Add support for Ruby 1.8.7

lib/easy-api.rb

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
require File.dirname(__FILE__) + '/easy/api/version'
2-
require File.dirname(__FILE__) + '/easy/api/controller_methods'
3-
require File.dirname(__FILE__) + '/easy/api/block_wrapper'
4-
require File.dirname(__FILE__) + '/easy/api/result'
5-
require File.dirname(__FILE__) + '/easy/api/error'
1+
require 'easy/api'

lib/easy/api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Easy
22
module Api
3-
VERSION = "0.2.0"
3+
VERSION = "0.2.1"
44
end
55
end

spec/lib/easy/api/users_controller_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
require 'rspec/rails'
66

77
RSpec.describe UsersController, :type => :controller do
8-
context 'depricated render_format method' do
8+
context 'deprecated render_format method' do
99

1010
context 'GET #index' do
1111

0 commit comments

Comments
 (0)