joyce 0.1.9 → 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 96e7cdeab0cddc9d53e7df670b56c30992e7284b
4
- data.tar.gz: 280f5be0d3589d17183a7fa8490decd9f8abe557
3
+ metadata.gz: a0df26de5622cad250e8f14dcaa5926b40d8000b
4
+ data.tar.gz: d471b81496850fbf3cfe65701b5cdfe8e0f25af4
5
5
  SHA512:
6
- metadata.gz: bcee9f356d1108af887d4b8d6e6e5927282cd83ff1f6ac4981801c3929bcb0e3b6ed131ddce70519b01fa0d07c6fe03057653f7bd60af510746bd673b97e255a
7
- data.tar.gz: d744c7de64e60eed32ca4be90c409bf01fa8d81089aa8a19c004096a2616c49f5674ef84a60088896b908cb3474ad22831eb39d2fb40d165815bd9bcd2f96cb6
6
+ metadata.gz: 64020e7c9793c7d07058bae6d3c0238452b4cd5c31eb9fccc6737b58c41fc059f8d3affccf98fd6257ea1fd762d8b049a5365117b7c86c4a5c3dcc9a7e61fa97
7
+ data.tar.gz: 35b95db7ffcac6efeaaa339e1d42616dc06b4fe2aeae1c77b6a7fbff82cd246f18731e0aec4fd88e43a11602ac2ee58bfe439e4edaa624876b28f99d36cb8092
data/example/Gemfile CHANGED
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # example app gemfile
4
- gem 'joyce', '0.1.7'
4
+ gem 'joyce', '0.1.8'
5
5
  gem 'bundler'
6
6
  gem 'pry'
7
7
 
data/example/Gemfile.lock CHANGED
@@ -25,7 +25,7 @@ GEM
25
25
  erubis (2.7.0)
26
26
  gosu (0.10.6)
27
27
  i18n (0.7.0)
28
- joyce (0.1.7)
28
+ joyce (0.1.8)
29
29
  actionpack (~> 4.2)
30
30
  gosu (~> 0.10)
31
31
  metacosm (~> 0.3)
@@ -69,7 +69,7 @@ PLATFORMS
69
69
 
70
70
  DEPENDENCIES
71
71
  bundler
72
- joyce (= 0.1.7)
72
+ joyce (= 0.1.8)
73
73
  pry
74
74
  rake
75
75
 
@@ -35,11 +35,13 @@ module Joyce
35
35
  end
36
36
 
37
37
  file.puts <<-ruby
38
- $stdout.reopen("#{Dir.home}/#{app_name}.log", "w")
39
- $stderr.reopen("#{Dir.home}/#{app_name}.error.log", "w")
38
+ require 'fileutils'
39
+ FileUtils.mkdir_p("#{Dir.home}/#{app_name}/")
40
+ $stdout.reopen("#{Dir.home}/#{app_name}/app.log", "w")
41
+ $stderr.reopen("#{Dir.home}/#{app_name}/err.log", "w")
40
42
  GEM_REQUIRE_PATHS = #{require_paths.flatten.inspect}
41
43
  GEM_REQUIRE_PATHS.each do |path|
42
- $LOAD_PATH.unshift File.expand_path(File.join('../vendor/gems', path), __FILE__)
44
+ $LOAD_PATH.unshift File.expand_path(File.join("../vendor/gems", path), __FILE__)
43
45
  end
44
46
  require 'joyce'
45
47
  require 'application'
data/lib/joyce/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Joyce
2
2
  # joyce version
3
- VERSION = "0.1.9"
3
+ VERSION = "0.1.10"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: joyce
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joseph Weissman