form_boy 0.0.1.pre1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7eebc90a5519039795d53fed655d1ca6c6cb3146
4
+ data.tar.gz: 0b544a10dcccc5d4e0f3dab63d0801cd1c968bed
5
+ SHA512:
6
+ metadata.gz: 98c080929554b88dcaab02507f8bffe7ada8913304eb82ad560417889b7a83831dca34167485602a674b78fb11f7c42b28cd24ede6cfc2ff5e9b7297a494dbf8
7
+ data.tar.gz: bd7833c754c4edd30e821004008095c2e24192b6c1a951ff823f98f24b72fdcf3abd614a10f2d9e8ded08b73090a471153e788687754e339936414c6f9422d51
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Declare your gem's dependencies in form_boy.gemspec.
4
+ # Bundler will treat runtime dependencies like base dependencies, and
5
+ # development dependencies will be added by default to the :development group.
6
+ gemspec
7
+
8
+ # Declare any dependencies that are still in development here instead of in
9
+ # your gemspec. These might include edge Rails or gems from your path or
10
+ # Git. Remember to move these dependencies to your gemspec before releasing
11
+ # your gem to rubygems.org.
12
+
13
+ # To use debugger
14
+ # gem 'debugger'
data/LICENSE ADDED
@@ -0,0 +1,17 @@
1
+ ##########################################################################
2
+ #
3
+ # Copyright 2014 University of Notre Dame
4
+ #
5
+ # Additional copyright may be held by others, as reflected in the commit log
6
+ #
7
+ # Licensed under the Apache License, Version 2.0 (the "License");
8
+ # you may not use this file except in compliance with the License.
9
+ # You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing, software
14
+ # distributed under the License is distributed on an "AS IS" BASIS,
15
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ # See the License for the specific language governing permissions and
17
+ # limitations under the License.
data/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # FormBoy
2
+
3
+ "Form Boy, fetch me that form!"
4
+
5
+ "A you wish!"
data/Rakefile ADDED
@@ -0,0 +1,3 @@
1
+ require "bundler/gem_tasks"
2
+ Bundler::GemHelper.install_tasks
3
+
data/form_boy.gemspec ADDED
@@ -0,0 +1,28 @@
1
+ $:.push File.expand_path("../lib", __FILE__)
2
+
3
+ # Maintain your gem's version:
4
+ require "form_boy/version"
5
+
6
+ # Describe your gem and declare its dependencies:
7
+ Gem::Specification.new do |spec|
8
+ spec.name = "form_boy"
9
+ spec.version = FormBoy::VERSION
10
+ spec.authors = [
11
+ "Jeremy Friesen"
12
+ ]
13
+ spec.email = [
14
+ "jeremy.n.friesen@gmail.com"
15
+ ]
16
+ spec.homepage = "http://github.com/jeremyf/form_boy"
17
+ spec.summary = "FormBoy - fetch me that form!"
18
+ spec.description = "FormBoy - fetch me that form!"
19
+
20
+ spec.license = "APACHE2"
21
+
22
+ spec.files = `git ls-files`.split($/)
23
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
24
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
25
+ spec.require_paths = ["lib"]
26
+
27
+ spec.add_dependency "rails", "~> 4.0.4"
28
+ end
@@ -0,0 +1,3 @@
1
+ module FormBoy
2
+ VERSION = "0.0.1.pre1"
3
+ end
data/lib/form_boy.rb ADDED
@@ -0,0 +1,2 @@
1
+ module FormBoy
2
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :form_boy do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,67 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: form_boy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.pre1
5
+ platform: ruby
6
+ authors:
7
+ - Jeremy Friesen
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-04-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.4
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.4
27
+ description: FormBoy - fetch me that form!
28
+ email:
29
+ - jeremy.n.friesen@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - .gitignore
35
+ - Gemfile
36
+ - LICENSE
37
+ - README.md
38
+ - Rakefile
39
+ - form_boy.gemspec
40
+ - lib/form_boy.rb
41
+ - lib/form_boy/version.rb
42
+ - lib/tasks/form_boy_tasks.rake
43
+ homepage: http://github.com/jeremyf/form_boy
44
+ licenses:
45
+ - APACHE2
46
+ metadata: {}
47
+ post_install_message:
48
+ rdoc_options: []
49
+ require_paths:
50
+ - lib
51
+ required_ruby_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ required_rubygems_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - '>'
59
+ - !ruby/object:Gem::Version
60
+ version: 1.3.1
61
+ requirements: []
62
+ rubyforge_project:
63
+ rubygems_version: 2.0.14
64
+ signing_key:
65
+ specification_version: 4
66
+ summary: FormBoy - fetch me that form!
67
+ test_files: []