ubigeo_rails 0.0.3
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 +7 -0
- data/.gitignore +2 -0
- data/README.md +100 -0
- data/app/assets/javascripts/ubigeo.js.coffee +98 -0
- data/app/controllers/ubigeo_rails/ubigeos_controller.rb +15 -0
- data/app/inputs/ubigeo_input.rb +83 -0
- data/app/models/ubigeo_rails/ubigeo.rb +51 -0
- data/config/routes.rb +3 -0
- data/lib/dsl.rb +21 -0
- data/lib/engine.rb +5 -0
- data/lib/generators/ubigeo_rails/install_generator.rb +24 -0
- data/lib/generators/ubigeo_rails/seeds_generator.rb +11 -0
- data/lib/seeder.rb +2070 -0
- data/lib/ubigeo_rails.rb +3 -0
- data/ubigeo_rails.gemspec +12 -0
- metadata +57 -0
data/lib/ubigeo_rails.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = 'ubigeo_rails'
|
3
|
+
s.version = '0.0.3'
|
4
|
+
s.date = '2013-09-26'
|
5
|
+
s.summary = "A ubigeo formtastic input and api for Rails"
|
6
|
+
s.description = "A ubigeo wrapper"
|
7
|
+
s.authors = ["Julio García"]
|
8
|
+
s.email = 'julioggonz@gmail.com'
|
9
|
+
s.files = `git ls-files`.split("\n").sort
|
10
|
+
s.homepage = 'https://github.com/juliogarciag/ubigeo_rails'
|
11
|
+
s.license = 'MIT'
|
12
|
+
end
|
metadata
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ubigeo_rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Julio García
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-09-26 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: A ubigeo wrapper
|
14
|
+
email: julioggonz@gmail.com
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- .gitignore
|
20
|
+
- README.md
|
21
|
+
- app/assets/javascripts/ubigeo.js.coffee
|
22
|
+
- app/controllers/ubigeo_rails/ubigeos_controller.rb
|
23
|
+
- app/inputs/ubigeo_input.rb
|
24
|
+
- app/models/ubigeo_rails/ubigeo.rb
|
25
|
+
- config/routes.rb
|
26
|
+
- lib/dsl.rb
|
27
|
+
- lib/engine.rb
|
28
|
+
- lib/generators/ubigeo_rails/install_generator.rb
|
29
|
+
- lib/generators/ubigeo_rails/seeds_generator.rb
|
30
|
+
- lib/seeder.rb
|
31
|
+
- lib/ubigeo_rails.rb
|
32
|
+
- ubigeo_rails.gemspec
|
33
|
+
homepage: https://github.com/juliogarciag/ubigeo_rails
|
34
|
+
licenses:
|
35
|
+
- MIT
|
36
|
+
metadata: {}
|
37
|
+
post_install_message:
|
38
|
+
rdoc_options: []
|
39
|
+
require_paths:
|
40
|
+
- lib
|
41
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
43
|
+
- - '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - '>='
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '0'
|
51
|
+
requirements: []
|
52
|
+
rubyforge_project:
|
53
|
+
rubygems_version: 2.1.0.rc.2
|
54
|
+
signing_key:
|
55
|
+
specification_version: 4
|
56
|
+
summary: A ubigeo formtastic input and api for Rails
|
57
|
+
test_files: []
|