baja 0.1.3 → 0.1.4

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: 90c0329194eddfe9d736f951be0a739d613dab5f
4
- data.tar.gz: c4c4a0ec8f0222b659f913f030c79a703300c227
3
+ metadata.gz: eb7c56c4cfe9136a0b78e039921872700dc04213
4
+ data.tar.gz: 8f3267473e91d47ca509202a4d97b0df8b7f68ab
5
5
  SHA512:
6
- metadata.gz: 1ce8767c97cbb37a7f78299f0cf11387da10eda601222acd8e8c66169b006302ee46614657e40af4eadc8cff4e8645ec8b353ae07b5e2a3eddc0883f0b414e3f
7
- data.tar.gz: 3e988916429a74c008da8b2be3276a141561635a3a821ff6886b88e8a480e9c061aafcd7630299c812d99cbece9bc33f9ad9339872f65cbb3793f70c3e6ad619
6
+ metadata.gz: 9bd92693e4ff1469cd3a1d139177d104ad12f908558ddb0e0c7833cd5dcea843b3673dc005023c990ae63f3d03cd1f329f863aa677d08c3e6e82aaae257179cb
7
+ data.tar.gz: 283fdee400416bdbe7c54a0080af0eacc823ba2baf1672d4420d2653fac9a9a08e256acb357ab357ab054a94ab723e0d52753c44bbc5eb34664b8e5442b9a63f
data/lib/baja/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Baja
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
data/lib/baja.rb CHANGED
@@ -1,9 +1,15 @@
1
1
  require "baja/version"
2
2
  require 'rails'
3
+ require 'yaml'
3
4
  module Baja
5
+ module Blast
6
+ thing = YAML.load_file('baja.yml')
7
+ puts thing.inspect
8
+ end
4
9
  class Railtie < Rails::Railtie
5
10
  rake_tasks do
6
11
  load "tasks/baja.rake"
7
12
  end
8
13
  end
14
+
9
15
  end
data/lib/tasks/baja.rake CHANGED
@@ -1,8 +1,8 @@
1
1
  desc "Explaining what the task does"
2
2
  namespace :baja do
3
3
  task :blast do
4
- file = File.new("baja.rb","w+")
5
- file.puts "hello future"
4
+ file = File.new("baja.yml","w+")
5
+ file.puts "#factories:\n# -gem_with_factory\n# -another_gem_with_factory\n#specs:\n# -gem_with_specs\n# -another_gem_with_specs"
6
6
  file.close
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: baja
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Zuercher