spree_utag 0.0.1 → 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.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +4 -0
  3. data/lib/spree_utag/railtie.rb +8 -0
  4. data/lib/spree_utag/version.rb +1 -1
  5. data/lib/spree_utag.rb +1 -1
  6. metadata +3 -99
  7. data/.idea/.name +0 -1
  8. data/.idea/.rakeTasks +0 -7
  9. data/.idea/encodings.xml +0 -5
  10. data/.idea/misc.xml +0 -42
  11. data/.idea/modules.xml +0 -9
  12. data/.idea/scopes/scope_settings.xml +0 -5
  13. data/.idea/spree_utag.iml +0 -24
  14. data/.idea/vcs.xml +0 -7
  15. data/.idea/workspace.xml +0 -433
  16. data/.rvmrc +0 -1
  17. data/Gemfile.lock +0 -17
  18. data/test/dummy/README.rdoc +0 -28
  19. data/test/dummy/Rakefile +0 -6
  20. data/test/dummy/app/assets/images/.keep +0 -0
  21. data/test/dummy/app/assets/javascripts/application.js +0 -13
  22. data/test/dummy/app/assets/stylesheets/application.css +0 -15
  23. data/test/dummy/app/controllers/application_controller.rb +0 -5
  24. data/test/dummy/app/controllers/concerns/.keep +0 -0
  25. data/test/dummy/app/helpers/application_helper.rb +0 -2
  26. data/test/dummy/app/mailers/.keep +0 -0
  27. data/test/dummy/app/models/.keep +0 -0
  28. data/test/dummy/app/models/concerns/.keep +0 -0
  29. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  30. data/test/dummy/bin/bundle +0 -3
  31. data/test/dummy/bin/rails +0 -4
  32. data/test/dummy/bin/rake +0 -4
  33. data/test/dummy/bin/setup +0 -29
  34. data/test/dummy/config/application.rb +0 -26
  35. data/test/dummy/config/boot.rb +0 -5
  36. data/test/dummy/config/database.yml +0 -25
  37. data/test/dummy/config/environment.rb +0 -5
  38. data/test/dummy/config/environments/development.rb +0 -41
  39. data/test/dummy/config/environments/production.rb +0 -79
  40. data/test/dummy/config/environments/test.rb +0 -42
  41. data/test/dummy/config/initializers/assets.rb +0 -11
  42. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  43. data/test/dummy/config/initializers/cookies_serializer.rb +0 -3
  44. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  45. data/test/dummy/config/initializers/inflections.rb +0 -16
  46. data/test/dummy/config/initializers/mime_types.rb +0 -4
  47. data/test/dummy/config/initializers/session_store.rb +0 -3
  48. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  49. data/test/dummy/config/locales/en.yml +0 -23
  50. data/test/dummy/config/routes.rb +0 -56
  51. data/test/dummy/config/secrets.yml +0 -22
  52. data/test/dummy/config.ru +0 -4
  53. data/test/dummy/lib/assets/.keep +0 -0
  54. data/test/dummy/log/.keep +0 -0
  55. data/test/dummy/public/404.html +0 -67
  56. data/test/dummy/public/422.html +0 -67
  57. data/test/dummy/public/500.html +0 -66
  58. data/test/dummy/public/favicon.ico +0 -0
  59. data/test/spree_utag_test.rb +0 -7
  60. data/test/test_helper.rb +0 -19
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fadbfc49bbbf386a22e01c004665f38dca5191f8
4
- data.tar.gz: 7e0c538cc03d4200b74456bbce565186149882bc
3
+ metadata.gz: bb28b3ee11dbf9c71413383941782f6af4363343
4
+ data.tar.gz: 96ba06352f2d15b98e2aeb02a39d38d094a2ab8b
5
5
  SHA512:
6
- metadata.gz: f5316f039f319410a57be83027d928f0fc3253372e900291c7297ec3e9f452006e38c21c8b92054b63672512e777a5cc50526d97bc218ce12606fdbaa7a20b25
7
- data.tar.gz: 23842e2c35dc761e2d6ea8e79b0cd01e992c160b9b4433f8f60fec9e7ef45a933d62129285193568abe8b3b893e166e8b8a34384cc6af2cec3224712400b6a23
6
+ metadata.gz: 562f7bcca90ea5811b3e52d0e371101970e85c830abbd2e9bbfe1c7e96cc42e8098790187503c43bdb3480ebfaad4cee9dd727e26c17d9761ccf0c5279ef4c0d
7
+ data.tar.gz: e203cb79d61ae0ef5f4c7629302e5d12d406438b43e5a7a6c180b4f17454e14186602d8c894a84b3828e5c31f9d1e846e2ad981bb000154a9c80f57e2c8c6f1e
data/.gitignore CHANGED
@@ -20,3 +20,7 @@ tmp
20
20
  *.o
21
21
  *.a
22
22
  mkmf.log
