pakyow-rake 0.9.1 → 0.10.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: 4ed5f068b87ca5bfcbae5606f91fd4c79a161630
4
- data.tar.gz: 125c4f95ec13e5d0d611a1fc127a2f93614cec02
3
+ metadata.gz: a36f8905c92cb0d3cac19b1160d809c15837fce9
4
+ data.tar.gz: c45719dae7ee1879e8fb3fd21fd395a5ccc87605
5
5
  SHA512:
6
- metadata.gz: e1278ac14c5df65a012eb1a2527def986fa4f66510632307eb52bd16fda4cf65213c6d9f4742cc9466ed69fc73749013093df4a1056233ce55b1b5f2e288ad33
7
- data.tar.gz: faffa9f983442aa79fb75841b06e16a7f12edbf725e6c6443ec74b18fa14cc3f592f3b480ce23d2e522c6244b1d358a605eed7044aeefaca4ac94be86f8ddd1a
6
+ metadata.gz: 589e20f5e95ffb0736bc7ae2d5156d78db44871d9783fef938d6ab94686a071612455a183d841e44fa2de13a64cd5ca0d3e99149278d954c2060631175566615
7
+ data.tar.gz: fb9b6497a4b10842b827de83d1de84d32b929aa7d2ae60c0ca4d2d8992a4e08bc48bf35c705e45db27c043fde6404b196dea3ab60f93230794b5bffdc039a4a8
@@ -0,0 +1,11 @@
1
+ # 0.10.0 (to be released)
2
+
3
+ * TODO
4
+
5
+ # 0.9.1 / 2014-12-06
6
+
7
+ * No changes -- bumped version to be consistent
8
+
9
+ # 0.9.0 / 2014-11-09
10
+
11
+ * Initial gem release
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 Bryan Powell
1
+ Copyright (c) 2013-2015 Bryan Powell
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -17,4 +17,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
17
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
18
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
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.
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,30 @@
1
+ # pakyow-rake
2
+
3
+ Rake tasks for Pakyow projects.
4
+
5
+ # Download
6
+
7
+ The latest version of Pakyow Rake can be installed with RubyGems:
8
+
9
+ ```
10
+ gem install pakyow-rake
11
+ ```
12
+
13
+ Source code can be downloaded as part of the Pakyow project on Github:
14
+
15
+ - https://github.com/pakyow/pakyow/tree/master/pakyow-rake
16
+
17
+ # License
18
+
19
+ Pakyow Rake is released free and open-source under the [MIT
20
+ License](http://opensource.org/licenses/MIT).
21
+
22
+ # Support
23
+
24
+ Found a bug? Tell us about it here:
25
+
26
+ - https://github.com/pakyow/pakyow/issues
27
+
28
+ We'd love to have you in the community:
29
+
30
+ - http://pakyow.org/get-involved
@@ -1,13 +1,13 @@
1
1
  namespace :pakyow do
2
2
  desc 'Prepare the app by configuring and loading code'
3
3
  task :prepare do
4
- require './app'
4
+ require './app/setup'
5
5
  Pakyow::App.prepare(ENV['APP_ENV'] || ENV['RACK_ENV'])
6
6
  end
7
7
 
8
8
  desc 'Stage the app by preparing and loading routes / views'
9
9
  task :stage do
10
- require './app'
10
+ require './app/setup'
11
11
  Pakyow::App.stage(ENV['APP_ENV'] || ENV['RACK_ENV'])
12
12
  end
13
13
  end
metadata CHANGED
@@ -1,57 +1,85 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pakyow-rake
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryan Powell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-06 00:00:00.000000000 Z
11
+ date: 2015-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: pakyow-support
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.10.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.10.0
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: pakyow-core
15
29
  requirement: !ruby/object:Gem::Requirement
16
30
  requirements:
17
31
  - - '='
18
32
  - !ruby/object:Gem::Version
19
- version: 0.9.1
33
+ version: 0.10.0
20
34
  type: :runtime
21
35
  prerelease: false
22
36
  version_requirements: !ruby/object:Gem::Requirement
23
37
  requirements:
24
38
  - - '='
25
39
  - !ruby/object:Gem::Version
26
- version: 0.9.1
40
+ version: 0.10.0
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: pakyow-presenter
29
43
  requirement: !ruby/object:Gem::Requirement
30
44
  requirements:
31
45
  - - '='
32
46
  - !ruby/object:Gem::Version
33
- version: 0.9.1
47
+ version: 0.10.0
34
48
  type: :runtime
35
49
  prerelease: false
36
50
  version_requirements: !ruby/object:Gem::Requirement
37
51
  requirements:
38
52
  - - '='
39
53
  - !ruby/object:Gem::Version
40
- version: 0.9.1
41
- description: A collection of rake tasks for Pakyow apps.
54
+ version: 0.10.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.4'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.4'
69
+ description: Rake tasks for Pakyow
42
70
  email: bryan@metabahn.com
43
71
  executables: []
44
72
  extensions: []
45
73
  extra_rdoc_files: []
46
74
  files:
47
- - pakyow-rake/CHANGES
48
- - pakyow-rake/MIT-LICENSE
49
- - pakyow-rake/README
75
+ - pakyow-rake/CHANGELOG.md
76
+ - pakyow-rake/LICENSE
77
+ - pakyow-rake/README.md
50
78
  - pakyow-rake/lib/pakyow-rake.rb
51
79
  - pakyow-rake/lib/tasks/app.rake
52
80
  - pakyow-rake/lib/tasks/bindings.rake
53
81
  - pakyow-rake/lib/tasks/routes.rake
54
- homepage: http://pakyow.com
82
+ homepage: http://pakyow.org
55
83
  licenses:
56
84
  - MIT
57
85
  metadata: {}
@@ -70,10 +98,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
70
98
  - !ruby/object:Gem::Version
71
99
  version: '0'
72
100
  requirements: []
73
- rubyforge_project: pakyow-rake
74
- rubygems_version: 2.2.2
101
+ rubyforge_project:
102
+ rubygems_version: 2.4.5
75
103
  signing_key:
76
104
  specification_version: 4
77
- summary: Rake tasks for Pakyow apps.
105
+ summary: Pakyow Rake
78
106
  test_files: []
79
- has_rdoc:
data/pakyow-rake/CHANGES DELETED
@@ -1,7 +0,0 @@
1
- = 0.9.1 / 2014-12-06
2
-
3
- * No changes -- bumped version to be consistent
4
-
5
- = 0.9.0 / 2014-11-09
6
-
7
- * Initial gem release
data/pakyow-rake/README DELETED
File without changes