application_service 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ee603240f72dc651aeac22e346c14444f57a0f26
4
+ data.tar.gz: cd49b620585510edabf4178ff85a57c37eff0bd2
5
+ SHA512:
6
+ metadata.gz: 14b7a8fc47c6ae77cf4fa3d79b3f03888e4a8573044200eaed899d6c1d2726be8d1bfc997c2ba2ea0467660d23cbe36e2c17bcf83d43b7ba7de4db6beecdf0f5
7
+ data.tar.gz: f486c0061caf62f11ae63f0217c2bcff6b54ecb54cec779fccd28d17a28ccb61ea79250a92c83b930f1b03d26fd3a546631e0f08ef45fe362541bf7ff0ce88f1
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ application_service
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-1.9.3-p286-perf
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ gem 'activesupport'
7
+
8
+ # Add dependencies to develop your gem here.
9
+ # Include everything needed to run rake, tests, features, etc.
10
+ group :development do
11
+ gem "rspec"
12
+ gem "jeweler", "~> 1.8.4"
13
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,74 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ activesupport (4.0.0)
5
+ i18n (~> 0.6, >= 0.6.4)
6
+ minitest (~> 4.2)
7
+ multi_json (~> 1.3)
8
+ thread_safe (~> 0.1)
9
+ tzinfo (~> 0.3.37)
10
+ addressable (2.3.5)
11
+ atomic (1.1.10)
12
+ builder (3.2.2)
13
+ diff-lcs (1.2.4)
14
+ faraday (0.8.8)
15
+ multipart-post (~> 1.2.0)
16
+ git (1.2.5)
17
+ github_api (0.10.1)
18
+ addressable
19
+ faraday (~> 0.8.1)
20
+ hashie (>= 1.2)
21
+ multi_json (~> 1.4)
22
+ nokogiri (~> 1.5.2)
23
+ oauth2
24
+ hashie (2.0.5)
25
+ highline (1.6.19)
26
+ httpauth (0.2.0)
27
+ i18n (0.6.4)
28
+ jeweler (1.8.6)
29
+ builder
30
+ bundler (~> 1.0)
31
+ git (>= 1.2.5)
32
+ github_api (= 0.10.1)
33
+ highline (>= 1.6.15)
34
+ nokogiri (= 1.5.10)
35
+ rake
36
+ rdoc
37
+ json (1.8.0)
38
+ jwt (0.1.8)
39
+ multi_json (>= 1.5)
40
+ minitest (4.7.5)
41
+ multi_json (1.7.7)
42
+ multi_xml (0.5.4)
43
+ multipart-post (1.2.0)
44
+ nokogiri (1.5.10)
45
+ oauth2 (0.9.2)
46
+ faraday (~> 0.8)
47
+ httpauth (~> 0.2)
48
+ jwt (~> 0.1.4)
49
+ multi_json (~> 1.0)
50
+ multi_xml (~> 0.5)
51
+ rack (~> 1.2)
52
+ rack (1.5.2)
53
+ rake (10.1.0)
54
+ rdoc (4.0.1)
55
+ json (~> 1.4)
56
+ rspec (2.14.1)
57
+ rspec-core (~> 2.14.0)
58
+ rspec-expectations (~> 2.14.0)
59
+ rspec-mocks (~> 2.14.0)
60
+ rspec-core (2.14.4)
61
+ rspec-expectations (2.14.0)
62
+ diff-lcs (>= 1.1.3, < 2.0)
63
+ rspec-mocks (2.14.2)
64
+ thread_safe (0.1.2)
65
+ atomic
66
+ tzinfo (0.3.37)
67
+
68
+ PLATFORMS
69
+ ruby
70
+
71
+ DEPENDENCIES
72
+ activesupport
73
+ jeweler (~> 1.8.4)
74
+ rspec
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2013 Nathan Woodhull
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,19 @@
1
+ = application_service
2
+
3
+ A service layer for rails apps.
4
+
5
+ == Contributing to application_service
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
9
+ * Fork the project.
10
+ * Start a feature/bugfix branch.
11
+ * Commit and push until you are happy with your contribution.
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2013 Nathan Woodhull. See LICENSE.txt for
18
+ further details.
19
+
data/Rakefile ADDED
@@ -0,0 +1,49 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "application_service"
18
+ gem.homepage = "http://github.com/woodhull/application_service"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Service Layer Scaffold}
21
+ gem.description = %Q{A service layer scaffold for rails apps extracted from Agra}
22
+ gem.email = "woodhull@gmail.com"
23
+ gem.authors = ["Nathan Woodhull"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
35
+ spec.pattern = 'spec/**/*_spec.rb'
36
+ spec.rcov = true
37
+ end
38
+
39
+ task :default => :spec
40
+
41
+ require 'rdoc/task'
42
+ Rake::RDocTask.new do |rdoc|
43
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
44
+
45
+ rdoc.rdoc_dir = 'rdoc'
46
+ rdoc.title = "application_service #{version}"
47
+ rdoc.rdoc_files.include('README*')
48
+ rdoc.rdoc_files.include('lib/**/*.rb')
49
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
@@ -0,0 +1,70 @@
1
+ require 'active_support/all'
2
+
3
+ class ApplicationService
4
+
5
+ include ActiveSupport::Callbacks
6
+ define_callbacks :save, :create, :update,
7
+ :terminator => "result == false"
8
+
9
+ def initialize
10
+ end
11
+
12
+
13
+ def self.before(callback, *args)
14
+ args.each do |arg|
15
+ set_callback callback, :before, arg, :if => "!halted"
16
+ end
17
+ end
18
+
19
+ def self.after(callback, *args)
20
+ args.each do |arg|
21
+ set_callback callback, :after, arg, :if => "!halted && value"
22
+ end
23
+ end
24
+
25
+ def current_object
26
+ @obj
27
+ end
28
+
29
+ def current_object=(obj)
30
+ @obj = obj
31
+ end
32
+
33
+ def save(obj)
34
+ @obj = obj
35
+ run_callbacks :save do
36
+ if @obj.new_record?
37
+ result = create
38
+ else
39
+ result = update
40
+ end
41
+ result
42
+ end
43
+ end
44
+
45
+ def update_attributes(obj, params)
46
+ @obj = obj
47
+ @obj.assign_attributes(params)
48
+ run_callbacks :save do
49
+ run_callbacks :update do
50
+ @obj.save
51
+ end
52
+ end
53
+ end
54
+
55
+ private
56
+
57
+ def create
58
+ run_callbacks :create do
59
+ @obj.save
60
+ end
61
+ end
62
+
63
+ def update
64
+ run_callbacks :update do
65
+ @obj.save
66
+ end
67
+ end
68
+
69
+
70
+ end
@@ -0,0 +1,55 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ require 'spec_helper'
4
+
5
+ describe ApplicationService do
6
+ subject { ApplicationService.new }
7
+
8
+ describe "#current_object" do
9
+ it "should allow set and get" do
10
+ obj = double()
11
+ as = ApplicationService.new
12
+ as.current_object= obj
13
+ as.current_object.should == obj
14
+ end
15
+ end
16
+
17
+ describe "#save" do
18
+ it "should let you save an object" do
19
+ obj = double()
20
+ obj.stub(:new_record?).and_return(true)
21
+ obj.should_receive(:save)
22
+ subject.save(obj)
23
+ end
24
+
25
+ it "should trigger create" do
26
+ obj = double()
27
+ obj.stub(:new_record?).and_return(true)
28
+ obj.stub(:save)
29
+
30
+ subject.should_receive(:create)
31
+ subject.save(obj)
32
+ end
33
+
34
+
35
+ it "should trigger update" do
36
+ obj = double()
37
+ obj.stub(:new_record?).and_return(false)
38
+ obj.stub(:save)
39
+
40
+ subject.should_receive(:update)
41
+ subject.save(obj)
42
+ end
43
+ end
44
+
45
+ describe "#update_attributes" do
46
+ it "should trigger update" do
47
+ obj = double()
48
+ obj.should_receive(:assign_attributes).with( {:foo => 'bar'}).and_return(:true)
49
+ obj.should_receive(:save)
50
+
51
+ subject.update_attributes(obj, {:foo => 'bar'})
52
+ end
53
+
54
+ end
55
+ end
@@ -0,0 +1,12 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'rspec'
4
+ require 'application_service'
5
+
6
+ # Requires supporting files with custom matchers and macros, etc,
7
+ # in ./support/ and its subdirectories.
8
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
9
+
10
+ RSpec.configure do |config|
11
+
12
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: application_service
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Nathan Woodhull
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-07-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activesupport
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jeweler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: 1.8.4
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 1.8.4
55
+ description: A service layer scaffold for rails apps extracted from Agra
56
+ email: woodhull@gmail.com
57
+ executables: []
58
+ extensions: []
59
+ extra_rdoc_files:
60
+ - LICENSE.txt
61
+ - README.rdoc
62
+ files:
63
+ - .document
64
+ - .rspec
65
+ - .ruby-gemset
66
+ - .ruby-version
67
+ - Gemfile
68
+ - Gemfile.lock
69
+ - LICENSE.txt
70
+ - README.rdoc
71
+ - Rakefile
72
+ - VERSION
73
+ - lib/application_service.rb
74
+ - spec/application_service_spec.rb
75
+ - spec/spec_helper.rb
76
+ homepage: http://github.com/woodhull/application_service
77
+ licenses:
78
+ - MIT
79
+ metadata: {}
80
+ post_install_message:
81
+ rdoc_options: []
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - '>='
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ requirements: []
95
+ rubyforge_project:
96
+ rubygems_version: 2.0.4
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: Service Layer Scaffold
100
+ test_files: []