rxcms-podio_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: 4d9e9625378def85b5a235ea67b13cf8838456f9
4
- data.tar.gz: 7228e738162bad7d8c2c25fa6092d916965259c6
3
+ metadata.gz: f4ae5184e8f2b54f67408da646ecbd756f3aa481
4
+ data.tar.gz: 309b56e76eac914b84d4b10c44f2b2594d8595f7
5
5
  SHA512:
6
- metadata.gz: 0070d969d43b2482bf59619b62e07e0289eda97e52a65adcb27a6055811cbda3d0a17ba7c85c178a2adfe46b963deae7e11f82f82a208f6bc0659078d7753e72
7
- data.tar.gz: e1afbb855b6bfab30ed232d2ccf613a74fe7a8bffa3ba0d4f03f0e68409e556a158f5744c26643c1cd3f1867142f220a5fa87a4fdb8898ffbc5236aa6036f3d7
6
+ metadata.gz: 369dd7d3d267d630f35b34a919df013912dede41e7b0bd36cc39c2f8209dcc546a43ce6522f9573fe335db9469d6afc8a77eb049736aa1d593821f642ac5b8f4
7
+ data.tar.gz: e6458991d13bdaf5b632254dce02c608168c1a59d9a10856bb3cffce7551c96307c611ca713006db7d1c132ac1ed9d64772ee3cf081f882671d46f35565fa68a
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')
29
36
 
37
+ task :default => :spec
38
+ task :test => :spec
@@ -1,3 +1,3 @@
1
1
  module RxcmsPodioPlugin
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-podio_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-21 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
@@ -99,10 +99,10 @@ files:
99
99
  - lib/rxcms-podio_plugin/version.rb
100
100
  - lib/rxcms-podio_plugin.rb
101
101
  - lib/tasks/rxcms-podio_plugin_tasks.rake
102
- - MIT-LICENSE
102
+ - LICENSE
103
103
  - Rakefile
104
104
  - README.rdoc
105
- homepage: https://bitbucket.org/kikoflame/rxcms-podio-plugin
105
+ homepage: https://bitbucket.org/kikoflame/rxcms-podio_plugin
106
106
  licenses:
107
107
  - MIT
108
108
  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.