23
+ .idea
24
+ pkg
25
+ test
26
+ .rvmrc
@@ -0,0 +1,8 @@
1
+ module SpreeTag
2
+ class Railtie < Rails::Railtie
3
+ # for example, if you want to extend ViewHelpers
4
+ initializer 'spree_utag.view_helpers' do
5
+ ActionView::Base.send :include, ViewHelpers
6
+ end
7
+ end
8
+ end
@@ -1,3 +1,3 @@
1
1
  module SpreeUtag
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.3"
3
3
  end
data/lib/spree_utag.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require "spree_utag/version"
2
- require 'creating_a_gem/railtie' if defined?(Rails)
2
+ require 'spree_utag/railtie' if defined?(Rails)
3
3
 
4
4
  module SpreeUtag
5
5
  # Your code goes here...
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spree_utag
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew
@@ -46,18 +46,7 @@ extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
48
  - ".gitignore"
49
- - ".idea/.name"
50
- - ".idea/.rakeTasks"
51
- - ".idea/encodings.xml"
52
- - ".idea/misc.xml"
53
- - ".idea/modules.xml"
54
- - ".idea/scopes/scope_settings.xml"
55
- - ".idea/spree_utag.iml"
56
- - ".idea/vcs.xml"
57
- - ".idea/workspace.xml"
58
- - ".rvmrc"
59
49
  - Gemfile
60
- - Gemfile.lock
61
50
  - LICENSE.txt
62
51
  - MIT-LICENSE
63
52
  - README.md
@@ -65,52 +54,10 @@ files:
65
54
  - Rakefile
66
55
  - app/overrides/add_utag_to_home_page.rb
67
56
  - lib/spree_utag.rb
57
+ - lib/spree_utag/railtie.rb
68
58
  - lib/spree_utag/version.rb
69
59
  - lib/tasks/spree_utag_tasks.rake
70
60
  - spree_utag.gemspec
71
- - test/dummy/README.rdoc
72
- - test/dummy/Rakefile
73
- - test/dummy/app/assets/images/.keep
74
- - test/dummy/app/assets/javascripts/application.js
75
- - test/dummy/app/assets/stylesheets/application.css
76
- - test/dummy/app/controllers/application_controller.rb
77
- - test/dummy/app/controllers/concerns/.keep
78
- - test/dummy/app/helpers/application_helper.rb
79
- - test/dummy/app/mailers/.keep
80
- - test/dummy/app/models/.keep
81
- - test/dummy/app/models/concerns/.keep
82
- - test/dummy/app/views/layouts/application.html.erb
83
- - test/dummy/bin/bundle
84
- - test/dummy/bin/rails
85
- - test/dummy/bin/rake
86
- - test/dummy/bin/setup
87
- - test/dummy/config.ru
88
- - test/dummy/config/application.rb
89
- - test/dummy/config/boot.rb
90
- - test/dummy/config/database.yml
91
- - test/dummy/config/environment.rb
92
- - test/dummy/config/environments/development.rb
93
- - test/dummy/config/environments/production.rb
94
- - test/dummy/config/environments/test.rb
95
- - test/dummy/config/initializers/assets.rb
96
- - test/dummy/config/initializers/backtrace_silencers.rb
97
- - test/dummy/config/initializers/cookies_serializer.rb
98
- - test/dummy/config/initializers/filter_parameter_logging.rb
99
- - test/dummy/config/initializers/inflections.rb
100
- - test/dummy/config/initializers/mime_types.rb
101
- - test/dummy/config/initializers/session_store.rb
102
- - test/dummy/config/initializers/wrap_parameters.rb
103
- - test/dummy/config/locales/en.yml
104
- - test/dummy/config/routes.rb
105
- - test/dummy/config/secrets.yml
106
- - test/dummy/lib/assets/.keep
107
- - test/dummy/log/.keep
108
- - test/dummy/public/404.html
109
- - test/dummy/public/422.html
110
- - test/dummy/public/500.html
111
- - test/dummy/public/favicon.ico
112
- - test/spree_utag_test.rb
113
- - test/test_helper.rb
114
61
  homepage: ''
115
62
  licenses:
116
63
  - MIT
@@ -135,47 +82,4 @@ rubygems_version: 2.4.5
135
82
  signing_key:
136
83
  specification_version: 4
137
84
  summary: asdas das ad Required.
