rxcms-sharing_plugin 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 932f6c28af72e14365657d4e8c4c1b746b321900
4
- data.tar.gz: f57a863905413a5e3e2ce1b0b2b834f1d4fad53d
3
+ metadata.gz: 6c4e8ccdf7082791f29cafcda51ee7e4fdb78b18
4
+ data.tar.gz: a472f314232cac89ec853912bc55adaff9bee55c
5
5
  SHA512:
6
- metadata.gz: 2a7950dd9c2e8ac21fd25fffd27288d1a7606096d2b484c105d5dec441f9dbc6e03efcb6be3f31029947400049348b6a97555dc1152fbd50ad3a84bb4f8b8589
7
- data.tar.gz: 9d37e6ac8cc422779b3839c379662436167edfa501ada4d3b20f3dbc1799675ea18aa88f59dd722a8fcb21f00a8bf39f06ed8ddd339092d58dd4d8af0e105eb2
6
+ metadata.gz: 2a62783686a0321f44d488a3cf199588fba3bdecd2e2a382f6d468fbaf9381c1e08aee8cccb9f0b673935d40754d6acae03510435a16cf1be6840b657b61ead2
7
+ data.tar.gz: 37604f5ea79af110f0be28219eca1267b14d001ae0e3fd4737cc6efacbbde32e09ddafdfd541cf5b96a543884c0a559b98c1b3c3cc40572596eb464e844e1398
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2010-2013 Kikoflame
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/Rakefile CHANGED
@@ -23,7 +23,16 @@ end
23
23
  APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
24
24
  load 'rails/tasks/engine.rake'
25
25
 
26
+ Bundler::GemHelper.install_tasks
26
27
 
28
+ Dir[File.join(File.dirname(__FILE__), 'tasks/**/*.rake')].each {|f| load f }
27
29
 
28
- Bundler::GemHelper.install_tasks
30
+ require 'rspec/core'
31
+ require 'rspec/core/rake_task'
32
+
33
+ desc "Run all specs in spec directory (excluding plugin specs)"
34
+
35
+ RSpec::Core::RakeTask.new(:spec => 'app:db:test:prepare')
36
+
37
+ task :default => :spec
29
38
 
@@ -1,3 +1,3 @@
1
1
  module RxcmsSharingPlugin
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rxcms-sharing_plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anh Nguyen
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-10-23 00:00:00.000000000 Z
12
+ date: 2013-11-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -71,10 +71,10 @@ files:
71
71
  - lib/rxcms-sharing_plugin/engine.rb
72
72
  - lib/rxcms-sharing_plugin/version.rb
73
73
  - lib/tasks/rxcms-sharing_plugin_tasks.rake
74
- - MIT-LICENSE
74
+ - LICENSE
75
75
  - Rakefile
76
76
  - README.rdoc
77
- homepage: https://bitbucket.org/kikoflame/rxcms-sharing-plugin
77
+ homepage: https://bitbucket.org/kikoflame/rxcms-sharing_plugin
78
78
  licenses:
79
79
  - MIT
80
80
  metadata:
data/MIT-LICENSE DELETED
@@ -1,20 +0,0 @@
1
- Copyright 2013 YOURNAME
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.