138
- test_files:
139
- - test/dummy/README.rdoc
140
- - test/dummy/Rakefile
141
- - test/dummy/app/assets/images/.keep
142
- - test/dummy/app/assets/javascripts/application.js
143
- - test/dummy/app/assets/stylesheets/application.css
144
- - test/dummy/app/controllers/application_controller.rb
145
- - test/dummy/app/controllers/concerns/.keep
146
- - test/dummy/app/helpers/application_helper.rb
147
- - test/dummy/app/mailers/.keep
148
- - test/dummy/app/models/.keep
149
- - test/dummy/app/models/concerns/.keep
150
- - test/dummy/app/views/layouts/application.html.erb
151
- - test/dummy/bin/bundle
152
- - test/dummy/bin/rails
153
- - test/dummy/bin/rake
154
- - test/dummy/bin/setup
155
- - test/dummy/config.ru
156
- - test/dummy/config/application.rb
157
- - test/dummy/config/boot.rb
158
- - test/dummy/config/database.yml
159
- - test/dummy/config/environment.rb
160
- - test/dummy/config/environments/development.rb
161
- - test/dummy/config/environments/production.rb
162
- - test/dummy/config/environments/test.rb
163
- - test/dummy/config/initializers/assets.rb
164
- - test/dummy/config/initializers/backtrace_silencers.rb
165
- - test/dummy/config/initializers/cookies_serializer.rb
166
- - test/dummy/config/initializers/filter_parameter_logging.rb
167
- - test/dummy/config/initializers/inflections.rb
168
- - test/dummy/config/initializers/mime_types.rb
169
- - test/dummy/config/initializers/session_store.rb
170
- - test/dummy/config/initializers/wrap_parameters.rb
171
- - test/dummy/config/locales/en.yml
172
- - test/dummy/config/routes.rb
173
- - test/dummy/config/secrets.yml
174
- - test/dummy/lib/assets/.keep
175
- - test/dummy/log/.keep
176
- - test/dummy/public/404.html
177
- - test/dummy/public/422.html
178
- - test/dummy/public/500.html
179
- - test/dummy/public/favicon.ico
180
- - test/spree_utag_test.rb
181
- - test/test_helper.rb
85
+ test_files: []
data/.idea/.name DELETED
@@ -1 +0,0 @@
1
- spree_utag
data/.idea/.rakeTasks DELETED
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Settings><!--This file was automatically generated by Ruby plugin.
3
- You are allowed to:
4
- 1. Remove rake task
5
- 2. Add existing rake tasks
6
- To add existing rake tasks automatically delete this file and reload the project.
7
- --><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build spree_utag-0.0.1.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Build and install spree_utag-0.0.1.gem into system gems" fullCmd="install" taksId="install" /><RakeTask description="Create tag v0.0.1 and build and push spree_utag-0.0.1.gem to Rubygems" fullCmd="release" taksId="release" /><RakeGroup description="" fullCmd="" taksId="release"><RakeTask description="" fullCmd="release:guard_clean" taksId="guard_clean" /><RakeTask description="" fullCmd="release:rubygem_push" taksId="rubygem_push" /><RakeTask description="" fullCmd="release:source_control_push" taksId="source_control_push" /></RakeGroup></RakeGroup></Settings>
data/.idea/encodings.xml DELETED
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
4
- </project>
5
-
data/.idea/misc.xml DELETED
@@ -1,42 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectInspectionProfilesVisibleTreeState">
4
- <entry key="Project Default">
5
- <profile-state>
6
- <expanded-state>
7
- <State>
8
- <id />
9
- </State>
10
- <State>
11
- <id>CSS</id>
12
- </State>
13
- <State>
14
- <id>GeneralJavaScript</id>
15
- </State>
16
- <State>
17
- <id>Internationalization issues</id>
18
- </State>
19
- <State>
20
- <id>JavaScript</id>
21
- </State>
22
- <State>
23
- <id>RELAX NG</id>
24
- </State>
25
- <State>
26
- <id>Ruby</id>
27
- </State>
28
- <State>
29
- <id>SQL</id>
30
- </State>
31
- </expanded-state>
32
- <selected-state>
33
- <State>
34
- <id>CoffeeScript</id>
35
- </State>
36
- </selected-state>
37
- </profile-state>
38
- </entry>
39
- </component>
40
- <component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-1.9.3-p194 [widelife]" project-jdk-type="RUBY_SDK" />
41
- </project>
42
-
data/.idea/modules.xml DELETED
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/spree_utag.iml" filepath="$PROJECT_DIR$/.idea/spree_utag.iml" />
6
- </modules>
7
- </component>
8
- </project>
9
-
@@ -1,5 +0,0 @@
1
- <component name="DependencyValidationManager">
2
- <state>
3
- <option name="SKIP_IMPORT_STATEMENTS" value="false" />
4
- </state>
5
- </component>
data/.idea/spree_utag.iml DELETED
@@ -1,24 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="RUBY_MODULE" version="4">
3
- <component name="CompassSettings">
4
- <option name="compassSupportEnabled" value="true" />
5
- </component>
6
- <component name="FacetManager">
7
- <facet type="gem" name="Ruby Gem">
8
- <configuration>
9
- <option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
10
- <option name="GEM_APP_TEST_PATH" value="$MODULE_DIR$/test" />
11
- <option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
12
- </configuration>
13
- </facet>
14
- </component>
15
- <component name="NewModuleRootManager">
16
- <content url="file://$MODULE_DIR$">
17
- <sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
18
- </content>
19
- <orderEntry type="jdk" jdkName="RVM: ruby-2.2.0 [spree_utag]" jdkType="RUBY_SDK" />
20
- <orderEntry type="sourceFolder" forTests="false" />
21
- <orderEntry type="library" scope="PROVIDED" name="bundler (v1.8.3, RVM: ruby-2.2.0 [spree_utag]) [gem]" level="application" />
22
- </component>
23
- </module>
24
-
data/.idea/vcs.xml DELETED
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="" vcs="" />
5
- </component>
6
- </project>
7
-